On Monday 14 March 2011 10:02:29 AM Stefan wrote: > Hello, > I use the tool wsdl2java to create a java bean. The WSDL file what I used > looks like this: > http://cxf.547215.n5.nabble.com/file/n3556334/notificationConsumerService.w > sdl notificationConsumerService.wsdl > In the option , I cann't understand the meaning of "....?wsdl=1". > Could you please give me some knowledges if you know about this, thanks~~ > Stefan
With java first, this will usually occurr when you specify different targetNamespaces (or don't specify at all) in the @WebService annotations for the SEI interface and the service impl. The easy fix is to make sure the @WebService annotation on both specify the exact same targetNamespace. -- Daniel Kulp [email protected] http://dankulp.com/blog Talend - http://www.talend.com
