Accessing the Request URL
The service implementation may access the URL for requests that arrive via HTTP or HTTPS from the
rwsf::CallInfo object.
To access the property RWSF:requestURL:
rwsf::Attribute attr = callInfo.get("RWSF:RequestURL");
std::string temp;
attr >> temp;
std::string requestURL(temp);