Some Help on how to assign a Web Service to a NamedPipe
-
Hi I am looking for some help from anyone who can show how I can assign a web service to named pipes. My application is a web application where the web service will be in a separate project. The design I need to implement is where the request from the client to server is one pipe where it needs to invoke a process and then down another pipe, the response, a server to client where this invokes a separate application. I am only passing XML data between the two. In code project, I saw the two articles on NamedPipes, but being a little new to this, I could with some expert help on how to do this, and how to call the Web Service App from Asp.Net. Can someone help me, please!
-
Hi I am looking for some help from anyone who can show how I can assign a web service to named pipes. My application is a web application where the web service will be in a separate project. The design I need to implement is where the request from the client to server is one pipe where it needs to invoke a process and then down another pipe, the response, a server to client where this invokes a separate application. I am only passing XML data between the two. In code project, I saw the two articles on NamedPipes, but being a little new to this, I could with some expert help on how to do this, and how to call the Web Service App from Asp.Net. Can someone help me, please!
So you have a Web Service, a client app, and some other app on the server. You want the client app to contact the web service, which will then activate the server app, which the client app will be waiting to hear from?
-
So you have a Web Service, a client app, and some other app on the server. You want the client app to contact the web service, which will then activate the server app, which the client app will be waiting to hear from?
The client, which is an ASP.Net page or my web application, will be waiting to hear from an application, which will on another device via the web service. So, in other words browser, web application, sends XML via web service to another application else where down one pipe, does work, response from this application goes back down another pipe back to my ASP.Net page.