The problem was actually discovered once I got the log4j to show the following 
message:       [java] 23:30:38,015 WARN  [JSR109ClientMetaDataBuilder] Cannot 
obtain the SEI mapping for: {http://gov.osera.bpel}Finaince_LoBService_1

This led me to figure out how to use all of the @Webservice @Webmethod and 
@Webparam annotations to match up the wsdl names with the generated java code 
names as follows:

@WebService(name = "ContractorInvoice_ContractorInvoice", targetNamespace = 
"http://gov.osera.bpel";, serviceName = "Finaince_LoBService")
@SOAPBinding(style = SOAPBinding.Style.RPC)
public class ContractorInvoiceService
{
   @WebMethod(operationName="Invoices")
   public void invoices(
          @WebParam(name="Invoices") InvoiceType[] invoices,
          @WebParam(name="correlationId") java.lang.String correlationId) 
throws  java.rmi.RemoteException
...


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3979867#3979867

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3979867
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to