It looks like you are trying to invoke a web service - I apologize I don't
know much about MS COM / Soap stuff (other then it's more or less
proprietary XML - as much as it can be). You might want to look at the
'soap' tag on the same site. Not sure how COM will work on Linux either.

Sorry I miss understood Bud,
Rob

-----Original Message-----
From: Bud [mailto:webcreation@;mindspring.com]
Sent: Friday, November 01, 2002 10:20 AM
To: CF-Talk
Subject: RE: MSXML alternative for Linux?


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
Get the mailserver that powers this list at http://www.coolfusion.com

Reply via email to