I am working on calling the webservices using the gsoap packages in c++ and get the responses. I have to pass some header information as well, which I am not sure how to do that, as my header is like this - /* SOAP Header: */
struct SOAP_ENV__Header
{
public:
void *dummy; /* transient */
};
Is there something I missed, or it is supposed to be like this only and we have to make changes here? I have read here some info, but my header is just dummy.
Secondly, for further debugging, I wanted to enable DEBUGS and for that, as per the user-guide, I have uncommented the DEBUG macros in the stdsoap2.h and built with the DEBUG flag again but, I couldn't get the .log files getting created. Any idea?
Deepak