Discussion:
What do I load ?
(too old to reply)
Tony Girgenti
2006-06-22 00:26:01 UTC
Permalink
Hello.

I'm trying to develop a web comsuming client using VS.NET 2003(VB), .NET
Framework 1.1.4322, ASP.NET 1.1.4322, WSE2.0 on a WinXP Pro Sp2 comuter.

If i comsume this web service:
https://xatanet.net/xatanetwebservice/tripexportservice.asmx

and do this operation: RetrieveArchivedTrips

using: Dim strDate As Date = "2006-04-01"
Dim endDate As Date = "2006-04-28"
proxy.RetrieveArchivedTrips(strDate, endDate)

What do I load when i use the following statements in my program:
Dim doc as XmlDocument = new XmlDocument()
doc.Load()

Any help would be gratefully appreciated.

Thanks,
Tony
Martin Honnen
2006-06-22 13:14:14 UTC
Permalink
Post by Tony Girgenti
I'm trying to develop a web comsuming client using VS.NET 2003(VB), .NET
Framework 1.1.4322, ASP.NET 1.1.4322, WSE2.0 on a WinXP Pro Sp2 comuter.
https://xatanet.net/xatanetwebservice/tripexportservice.asmx
and do this operation: RetrieveArchivedTrips
using: Dim strDate As Date = "2006-04-01"
Dim endDate As Date = "2006-04-28"
proxy.RetrieveArchivedTrips(strDate, endDate)
Dim doc as XmlDocument = new XmlDocument()
doc.Load()
Dim node As XmlNode = proxy.RetrieveArchivedTrips(strDate, endDate)
Dim doc As XmlDocument = node.OwnerDocument
doc.AppendChild(node)

Let us know whether that works for you.
--
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Continue reading on narkive:
Loading...