Author: veithen
Date: Tue Feb 3 11:55:11 2009
New Revision: 740281
URL: http://svn.apache.org/viewvc?rev=740281&view=rev
Log:
Fixed typo in error message.
Modified:
webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/ListingAgent.java
Modified:
webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/ListingAgent.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/ListingAgent.java?rev=740281&r1=740280&r2=740281&view=diff
==============================================================================
---
webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/ListingAgent.java
(original)
+++
webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/ListingAgent.java
Tue Feb 3 11:55:11 2009
@@ -379,7 +379,7 @@
OutputStream out = res.getOutputStream();
res.setContentType("text/html");
String outStr = "<b>No effective policy for "
- + serviceName + " servcie</b>";
+ + serviceName + " service</b>";
out.write(outStr.getBytes());
}
}