Connect call in xmlrpc_client_call function in XML RPC?

breartbreakly

New Member
I have seen that we do not do a init call before making a RPC call on the XML PRC server.My Doubt is Where does the XML RPC client call Connect (just one time call in the beginning) to make a TCP connection with the server.(XML RPC Server must be listening and waiting on accept() call).I think that that we should be doing something like this.\[code\]XML_INIT(SERVER_URL); /* JUST A ONE TIME CALL TO INITIATE A CONNECTION WITH THE XML RPC SERVER AFTER THIS CALL THE CONNECTION SHOULD HAVE BEEN ESTABLISHED.*//* CALL A REMOTE METHODS*/xmlrpc_client_call(SERVER_URL, remoteMethod1.....) xmlrpc_client_call(SERVER_URL, remoteMethod2.....) xmlrpc_client_call(SERVER_URL, remoteMethod3.....) \[/code\]Please explain how the does the library connects to the server initially? I have learned that the XML RPC runs over HTTP. I am assuming that the Transport layer is TCP.
 
Back
Top