Example:
I got an application and a server. I need to send XML over to the server using Socket Connection.
How do I send those XML tags over without even creating a XML file?
Printable View
Example:
I got an application and a server. I need to send XML over to the server using Socket Connection.
How do I send those XML tags over without even creating a XML file?
Are you talking about a web service? Or sending some xml through an established socket?. If you need to send xml, it can be accomplished in many ways. What is the server expecting?
One doesn't necessarily need to create a physical file to send xml. Can you provide details on what you're trying to accomplish?
Okie, not web service.
I doing a program for IPAQ. I need to send XML to the server using socket connection...those XMLs the server received is used for processing purposes and I would need to get the response back.
So as to update my application.
I do something similar. To sum it up, you'd have to connect to the server with a socket, then send some info. The info you send can be XML, which you may build in various ways. Then, you can receive the response.
Where are you at with your project? Have you established a socket connection? Have you built and sent XML? Received a response?
Details are good :)
I got the Socket Connection working in another application but I havent integrate it into my program yet.
I'm in the progress of sending XML and receiving XML.
But I do not know how to send those XMLs over and havent receive a response.
Do you happen to have any chat programs ?