service

Configure windows service through command line

I need to enable the "Allow service to interact with desktop" option in the service properties through command line. How to accomplish that. I tried the "sc" command. But I can't achieve what I need. ...

Question with two WebServices running on the same machine

Hello, I created a webservice using port 61501 and does not use IIS. This webservice is solid and is now in production. So what I did was create another project to run off of 61502. By doing so, I created the same project names, (to get a new assembly reference) and copied the files over to the new directory. The new service install...

Simple Java web service router

How do I setup programmatic web service forwarding from my webapp to an external web service? I need something like tcpmon but then integrated into my webapp war so that my flash files can make web service calls back to the webapp that served them. These calls are, in turn, would be routed to the external web service. ESBs are too hea...

Web service response is null, but SOAP message response is valid

I am writing a web service starting with writing the WSDL. I have been generating server-side skeleton code using wsimport and then writing my own implementing class. I'm running the web service on an Axis2 server. When using soapUI, the SOAP messages coming to and from the service look fine, but when using a web service client, I'm g...

Service Factory for VS 2008

Hi All Any one can please help me how to use the service factory for the VS 2008. What are all the tools need to install. Thanks in Advance Sekar ...

Java web services on fedora 10i386

Hello, I am a .net web services developer. I want do develop web services on Java platform using LAMP platform. Currently I have fedora 10i386 with Apache web server and eclipse IDE. Please suggest me tools, plugins for eclipse that I can use to develop web service's as it is possible in .net platform using visual studio and MS sql se...

Custom install actions

I have now found numerous examples and am none the wiser. The brief is simple. During install time a form of dialog should pop up and ask the user for DB credentials. These should then be used to create a registry entry. The path of the key is always the same but the key itself is a DB Connection string generated from the user input. I...

webservice: error in code or connection

Hi, I have a problem in my code or connection I think... I tried to connect to a MySQL database and web service, but when I run the program, it gives me the following error: @WebService() public class LostNumWebService { /** * Web service operation */ @WebMethod(operationName = "getCategory") public List getCategory(@WebPar...

My code is riddled with service interfaces!

Hey all. I'm coming across a weird design pattern using the repository and service model. The application constists of ASP.NET MVC, WCF, and some Windows services. My repositories are using LINQ DataContext. As my application evolves I'm finding myself passing references to IWhateverService service everywhere. For example, I have IA...

Communicating with a Python service.

Problem: I have a python script that I have running as a service. It's a subclass of the win32 class win32serviceutil.ServiceFramework. I want a simple straightforward way of sending arbitrary commands to it via the command line. What I've looked at: It looks like the standard way of controlling the service once it's started is by...

Visual feedback from C# service

Is it true that a service written in C# is unable to give visual feedback to the desktop? I understand that services start up before user logon and at that point ther is no desktop available. My question then, apart from logging events in the system event log which is not a very efficient way of communicating to the user, what are my a...

Windows Service error: "Attempted to read or write protected memory. This is often an indication that other memory is corrupt."

I have a simple windows service application I am trying to debug in VS 2008 IDE but each time I run the code, I get the error "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." . This error occurs at the service.Stop() line below: static class Program { /// <summary> /// The ...

Where can I find a worldwide list of IATA cities with airports?

Hi, I am writing an app to display flights between cities and want to include a combo with cities/countries with airports for the person to select. Then I call a GDS web service to display flight info. But the GDS does not supply worldwide IATA cities/airports with one call. Does anyone know of a suitable source where I can obtain this ...

My spider service keeps stopping unexpectedly?

I have a service that trawls our website to get alot of data. This takes about 3 days(at a guess as it hasnt managed to run the whole way though yet!) on 5 different threads getting the data and putting it in the database. If the WebClient.DownloadData fails then the error is logged in the database and it is ignored, but at about 3am yes...

Renaming A Running Process' File Image On Windows

I have a Windows service application on Vista SP1 and I've found that users are renaming its executable file (while it's running) and then rebooting, thus causing it to fail to start on next bootup because the service manager can no longer find the exe file since it's been renamed. I seem to recall that with older versions of Windows yo...

Looking for smtp service with reporting features

Because the IP of the SMTP server that is being used by my Gridserver account at Mediatemple is blacklisted I'm looking for an off site SMTP service to send mails from my PHP application to (verification mails, notifications, etc). I'm using CampaignMonitor.com for mass mailings, but for all other mails I would like to use another serv...

Loading GUI App from Windows Service

I am writing a .NET Windows service whose role is to launch a GUI application(whose source is unavailable). The operation is a fire and forget, no communication besides initial command-line parameters. The service ought to run as a given Windows account. Problem: The app that the service launches is not displayed on the desktop. It ne...

flex and .net 2.0 web service, how to allow access from other domains?

I created a proyect in flex builder with application server type set to none when I debugg, I can acces the web service from my local machine thats on a site http://mysite.com/ws/ws.aspx?wsdl when I upload the flex app to mysite.com/myapp.html it works great but when I upload it to myapp.mysite.com/myapp.html it wont access the web se...

Threading multiple async calls (Silverlight)

Hi, Part of my Silverlight application requires data from three service requests. Up until now I've been chaining the requests so as one completes the other starts... until the end of the chain where I do what I need to do with the data. Now, I know thats not the best method(!). I've been looking at AutoResetEvent (link to MSDN example...

ASP.NET MVC REST Service

If you have been following my past question, located here,link text I had more ?'s If I go with ASP.NET MVC service, my client at prersent has 1 stored procedure which has 20 nullable parameters and returns the search result which I could turn to json or pox. The question is how would I invoke the MVC with so many parameters? They pre...