Author: bfitzpat
Date: 2010-05-12 11:34:42 -0400 (Wed, 12 May 2010)
New Revision: 22040
Modified:
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java
Log:
Fix for [JBIDE-6275] [tester] REST POST/PUT requests are not sending SOAP body
Modified:
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java
===================================================================
---
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java 2010-05-12
14:35:33 UTC (rev 22039)
+++
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java 2010-05-12
15:34:42 UTC (rev 22040)
@@ -613,7 +613,7 @@
*/
private IStatus handleRSTest(final IProgressMonitor monitor, String address, String
method, String body, String parms, String headersStr) {
- if (!method.equalsIgnoreCase(GET))
+ if (method.equalsIgnoreCase(GET))
body = EMPTY_STRING;
// if no actual text in the request body, set to null
Show replies by date