-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bugfix/header values composing #381
Bugfix/header values composing #381
Conversation
@@ -38,14 +38,18 @@ object Wsdl11Soap12Test extends TestBase { | |||
|val service = new implicitheader.UserBindings with scalaxb.SoapClients with scalaxb.HttpClients { | |||
| override def httpClient = new HttpClient { | |||
| override def request(in: String, address: java.net.URI, headers: Map[String, String]): String = { | |||
| println("!!!" + in) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
!!! :)
Thanks for following up with a quick fix! |
I don't know how Apache CXF encodes implicit headers, but if it's supported, it might be worth running the server and hitting it with scalaxb like here: |
I've tried to force apache CXF to generate wsdl with implicit headers and unfortunately I couldn't. Google says nothing about using implicit headers by CXF, so I guess it's impossible to achieve. |
I'm going to restart Travis to see what happens. I think I've seen it fail like that before. |
Ref #366
Soap envelope should be:
not:
for tested WSDLs (
implicit_header_example.wsdl
,explicit_header_example.wsdl
andimplicit_header_multiple_part_header.wsdl
)