How to write a gsoap restful C++/Solaris client, which should send a document(xsd__base64Binary) to webservice using streaming?
We tried writing a gsoap restful client without streaming and it is working fine. We generated a request xml (serialization- soap_begin_send(--), soap_serialize(--), soap_put(--),soap_end_send(--)) using gsoap and then used soap_post_connect(---), soap_send(---),soap_end_send(---) to send the request.
We used MTOM for streaming in gsoap client and working fine. Is it possible to stream a document in gsoap restful client? Can we use MTOM in restful case? If yes, could you please let us know, what are all the gsoap functions I should use for serialization and then to send that xml request? And also, please share if you have any sample code.