How to use WSDL2Java generated files?
Posted
by vikasde
on Stack Overflow
See other posts from Stack Overflow
or by vikasde
Published on 2010-02-19T20:11:55Z
Indexed on
2010/04/02
8:43 UTC
Read the original article
Hit count: 629
I generated the .java files using wsdl2java found in axis2-1.5. Now it generated the files in this folder structure: src/net/mycompany/www/services/
The files in the services folder are: SessionIntegrationStub and SessionIntegrationCallbackHandler.
I would like to consume the webservice now. I added the net folder to the CLASSPATH environment variable. My java file now imports the webservice using:
import net.mycompany.www.services;
public class test
{
public static void main(String[] args)
{
SessionIntegrationStub stub = new SessionIntegrationStub();
System.out.println(stub.getSessionIntegration("test"));
}
}
Now when I try to compile this using:
javac test.java
I get: package net.mycompany.www does not exist.
Any idea?
© Stack Overflow or respective owner