3 Replies Latest reply on Oct 17, 2007 1:17 PM by asoldano

    Class name case incorrect in generated client artifacts

      Hi,
      I'm using the wstools.sh from JBoss 4.0.4 GA to generate some client artifacts for a web service I wrote and I found that in the generated PortType.java file that the return and parameter types (I'm using document style) have a lowercase first letter instead of uppercase. Because of this the generated files won't compile unless I tweak it. This happens whether I use the implicit package or supply my own package-namespace element. For example

      public interface HelloWorld_PortType extends java.rmi.Remote
      {
      
       public test.helloWorldResponse sayHello(test.helloWorld helloWorld) throws java.rmi.RemoteException;
      }
      


      Note the "helloWorldResponse" and "helloWorld" should have a capital H in hello.

      Derek