users@glassfish.java.net

Re: PHP programm unable to consume Web Service on Glassfish

From: <forums_at_java.net>
Date: Mon, 26 Nov 2012 02:18:30 -0600 (CST)

The answer is simple: The aforementioned php program used to use SOAP 1.1. to
send messages. The JAX-WS interface expected 1.2. The annotation @BindingType
I used to tell the interface to expect SOAP.1.1 was written falsely like
@BindingType(SOAPBinding.SOAP11HTTP_BINDING) though the compiler did not
complain. But it supposed to be
@BindingType(value*=*SOAPBinding.SOAP11HTTP_BINDING). That's it.

--
[Message sent by forum member 'vandunen']
View Post: http://forums.java.net/node/892624