The error says it was expecting a SOAP response, but never got one, are you sure
that's the right URL to send your request to ?
Cheers
Simon
--- In pocketsoap@yahoogroups.com, "amir_krifa" <krifa_amir@...> wrote:
>
> Hi,
>
> I'm new to PocketSOAP, I was trying to access the DHT web
service(http://planetflow.planet-lab.org/#planetlab:5851/), however each time I
execute my vb script I get the following error:
>
> Invalid root element, expecting
{http://schemas.xmlsoap.org/soap/envelope/}Envelope or
{http://www.w3.org/2003/05/soap-envelope}Envelope
>
> The Vb script I'm using is the following:
>
> dim env
> set env = CreateObject("pocketSOAP.Envelope.11")
> env.SetMethod "put", "put"
> env.Parameters.Create "key", "test"
> env.Parameters.Create "value", "1"
> dim http
> set http = CreateObject("pocketSOAP.HTTPTransport")
> http.SOAPAction = ""
> http.Send "http://planetflow.planet-lab.org/#planetlab:5851/", env
> env.parse http
> wscript.echo "Quote for CRM = " & env.Parameters.Item(0).Value
>
>
> Please, could you help me to identify the source of the problem ?
>
> Thanks,
> Amir
>