On Wed, 5 Jan 2005 08:45:28 -0800, Sean Corfield <[EMAIL PROTECTED]> wrote: > A couple of errors in what you're doing: > > <cfset parameters.Parameters = "#weatherParameters#" /> > Should be: > <cfset parameters.weatherParameters = weatherParameters /> > (Parameters is the wrong name) > > > aString = ws.NDFDgen(parameters); > Should be: > aString = ws.NDFDgen(argumentCollection=parameters); > > However that still doesn't work.
The dates need to be CFML dates, not schema dates - otherwise CF doesn't know how to do the translation to the Web Service param types: <cfset parameters.StartTime = "Jan 1, 2004 12am" /> <cfset parameters.Endtime = "Jan 1, 2004 12am" /> -- Sean A Corfield -- http://www.corfield.org/ Team Fusebox -- http://www.fusebox.org/ Breeze Me! -- http://www.corfield.org/breezeme Got Gmail? -- I have 5 invites to give away! "If you're not annoying somebody, you're not really alive." -- Margaret Atwood ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189465 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

