-
Notifications
You must be signed in to change notification settings - Fork 615
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
operation.build
different from SOAP data sent
#517
Comments
Tracked down what was causing the symptom, though I don't know the cause. In the current master, if |
Hmm, that's interesting. Would it be possible to submit a simple testcase that reproduces this issue? |
Sorry, just got back to a place where I have computer access. I'm not too familiar with righting rspec tests. Is there a similar test you could recommend that I can try modifying? |
Absolutely. This sounds like a legitimate bug in Savon that should be fixed. I'd like to do it, but I'm already stretching myself thin between work and my own projects. I think you could add a test to Savon in the spec/operation/build.rb suite, possibly nested under |
I encountered the same bug. 5 hours I'll never see again. (Don't you love it when debugging introduces new false bugs?) Then while debugging in the httpclient clode just before
I checked out body in the debugger, and yes, there no attributes set. |
@ashrocket, the nefarious |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue is now closed due to inactivity. If you believe this needs further action, please re-open to discuss. |
When calling
puts operation.build
for a SOAP, the data sent byoperation.call
is different.The following is the result of the
build
method:This is the SOAP message sent (captured by WireShark):
The attributes in the
SrchCond
elements are missing on the actual message sent. This may be related to #509. Is it possible that it's related to the WSDL, even though the SOAP looks correct in thebuild
method?The text was updated successfully, but these errors were encountered: