i want to create an application which passes parameters to windows service. then windows service calls xml web service.
i want following things.
1)it should work on network
2)how to call windows service from .aspx page.
3)how to pass parameters to a windows service.
4)how to call web service from windows service.
Loading
Jean PaulPosted Nov 6, 2011, 9:50 AM
The ASP.NET performs as the client here and calls the methods of WCF service.
You can pass arguments to the method.
or
You can use MSMQ implementation. The ASP.NET pushes a job to the queue and service will be listening to the queue and retrieves job.