I searched the forum trying to find an answer that might alleviate a post, but didn't find one that appeared similar. I am somewhat of a newbie to C++. I am trying to use the WS02 WebServiceFramework and have run into a general dll question that I think the smart people of this forum could definitely provide some advice.
So the WS02 framework works by calling a dll that you develop that handles the service request. I've got an application that I want to take that service request from the dll and process it(send it on to non web service clients).
So I've got the WS02 server application that asychronously calls a dll when a request comes in and I need to come up with a way to get that data that is recived by that dll to my application. What are some ways of achieving this? Usually when I use a dll I am calling functions in that library in a synchronous fashion. In this case I need a dll to call my running application.
Your thoughts/suggestions/ideas greatly appreciated.