Author: veithen
Date: Mon Dec 1 10:51:34 2008
New Revision: 722176
URL: http://svn.apache.org/viewvc?rev=722176&view=rev
Log:
Removed misplaced plus sign in error message.
Modified:
webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java
Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java?rev=722176&r1=722175&r2=722176&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java
(original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/AxisService.java
Mon Dec 1 10:51:34 2008
@@ -1527,7 +1527,7 @@
try {
String wsdlntfound = "<error>"
+ "<description>Unable to generate WSDL 1.1 for this service</description>"
- + "<reason>If you wish Axis2 to automatically generate the WSDL 1.1, then please
+"
+ + "<reason>If you wish Axis2 to automatically generate the WSDL 1.1, then please
"
+ "set useOriginalwsdl as false in your services.xml</reason>";
out.write(wsdlntfound.getBytes());
if (e != null) {
|