On Mon, Jan 29, 2018 at 10:42 AM, Ravi Kiran <[email protected]> wrote:
> Hi need some help with the below error:
> Trying to make a Web service call from a Java proxy client, generated
> using apache axis and Eclipse based on wsdl file.
>
> When trying to make a webservice call with the help of generated java
> proxy file getting the below error :
>
> Exception in thread main Axis fault
>
> Fault code:{http://xml. Apache. Org/Axis} HTTP
> Faultstring:404 not found.
>
> Wsdl is working fine in soapui. Only issue is while trying to access the
> proxy main through a standalone program
>
> How to resolve this.
>
>
>
>
Doesn't seem like your endpoint is valid, this is not: http://xml . You
need to figure that out.
If you have axis2 as your web services host I suggest trying to go to
http://localhost:8080/services/listServices or whatever your host is, and
get the "Service EPR :" endpoint.
In any event, the web services host will define the correct endpoint, and
the client needs to use that endpoint.
- R