I'm generating a wsdl file, and then generating the server stubs and
deployment descriptors from the wsdl file.
When I run the wsdl2java tool, I get an sax parser exception stating
that there is a error in the wsdl file.
Apparently, certain attributes are being defined twice in the
wsdl:definitio
D:\Apache Tomcat 4.0\webapps\axis\WEB-INF\classes>java
samples.userguide.example
3.Client "test me!"
Exception in thread "main"
java.lang.NoClassDefFoundError: javax/xml/rpc/encodin
g/XMLType
Finally figure out what happen: on the client side,
now beta2 use
import javax.xml.rpc.ParameterMode;
i
Great, Tom, I think this will fix the problem for some, perhaps most,
cases. Unfortunately, it may not be the best solution in all cases: What
if you want the fields to be serialized, but not deserialized? In my
case I have java classes on the server and C#-classes on the client. The
java cla
Hi,
I try to create WSDL file from Java class.
Java2WSDL of Axis Beta1 create correct WSDL file.
But Java2WSDL of Axis Beta2 create incorrect WSDL file.
For example...
Sample test class(CalcBean.java) is like following.
public class CalcBean {
int result = 0;
public int sum( in
Hi,
Is it ok in beta 2 that axis does not throw an exception if a header
with mustUnderstand attribute set to 1 is not processed???
Greetings,
Till
--
Caught in our narrowminded believe...
-
Till Woerner
Berlin, Germany
EMail:[EMAIL PROTECTED]
ICQ#: 7162410
Does anybody know, whether it is safe to call the same
service by multiple threads, resulting in overlapping calls?
BR, Ronald
I did not explicitly put any specific XML parser on the
classpath. How can I know, which one is used and which one
would give me the best performance?
Ronald