Hi Greg,
Parameters passed via the request are automatically parsed out and stored in the Value queue.
A parameter can arrive in one of 3 ways;
a) as a cookie
b) as part of the URL - for example
www.capesoft.com?id=4 would result in p_web.GetValue('id') returning '4'.
c) as the "data" part of the Post - when it is in the format x=1&y=2&z=3 and so on.
As you can see your XML packet is really none of these. The data is clearly in the data pasrt of the post, but it's not using the HTML format. Rather it's just a big XML packet.
So clearly the above won't really help you.
But there are 2 approaches you can take.
a) the whole request is stored in p_web.RequestData.DataString. So you can parse that out by hand easily enough. typically you can find the start of the "data part" by searching for CR/LF/CR/LF. eg
x = instring('<13,10,13,10>', self.RequestData.DataString, 1, 1)
b) there is a special case handled as well. If the incoming request has the Content-Type item in the header set to 'text/xml' then the engine will automatically parse out the xml packet and place it in a special value (called 'xml').
In that case the big xml string is in p_web.GetValue('xml')
note that your packet below does _not_ include this header though so you would not be able to use this technique (unless you changed the request to include the content-type: header.)
One last thing worth mentioning :
GetValue does not look "inside" the xml packet at all - that job is for the XML class.
Cheers
Bruce