Nowdays there is the server (gsoap) written by c++. I have c# application (c# 4.0, winforms). I generate wsdl from this service. So I can call some functions in my app.
But the duration of this functions is more than hour. I think, that the best way is:
1) I call this function in thread in my application.
2) Another person call this function in separate thread in their application.
But this person tell me that it is impossible. She says, that "in gsoap there is no such functionality as thread"
Is it true? I do not understand why it is impossible..