Fresh build compiles for me

AccountService.java: snippet  is below matches WSDL and AccountServiceImpl

       /**
        * Auto generated method signatures
        * @param param6* @param param7
        */
        public float deposit(
java.lang.String param6,float param7) throws java.rmi.RemoteException;

Simon Laws wrote:
Hi

I just tried running the maven build (I checked out from svn a couple of
hours ago) for the big bank sample and the AccountService.java interface
that is generated from the AccountService.wsdl matches neither the wsdl nor
the checked in AccountServiceImpl.java and hence the build fails. The
signatures are all represented but they are incorrect, e.g.

WSDL
           <xsd:element name="deposit">
               <xsd:complexType>
                   <xsd:sequence>
                       <xsd:element name="accountNumber"
                           type="xsd:string" />
                       <xsd:element name="amount" type="xsd:float" />
                   </xsd:sequence>
               </xsd:complexType>
           </xsd:element>

AccountServiceImpl.java

   public float deposit(String account, float ammount) throws
RemoteException {
       try{

Generated AccountService.java

   public float deposit(
        java.lang.String param0) throws java.rmi.RemoteException;

I had assumed this would work as Rick has been posting fixes to big bank. If this is being caused by work in progress then not to worry I will wait. If
not I will raise JIRAs

Regards

Simon


Reply via email to