It turns out that I do not need this functionality, and I guess no one else does either.
But if this functionality is going to be provided by AwareIM, it should work as advertised.
If the URL must contain the string: "someName1/someName2", The User Guide states to use a URL like:
http://ServerName:port/AwareIM/someName1/someName2?parameters
This does not work and the Client receives:
HTTP Status 404 – Not Found
The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Earlier in this thread, support stated:
aware_support wroteIt's probably a deficiency of the documentation. The URL that contains your string should also contain REST in the path
So, I tried:
http://ServerName:port/AwareIM/REST/someName1/someName2?parameters
This also did not work and the Client received:
HTTP Status 500 – Internal Server Error
The server encountered an unexpected condition that prevented it from fulfilling the request.
Server log also contained:
Unable to determine business space version for user
I also tried adding the extension .json for a URL something like:
http://ServerName:port/AwareIM/someName1/someName2.json?parameters
This Worked but is not documented anywhere. I only stumbled upon this format because of some experimentation and I knew where to look because of my prior experience in web development.
Since using a .json extension works, that proves that I have everything else set up correctly.
So, the question is: why do the documented URLs (the first 2 above) not work?