I am exposing a service using XFire and JSR-181 annotations. Everything works fine but I got a requirement to use BARE parameter style. I use the following annotation: @SOAPBinding(parameterStyle= SOAPBinding.ParameterStyle.BARE)
Before switching to BARE, I could test my service using the XFire Proxy: Service serviceModel = new ObjectServiceFactory().create(YourService.class); YourService service = (YourService) new XFireProxyFactory().create(serviceModel, "http://your/remote/url"); Now I need to tweak the request to use BARE instead of the default WRAPPER parameter style. ObjectServiceFactory contains setter to change the USE and STYLE, but I can't find how to change the parameter style. Is is possible with the proxy? Thanks, Aymeric
