hi
I use xmlrpc library(C++ in VC++ on Win2k)
I need to create a session to communicate with the server
Are there any biult-in classes? or help on how to begin?....Since I'm a newbie
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When you say session do you mean like an application server? If so I am pretty sure that xmlrpc++ is completely stateless so I don't think it handles those kind of sessions.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hi
I use xmlrpc library(C++ in VC++ on Win2k)
I need to create a session to communicate with the server
Are there any biult-in classes? or help on how to begin?....Since I'm a newbie
Thanks
When you say session do you mean like an application server? If so I am pretty sure that xmlrpc++ is completely stateless so I don't think it handles those kind of sessions.
You need to use the XmlRpcClient class to communicate with an xmlrpc server. See the
HelloClient example program.
Chris,
But XmlRpcClient class doesn't use any sessions for authentication. I think it can be handled by using execute() method in client.