error in generated wsdl file

2002-05-04 Thread James Kojo
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

Re: classpath problem after upgrading to beta 2

2002-05-04 Thread Hui Deng
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

RE: deserialization of final fields

2002-05-04 Thread Narve Saetre
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

Java2WSDL(Beta2) Bug?

2002-05-04 Thread Ichiro Fujita
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

Header -> mustUnderstand-Attribute

2002-05-04 Thread Till Woerner
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

Using multiple threads to call the same service

2002-05-04 Thread Ronald Hütter
Does anybody know, whether it is safe to call the same service by multiple threads, resulting in overlapping calls? BR, Ronald

Performance impact of XML Parser?

2002-05-04 Thread Ronald Hütter
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