in reply to How do i pass dateTime for a .Net webservice.

Take a good look at Soap::Lite. It is designed to work with web services.

Jason L. Froebe

Blog, Tech Blog

  • Comment on Re: How do i pass dateTime for a .Net webservice.

Replies are listed 'Best First'.
Re^2: How do i pass dateTime for a .Net webservice.
by erroneousBollock (Curate) on Sep 11, 2007 at 03:52 UTC
    SOAP::Lite doesn't know that your perl string is supposed to be converted to an XSD dateTime type.

    At a glance, SOAP::WSDL doesn't either (even though it knows that the service requires a dateTime)... that'd probably be a useful thing for it to do. If not on date-like strings, then at least automatic conversion of the more common datetime object types.

    -David