0

I am calling a WebService Method using R with SSOAP Package. I Created a SoapServer Object

s2<-SOAPServer("http://www.webservicex.net","http://www.webservicex.net/stockquote.asmx?op=GetQuote")

and called the method using .SOAP as

reply2<-.SOAP(server = s2,method = "GetQuote",action = "http://www.webserviceX.NET/GetQuote")

It is giving error as

"Could not resolve host: http"

Ronak Shah
  • 377,200
  • 20
  • 156
  • 213
utkarsh
  • 333
  • 1
  • 3
  • 11

1 Answers1

0

Found Solution...

reply2<-.SOAP(server = s2,method = "GetQuote",action = I("http://www.webserviceX.NET/GetQuote"))
utkarsh
  • 333
  • 1
  • 3
  • 11