Hello Listers,
Can somebody please fill me in, in what this piece of code should do.
It's a cut from the function SimpleAxisTransport::readFromClient() in
the simple-axis-server. In my application I get a "/" back from this
function....
// **** code ****
unsigned int uiServiceStartPos =
strReceived.find ("POST ") + strlen ("POST ");
unsigned int uiServiceEndPos = strReceived.find (" ",
uiServiceStartPos);
m_strServiceURI =
strReceived.substr (uiServiceStartPos,
uiServiceEndPos - uiServiceStartPos);
// **** code ****
greetings
Roel Bindels