I created one service(MBean), I thought it could be start/stop normally.
I have my MBean in the structure as my previous problem had said:
http://stackoverflow.com/questions/3177569/a-created-jboss-service-cant-be-stop-normallymbean
But today, I found the created service will get error when restart jboss.
First, the created service (a s...
Hi, I'm trying to run a windows service that reads a file in a shared folder in another server. The problem is that the computer where the service runs is in a different domain (say DomainA) than the computer where the folder is shared (say DomainB). If I go to the computer in DomainB, I can't assign permissions to users in DomainA, beca...
Dear all,
current project of my team involves Windows Services communicating heavily among several machines via WCF. We occasionally run into problems upon startup, where we suspect that Services are initialized before the machine's IP connection is fully configured.
Anyone have an idea or suggestion how to verify this or how to genera...
I'm running a process from inside a windows service using
ProcessStartInfo processStartInfo = new ....
Process.Start(processStartInfo);
The problem is, if I run service under local system account, it runs alright, but it doesn't show the programs' window.
I've tried to put user credentials in service properties, but then 'Allow serv...
I've written a custom service that overrides ServiceBase.OnShutdown().
Unfortunately, when I log to the event log, nothing is written.
My guess is that the Windows event log was shut down before my service.
Is there a way to order service shutdown so that my servce shuts down
before the event logger? I don't want to have to write out to ...
Hey,
I'm looking to make a service which I can use to make calls to a web based rest api. I've spent a couple of days looking through stackoverflow.com, reading books and looking at articles whilst playing about with some code and I can't get anything which I'm happy with.
Basically I want to start a service on app init then I want to...
I know that the best to start service is
startService(new Intent(this, MyService.class ));
How can I send my application context also when I am starting a new service?
...
I am trying to create a Servicefor my application which will negotiate Bluetooth connections and data. I want this service's lifecycle to start and end with the Application, but still be able to have specific Activities listen for events that occur within this service (in addition an Activty should be able to call specific methods of the...
I got a custom command in my reusable django app which I want to kick off a deamonized service and then return, leaving the service running.
I've implemented my service as a simple class with a start-method. When start is called it runs in an eternal loop, sleeping for 10 seconds, then using the django orm to check the database configur...
Hi Guys though i got the Screen Size by using the following from a activity,
Display display = getWindowManager().getDefaultDisplay();
But the same thing is not working from a service (for obvious reasons, i know!) but i desperately need to get the display size from a service. Can some1 please explain me any other way for getting the ...
Hi!
I created a scheduler. It was threaded first, but because of memory leaks and separatable tasks I changed to subprocesses.
The service starts the subprocesses by N minutes or in determined time.
I finished with all thing, but I'm not sure now that service can start an application or not?
I want to use this as processfarm - as Post...
Hi, in order to keep certain application variables I may need to change when the application is running without having to restart it, I'm thinking in implementing a Grails service and a Quartz job so every X minutes, the service reloads the entire "parameters" table - and I query the service for a parameter's value.
Now, is this a good ...
I need to test WCF service, but have only one computer, so my service and client are running on the same machine. Here is the App.config of WCF Service:
<host>
<baseAddresses>
<add baseAddress="http://localhost:8000/MyService"/>
</baseAddresses>
</host>
<endpoint address=""
binding="wsDualHttpBinding"
contract="...
I'm hosting some SOAP services with WCF. How can I turn off these services via config for the purposes of maintenance, etc., and provide a friendly message to the service consumer with something like "The service you've requested is down for maintenance."?
...
Guys,
I'm trying to hookup a ASMX web services in asp.net 3 to return JSON rather than XML. Anyone ever tried/wanted to do this?
Thanks!!
...
(There are other questions along these lines but none of them have any real answers, let alone answers dealing with python...)
I have a Windows Service (XP SP3) written in Python that needs to be able to mount a network drive for ALL users. I tried using net use with subprocess (even with the full path to net.exe), but given that your ...
I'm working on a turn-based web game that will perform all world updates (player orders, physics, scripted events, etc.) on the server. For now, I could simply update the world in a web request callback. Unfortunately, that naive approach is not at all scalable. I don't want to bog down my web server when I start running many concurre...
What is the best, efficient and fastest way to expose an existing (class) library (which primarily defines CRUD operations ) as a service (WCF Service or WCF Data Service), so that it can be used with Silverlight or Ajax. Are there tools (code generators, RAD tools), which can support this ?
Thanks in advance for your help and hints.
...
Hi there,
I need to reference a service that is a part of another project.
I have declared and implemented the contract of the service and then tried to
add a standard reference (right click ->Add Service reference, and added
http://localhost:8000/MyService?wsdl
The proxy has been generated and it should work at the first glance, how...
I'm about to start doing some iPhone application development and it's important to me to be able to test my applications on actual devices before I put them on the marketplace. However, I am planning on switching from AT&T to Verizon soon due largely to the cost of my current plan.
If I discontinue my AT&T service but keep my iPhone 3G ...