I port my application from Java 1.4 to Java 1.6 and RSA 7.0 to RSA 8.0. When I open my projects that were previously in RSA 7.0, some of the files that are generated from WSDL get the following error:
"Syntax error on token, expected class; com.ibm.ws.webservices.engine could not be resolved for type"
For the following lines:
com.ibm.ws.webservices.engine.enum.Style.WRAPPED com.ibm.ws.webservices.engine.enum.Use.LITERAL
When we manually changed the class path as shown below, it was compiled in version 1.6:
com.ibm.ws.webservices.engine.enumtype.Style.WRAPPED com.ibm.ws.webservices.engine.enumtype.Use.LITERAL
I tried many options, but could not find the right solution. I also posted the problem in another forum, but have not yet found a solution.
source share