我正在尝试返回一个包含少量字符串的对象以及另一个字符串数组(我保证这是有原因的)。我遇到的麻烦是,当我用 SoapUI 测试我的方法时,我只得到字符串;字符串数组似乎完全丢失了。任何线索我做错了什么?我的课看起来像这样......
public class EmailListing {
public String type;
public String category;
public String[] emails;
public EmailListing() {
emails = new String[1];
}
public void setEmailList(String emaillist) {
this.emails = emaillist.split("\\|");
}
}
在使用此类的 Web 服务函数中,我执行以下操作:
public EmailListing getEmailListing(int id) {
EmailListing el = new EmailListing();
try {
// get data from the database
// ...
//
while(rs.next()) {
el.type = rs.getString("type");
el.category = rs.getString("category");
el.setEmailList(rs.getString("emaillist"));
}
} catch(...) {
...
}
return el;
}
但是,当我测试此服务时,我看到的唯一信息是类型和类别。:(
编辑:服务器端输出的打印方法和结果。
public void print() {
StringBuffer sb = new StringBuffer();
sb.append("Emails\n");
for(int i = 0; i < emails.length; i++) {
sb.append(" " + emails[i] + "\n");
}
System.out.println(sb.toString());
}
输出看起来像:
Emails
XXXXX@gmail.com
XXXXXXX@gmail.com
编辑:添加收到的肥皂消息
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<getEmailListingResponse xmlns="http://services.test.com">
<getEmailListingReturn>
<type>data</type>
<category>data</category>
</getEmailListingReturn>
</getEmailListingResponse>
</soapenv:Body>
</soapenv:Envelope>