FW: Calling .ASPX.VB from .CFM

2009-07-24 Thread Jason Neidert
is to encapsulate it in a CFC that will return me a CF recordset or a no inventory available status. Thanks everyone for your help -Original Message- From: Jason Neidert [mailto:ja...@steelfusion.com] Sent: Thursday, July 23, 2009 1:54 PM To: cf-talk Subject: RE: Calling .ASPX.VB from .CFM

RE: Calling .ASPX.VB from .CFM

2009-07-23 Thread Jason Neidert
.ASPX.VB from .CFM On Wed, Jul 22, 2009 at 6:06 PM, Jason Neidert ja...@steelfusion.comwrote: How can I accomplish the creation of the object CheckAvailabilityRQ using ColdFusion? cfobject name = IRMPublic webservice= http://resortdata.com/IRMPublic; type = webservice wsportname

Re: Calling .ASPX.VB from .CFM

2009-07-23 Thread Dave Watts
I need to pass it a complex object as defined in the SOAP: CheckAvailabilityRQ      Credentials        LogonID22352345234/LogonID        Password234523452354/Password        DataPath235234523452/DataPath        DatabaseID52345234523/DatabaseID      /Credentials      AvailabilityRequest  

RE: Calling .ASPX.VB from .CFM

2009-07-23 Thread Jason Neidert
? -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Wednesday, July 22, 2009 1:11 PM To: cf-talk Subject: Re: Calling .ASPX.VB from .CFM SO... if I use CFINVOKE I am not quite sure what to pass in the CFINVOKEARGUMENT Do I attempt to create a large structure and pass

RE: Calling .ASPX.VB from .CFM

2009-07-22 Thread Jason Neidert
/CheckAvailabilityRQ /CheckAvailability /soap:Body -Original Message- From: James Holmes [mailto:james.hol...@gmail.com] Sent: Saturday, July 18, 2009 7:13 PM To: cf-talk Subject: Re: Calling .ASPX.VB from .CFM Yes, look at the request in the WSDL: wsdl:message name

Re: Calling .ASPX.VB from .CFM

2009-07-22 Thread Dave Watts
SO... if I use CFINVOKE I am not quite sure what to pass in the CFINVOKEARGUMENT Do I attempt to create a large structure and pass it in under 'CheckAvailability_irmRQ'? I think you'll need a little more than that; you'll need CFCs to represent the objects and you'll need to use CFPROPERTY

RE: Calling .ASPX.VB from .CFM

2009-07-22 Thread Jason Neidert
promise I won't write again until I have exhausted all newly found help. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Wednesday, July 22, 2009 1:11 PM To: cf-talk Subject: Re: Calling .ASPX.VB from .CFM SO... if I use CFINVOKE I am not quite sure what to pass

RE: Calling .ASPX.VB from .CFM

2009-07-22 Thread Jason Neidert
.ASPX.VB from .CFM SO... if I use CFINVOKE I am not quite sure what to pass in the CFINVOKEARGUMENT Do I attempt to create a large structure and pass it in under 'CheckAvailability_irmRQ'? I think you'll need a little more than that; you'll need CFCs to represent the objects and you'll need to use

RE: Calling .ASPX.VB from .CFM

2009-07-22 Thread Jason Neidert
an instance of 'IRMPublic.CheckAvailability_irmRQ'? I think I am getting closer... -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Wednesday, July 22, 2009 1:11 PM To: cf-talk Subject: Re: Calling .ASPX.VB from .CFM SO... if I use CFINVOKE I am not quite

Re: Calling .ASPX.VB from .CFM

2009-07-22 Thread Casey Dougall
On Wed, Jul 22, 2009 at 6:06 PM, Jason Neidert ja...@steelfusion.comwrote: How can I accomplish the creation of the object CheckAvailabilityRQ using ColdFusion? cfobject name = IRMPublic webservice= http://resortdata.com/IRMPublic; type = webservice wsportname =

RE: Calling .ASPX.VB from .CFM

2009-07-18 Thread Adrian Lynch
Yes. Chances are you need to pass arguments along with your method call. Adrian -Original Message- From: Jason Neidert [mailto:ja...@steelfusion.com] Sent: 17 July 2009 18:50 To: cf-talk Subject: RE: Calling .ASPX.VB from .CFM Here is a link to the .WSDL file: http

Re: Calling .ASPX.VB from .CFM

2009-07-18 Thread James Holmes
: Calling .ASPX.VB from .CFM ... It tells me that CheckAvailability cannot be found. I can see the it though in the wsdl file. Am I calling incorrectly? ~| Want to reach the ColdFusion community with something they want? Let them know

RE: Calling .ASPX.VB from .CFM

2009-07-17 Thread Jason Neidert
quick response. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] 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

Re: Calling .ASPX.VB from .CFM

2009-07-17 Thread Dave Watts
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? If there's a URL for

RE: Calling .ASPX.VB from .CFM

2009-07-17 Thread Jason Neidert
-Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Friday, July 17, 2009 10:31 AM To: cf-talk Subject: Re: Calling .ASPX.VB from .CFM I was told that the .vb writes the soap. Here is the SOAP: http://irm.resortdata.com/LutsenInterface/IRMpublic.asmx?op

Calling .ASPX.VB from .CFM

2009-07-16 Thread Jason Neidert
Been writing CF apps for 10 years. First time posting. Humbling experience and probably well needed. Scenario: Was provided files from a 3rd party that would allow me to search motel inventory. Client wants me to search inventory and integrate into existing coldfusion based website. I was

Re: Calling .ASPX.VB from .CFM

2009-07-16 Thread Dave Watts
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