I have a webservice class named ReceiveServicePortStub.java. In this stub, I make a new OperationDesc and set some variables. Two of those are setStyle and setUse. My program used to be on 1.4, now it's on 1.6. Thus, it's giving me compatibility warnings for the old packages that have enum in the title. As a result, it's giving me a NoSuchField: RPC error when I run it in Tomcat. My question is, what can I replace org.apache.axis.enum.Style.RPC and org.apache.axis.enum.Use.ENCODED with to be forwards compatible?
This is using axis 1.4.jar
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 32768
posted
0
Maybe if you are prepared to change JVMs, there's a chance you could change Axis to a newer version as well? Axis2 doesn't have an "enum" package any more.