On 11/1/02, Rob Rohan penned:
>There is CFX_XML http://www.cfdev.com/xml/xmlparser/ I am in the process of
>writing one as well (free open source) but it wont be ready for a while. The
>CFX_XML uses java so it should run on real OS's.

I actually don't need a way to parse the XML. I need a way to pass it 
to UPS. This is what I'm currently doing:

<cfobject name="objXMLHTTP" class="microsoft.xmlhttp" action="create" 
type="COM">
<cfscript>
XMLDataString = XMLRequestAccess & XMLRequest;
temp = objXMLHTTP.open("POST","#Attributes.Server#",false);
temp = objXMLHTTP.setRequestHeader("Content-Type", 
"application/x-www-form-urlencoded");
temp = objXMLHTTP.send(XMLDataString);
XMLResponse = objXMLHTTP.responsetext;
</cfscript>
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Reply via email to