I was told that the .vb writes the soap. Here is the SOAP: http://irm.resortdata.com/LutsenInterface/IRMpublic.asmx?op=CheckAvailabilit y
So could I skip having the aspx.vb file generating the soap and just generate it myself and send it to the SOAPAction address? Thanks so much for your quick response. -----Original Message----- From: Dave Watts [mailto:[email protected]] Sent: Thursday, July 16, 2009 4:12 PM To: cf-talk Subject: Re: Calling .ASPX.VB from .CFM > I was able to setup this .NET app on my test server and get it to work: > http://lutsen.steelfusion.com/winter/rates_packages/packages/rdp/rdp/Default .aspx > > I pre-loaded valid input to get search results. > Just click 'Check Availability' to return inventory data. > > OKAY, so there is a default .aspx page that has this at the top of it: > How in the heck can I call this aspx.vb and pass to it the dates, room type, etc.. and > read the responses from within a coldfusion page? Since it's an HTML form and action page, you can use CFHTTP to send an HTTP POST request to the action page URL. Since it's .NET, you may need to actually use CFHTTP to fetch the form and get the VIEWSTATE, so you can send that with your POST. I noticed you listed a WSDL file, but I didn't see any file that obviously corresponds to a SOAP service. You may want to ask the provider of this code if there is a SOAP interface, since that would be easier to invoke. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more informatio ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324655 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

