--- sohom sen <[EMAIL PROTECTED]> wrote: > I am trying to create a SOAP 1.2 service with > Axis1.3 using wsdd. > > While my original wsdl had SOAP1.2 bindings, when > I used wsdl2java to generate the classes and wsdd > to deploy, it creates a SOAP1.1 service. > > How do I create a SOAP1.2 service using wsdd? > > TIA, > - Sohom. > > > > > --------------------------------- > Yahoo! Shopping > Find Great Deals on Holiday Gifts at Yahoo! > Shopping
Reading the options for wsdl2java tells me that WSDL2Java doesn't produce SOAP1.2 encoded services. Notice the -T or --typeMappingVersion argument. It takes 1.1 or 1.2 arguments. Maybe I'm miss reading it, but it looks like both produce 1.1. You might try it however by running wsdl2java -T 1.2 ....other args..... and see what you get. Wade
