Hi folks,
does anyone know how to use the WebRowSet class as a parameter (either input or 
output) in a Webservice?  :banghead:  
let's say something like this:

  | public interface TestWRS extends Remote {
  |     WebRowSet getRowSet() throws RemoteException;
  | }
  |  
  | public class TestWRSEndpoint implements TestWRS {
  |     public WebRowSet getRowSet() throws RemoteException {
  |         WebRowSet wrs = new WebRowSetImpl();
  |         // ...more code here to read data into the rowset...
  |         return wrs;
  |     }
  | }
  | 
i saw in the documentation of JWSDP that it should work automatically when 
using wscompile, but it throws an error saying:
error: Collection types are not supported in literal mode - Type: 
"java.util.Map"
Thanks!  :beerchug: 

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

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


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to