Error creating web service client

I created one web service to access database.it, which works fine. but when I try to create a client from this using WSDL, it gives an error like

"The Apache Axis2 Web service runtime does not support the client project" 

I am using tomcat 6.0 and Axis2. To create a client, I created a java project, and then tried to create a .SO client. I do not understand why this error occurs. For axis 2, the client project should be a dynamic web project ??

+4
source share
1 answer

I think you need to create a new Dynamic Web Project. In the project wizard, you must change the "version of the dynamic web module" from 3 to the bottom (2.2, 2.3, 2.4 or 2.5). In my case, it worked with 2.5. You can then complete the creation of the project and create the web service client.

+5
source

Source: https://habr.com/ru/post/1395725/


All Articles