如何通过Web Service传递自定义对象

时间:2011-02-06 15:19:33

标签: java android mysql web-services axis2

我用Java编写了一个Web服务,Web服务运行正常,但我无法弄清楚如何通过它传递自定义对象列表。这是我的类对象:

public class Contacts{
private int id;
private String username;
private String location;
private Date updated_at;

public void setId(int id) {
    this.id = id;
}
public int getId() {
    return id;
}
public void setUsername(String username) {
    this.username = username;
}
public String getUsername() {
    return username;
}
public void setLocation(String location) {
    this.location = location;
}
public String getLocation() {
    return location;
}
public void setUpdated_at(Date updated_at) {
    this.updated_at = updated_at;
}
public Date getUpdated_at() {
    return updated_at;
}

}

这是我的Web服务方法,用于查询数据库并返回对象列表。每次我尝试返回一个对象时,都会遇到一个axis2错误:[ERROR] org.apache.axis2.AxisFault: Mapping qname not fond for the package: wtp

无论如何,这是我的方法:

    public String getUsers()
  {     
        ResultSet mainRS = null;
        String username = "root";
        String password = "ticket";
        String tablename = "users";
        String fieldname = "*";

        String query = "SELECT " + fieldname + " FROM " + "android." + tablename + ";";
        ArrayList<Contacts> lstc = new ArrayList<Contacts>();

        /* this chnk of code can appear more or less verbatim */
        /* in your database apps (including JSPs) */
        String url = "jdbc:mysql://"my IP address":3306/android";
        String test = " ";
        try{

        Class.forName("com.mysql.jdbc.Driver").newInstance();
        Connection con = DriverManager.getConnection(url, username, password);
        Statement stmt = con.createStatement();
        ResultSet rs = stmt.executeQuery(query);
        mainRS = rs;

        while (rs.next()){
            Contacts cont = new Contacts();

            if (!(rs.getString("username") == null)){
            cont.setUsername(rs.getString("username"));
            test = rs.getString("username");
            }

            if (!(rs.getString("location") == null)){
             cont.setLocation(rs.getString("location"));
            }

            if (!(rs.getString("updated_at") == null)){
             cont.setUpdated_at(rs.getDate("updated_at"));
            }

            if (!(rs.getString("idUsers") == null)){
             cont.setId(rs.getInt("idUsers"));

            }

            lstc.add(cont);
        }

        rs.close();
        stmt.close();
        con.close();

        }catch(Exception e){
            test = e.toString();
        }
        return test;            
        }

我在Java中使用Eclipse Galileo,Axis2。任何关于如何传递这些对象的想法都将非常感激。或者,甚至可以采用更好的方式来制作低音自定义对象。我对任何想法持开放态度。

谢谢!

编辑:我编辑了要使用的方法:

Contacts lst[] = new Contacts["count rows here"];

但是,它返回null的对象。例如:

数据库中有4行,结果是:

SoapObject:[result:null,result:null,result:null,result:null]

任何想法?

2 个答案:

答案 0 :(得分:0)

我没有将Axis2用于Web服务,但我使用过XFire和CXF。使用这些框架,您必须使用XmlBeans或JAXB使用正确的注释标记域对象。 然后配置框架的servlet以使用您喜欢的Xml库(XmlBeans / JAXB)。

答案 1 :(得分:0)

编辑过的方法确实有效..我必须使用返回类型Contacts []将返回类型设为一个Contacts数组。随着:

Contacts contact[] = new Contacts[Count rows here];

按预期工作。编辑到这个^^之后问题是我如何加载对象。正确的方法是:记住它在While(ResultSet.next)

int num = 0;
Contacts cont = new Contacts();
cont.setId = "id";
cont.setLocation = "location";
//finish filling your object
contact[num] = cont;
num = num + 1;

谢谢!