Closed GoogleCodeExporter closed 9 years ago
Welll... what is the url that is being complained about?
Original comment by mosa...@gmail.com
on 18 Mar 2014 at 3:42
I discovered that url is empty in the generated code. I have to manually
assign the web service that am calling..
public class fgplservice {
public String NAMESPACE ="http://tempuri.org/";
public String url="";
public int timeOut = 60000;
public IWsdl2CodeEvents eventHandler;
public SoapProtocolVersion soapVersion;
public fgplservice(){}
...I assigned value to url="
http://www.firstguaranteepension.com/fgplservice.asmx" and it started
working well
Original comment by okoj...@gmail.com
on 18 Mar 2014 at 11:56
can you get any solution? same issue i am facing..
Original comment by corona.p...@gmail.com
on 28 Apr 2014 at 9:49
How I solved the problem is that I replaced all occurance of ur with the
[web service url] in my case is something like
http://www.firstguaranteepension.com/fgplservice.asmx :
Original generated from ksoap
--------------------------------------------------------------------------------
----------------------------
public String NAMESPACE ="http://tempuri.org/";
public String url="";
public int timeOut = 60000;
public IWsdl2CodeEvents eventHandler;
public SoapProtocolVersion soapVersion;
public fgplservice(){}
--------------------------------------------------------------------------------
-------------------------------
Modified version
--------------------------------------------------------------------------------
----------------------------
public String NAMESPACE ="http://tempuri.org/";
public String url="http://www.firstguaranteepension.com/fgplservice.asmx
";
public int timeOut = 60000;
public IWsdl2CodeEvents eventHandler;
public SoapProtocolVersion soapVersion;
public fgplservice(){}
Original comment by okoj...@gmail.com
on 28 Apr 2014 at 12:39
Original comment by mosa...@gmail.com
on 9 May 2014 at 6:32
Original issue reported on code.google.com by
okoj...@gmail.com
on 17 Mar 2014 at 11:08Attachments: