Webspeed XML gateway

timmcintyre

New Member
Hi All,

I need to setup a basic webspeed XML gateway to accept http/https posts containing xml requests. Does anyone have a basic example on how to implement this ?

Any help appreciated..

Cheers

Tim
 

MrMacaroon

New Member
Tim,
Build a .p program that looks the see what the content of the webstream is (web-context:is-xml). Then you can take and a stick (web-context:form-input) into a memptr. Once you have that in place start a SAX handler and you are off to the races.

if (web-context:is-xml) is false then you can give some kinda error back.

HTH

Cameron
 
Top