1

I have a server client application. Server is developed in php and client is in C# windows forms On server i assign some task to the clients registered on it. On client side i have some 60 seconds interval after which my client connects to server and ask for task that client has to perform. Currently i am using WSDL SOAP to do this on my server side i.e in php and my clients calls this webservice in every 60 sec. Now i want to use push technology so that when user assigns task for client server will push the xml string to client.

I googled a lot but not found anything where php can push content to c# desktop application. Can someone guide me?

3
  • How much control do you have over the clients? Can you send a connection from the server to the client directly? Commented May 31, 2012 at 19:15
  • server haave all the access to clients. It knows the IP of each client and connect it anytime as there is no problem of firewall, nat etc Commented May 31, 2012 at 19:25
  • Is there any reason you can't pull the data from the client. Commented May 31, 2012 at 20:34

1 Answer 1

3

You will need to code the clients to accept information from the server. They will need to be accessible on the network from the server. On the PHP/server side, there are a number of ways to connect to other networked entities: sockets, cURL, etc.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.