In the place where I work, there is some software written in C #, and some written in C ++ (the most important). Some time ago, we decided that it would be nice to track any possible problem in the software by sending stack statistics and exception information via a web service. So I came up with a WCF service that receives information and stores it in a database and sends an automatic email. It worked, we had to provide it with a password, it was done, but now I want our other software written in C ++ to use this web service (this software is used for both windows and Linux therefore we cannot just make a call of other software on the user's machine).
I looked for this information and found this tutorial on how to use gSOAP , which so far has not really helped me (many errors, it is not very detailed, and the web.config file cannot be read). I was wondering if there is another way to achieve this. In addition, since I use authentication in my web service, it now has wsHttpBinding (which AFAIK is not supported by gSOAP ).
Can you guys help me?
Bruno Machado - vargero
source share