Author: jlaskowski
Date: Thu May 7 23:47:33 2009
New Revision: 772818
URL: http://svn.apache.org/viewvc?rev=772818&view=rev
Log:
It looks @HandlerChain was superfluous and caused test error (it doesn't mean
it shouldn't be there - it just works now without it)
Modified:
openejb/trunk/openejb3/examples/simple-webservice/src/main/java/org/superbiz/calculator/CalculatorImpl.java
Modified:
openejb/trunk/openejb3/examples/simple-webservice/src/main/java/org/superbiz/calculator/CalculatorImpl.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/examples/simple-webservice/src/main/java/org/superbiz/calculator/CalculatorImpl.java?rev=772818&r1=772817&r2=772818&view=diff
==============================================================================
---
openejb/trunk/openejb3/examples/simple-webservice/src/main/java/org/superbiz/calculator/CalculatorImpl.java
(original)
+++
openejb/trunk/openejb3/examples/simple-webservice/src/main/java/org/superbiz/calculator/CalculatorImpl.java
Thu May 7 23:47:33 2009
@@ -36,7 +36,6 @@
serviceName = "CalculatorWsService",
targetNamespace = "http://superbiz.org/wsdl",
endpointInterface = "org.superbiz.calculator.CalculatorWs")
-...@handlerchain(file = "handler.xml")
public class CalculatorImpl implements CalculatorWs, CalculatorLocal {
public int sum(int add1, int add2) {
@@ -72,4 +71,4 @@
else return n * factorial(n-1);
}
}
-//END SNIPPET: code
\ No newline at end of file
+//END SNIPPET: code