This problem is also reported at 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930922. I checked 
JIRA and it seems that the fix was done in late April, so I assume it is the 
code released with JBossAS 4.0.4 GA. However, I ran on this problem while 
defining a web service through annotations:
@WebService
  | @SOAPBinding(style = SOAPBinding.Style.RPC)
  | public class MyWebService {
  |     @WebMethod
  |     public MyClass[] someMethod() { ... }
  | }
  | 
  | public class MyClass {
  |     private String str;
  |     public String getStr() { return str; }
  |     public void setStr(String str) { this.str = str; }
  | }
If I populate the elements of the returned array with non UTF-8 characters the 
response parsing fails. The specific character for which I'm getting the error 
is Ç, or &_ccedil; (without the underline). If the response XML had 
encoding="ISO-8859-1" everything would work great, is there any way to do this? 
The exception stack trace is the same of the above mentioned topic, so I will 
not post it again. Thanks

Henrique

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953710#3953710

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953710

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to