I just refreshed my Axis2 trunk and looks like they commented out this
entire method processHTTPGetRequest in Axis2 trunk just this morning!
Do you want to comment out this also in trunk before we work out a fix?
In
geronimo/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/Axis2WebServiceContainer.java:
change
// deal with GET request
boolean processed = HTTPTransportUtils.processHTTPGetRequest(
msgContext,
response.getOutputStream(),
soapAction,
path,
configurationContext,
HTTPTransportReceiver.getGetRequestParameters(path));
to
boolean processed = false;
Lin
Joe Bohn wrote:
I'm now seeing a different build failure on trunk when building from a
clean local repo. This is when building the module for geronimo-axis2.
[ERROR] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Compilation failure
/Users/bohn/geronimo/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/Axis2WebServiceContainer.java:[358,50]
cannot find symbol
symbol : method
processHTTPGetRequest(org.apache.axis2.context.MessageContext,java.io.OutputStream,java.lang.String,java.lang.String,org.apache.axis2.context.ConfigurationContext,java.util.Map)
location: class org.apache.axis2.transport.http.HTTPTransportUtils