2
votes
7answers
88 views
PHP: Multithreaded PHP / Web Services?
Greetings All!
I am having some troubles on how to execute thousands upon thousands of requests to a web service (eBay), I have a limit of 5 million calls per day, so there are no problems on that …
0
votes
2answers
20 views
Android - Activity from a service?
I am extending the IntentService class to run a background service on Android. The service starts after bootup immediately. I want to pop-up a user input box from this service periodically. So, I …
1
vote
3answers
26 views
New to WCF Web Services.
Hi,
I am new to WCF and I want to know if it is possible to create a WCF service on it's own application and host it on IIS. Then another ASP.NET application will consume it. So far all the examples …
0
votes
1answer
21 views
Send A DataSet via Sockets in C#
I had written a Web Service to return a DataSet back to my ASP .Net site and this was working fine. However due to security issues and also the ability to get certain references installed, I have to …
1
vote
1answer
43 views
Cannot stop java service in Linux using start-stop-daemon
I have a process that is running as a java daemon on Ubuntu Linux.
I cannot stop it using start-stop-daemon command in d_stop() below.
The process id should be written to file $PIDFILE during the …
2
votes
2answers
22 views
Consuming WCF service for development in advance?
Hi
I was asked this question - How do you start consuming a WCF service in advance (read before being implemented/deployed)?
I couldn't think of a very convincing answer and said probably we can …
2
votes
2answers
50 views
How do I discover RESTful Web services?
When I want to find a "Big" Web service (WS-*/WSDL based) of required functionality I can simply google for ".... filetype:wsdl" because Google indexes also WSDL definitions. Or I can simply use some …
2
votes
2answers
55 views
Is there a way to get to know if the user is on call while using my app?
Is it possible to identify whether the user is on a phone call while using an app.
Here is the scenario:
I get a call
I accept the call
Tap the home button
Launch an app
At this point can I tell …
0
votes
1answer
16 views
WCF - Configuring Client/server authentication in headers?
I've got a WCF service that will need to receive client credentials, and maintain some kind of role-based data, based on my auth method.
The clients will reside on many different systems, and as …
0
votes
1answer
11 views
[Android SDK] Throw a custom exception from a service to an activity
Hi,
I'm currently working on an XMPP app' on Android and I'm pondering about the best way to throw a different type of Exception than a RemoteException to my activity from my service.
As it seems …
2
votes
1answer
29 views
developing a windows service in C++ without Visual Studio template?
I have a version of Visual Studio 2005 that doesn't include a Windows Service project template. Can I just build a (C++) console application and install it as a service without doing anything special …
0
votes
3answers
75 views
Turning display off from Windows Service
I have written a Windows service which should turn the display OFF when certain conditions occur. The code I am using is :
private const int MONITOR_OFF = 2;
SendMessage(GetDesktopWindow().ToInt32(), …
0
votes
1answer
13 views
VB.net Windows Service with File Watcher
Hello Experts,
I have a windows service that runs at 5 PM everyday. Once it starts it will use a method to watcher that monitors a folder and if any new file is created it will upload it to …
0
votes
1answer
35 views
Console App Service or ATL Service
I need to create a service. I know that you can do it with just a console application but it can also be done with ATL.. What are the benefits of the ATL Service vs a simple console application …
0
votes
2answers
142 views
Android: Can I take a screen capture from an app?
I was wondering if there is a way to take a screenshot of the current screen inside the mobile phone using a service (I know how to do it through DDMS though)
