update: I was able to work around the problem by using a different object with 
my webservice -- CarrierStruct instead of CarrierEntityValue.  

CarrierEntityValue was an XDoclet-generated Value Object based on an Entity 
Bean.  CarrierStruct is a POJO, and looks like this:

public class CarrierStruct {
  |     
  |     private Integer carrier_id;
  |     private String carrier_name;
  | 
  |  ... no constructor ...
  |  ... getters/setters ...
  | 
  | }

My pre-wrapped endpoint now looks like this (CarrierProcess.java) :
public interface CarrierProcess extends Remote {
  |     String getCarrierName(Integer carrier_id) throws RemoteException;
  |     CarrierStruct getCarrierValue(Integer carrier_id) throws 
RemoteException;
  |     String setCarrierValue(CarrierStruct carrierValue) throws 
RemoteException;
  | }
  | 

Hopefully this helps out whoever's looking after this issue (bug??).

Thanks,
A

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

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


-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to