I want the application to be both a soap server and soap client, how to do that? How to handle below issue?
Suppose the soap Server provides ServiceA and the soap Client will access ServiceB in remote machine, and the skeleton files can be generated from ServiceA.h and ServiceB.h.
The problem is generating the Server code from Service.h and generating client code from ServiceB.h, they both produce three files: soapC.h, soapC.cpp, soapStub.h. As they are within a same project, they will conflict with each other. How to solve this?