如何使用List param创建WCF soap服务以从android中使用

时间:2012-10-02 05:13:23

标签: android wcf android-ksoap2

我需要传递List<string> or List<object>来从Android使用WCF soap服务。我尝试了很多方法。

当我使用下面的代码时:

  

公共类MarshalArray实现Marshal {

@Override
public Object readInstance(XmlPullParser parser, String namespace, String name,
        PropertyInfo expected) throws IOException, XmlPullParserException {

    return GenericType.getObject(parser.nextText());
}

@Override
public void register(SoapSerializationEnvelope envelope) {
    envelope.addMapping("http://schemas.datacontract.org/2004/07/WcfService1", "GenericType", GenericType.class, this);
}

@Override
public void writeInstance(XmlSerializer writer, Object obj)
        throws IOException {
    GenericType sp =  (GenericType) obj;

    writer.startTag("http://schemas.datacontract.org/2004/07/WcfService1", "mydata");       
    for(String str : sp.mydata){
        writer.startTag("http://schemas.datacontract.org/2004/07/WcfService1", "string");
        writer.text(str);
        writer.endTag("http://schemas.datacontract.org/2004/07/WcfService1", "string");

    }       
    writer.endTag("http://schemas.datacontract.org/2004/07/WcfService1", "mydata"); 

    }}

使用以下wcf服务:

[ServiceContract]
[ServiceKnownType(typeof(WcfService1.GenericType<string>))]
public interface IService1
{

    [OperationContract]
    [ServiceKnownType(typeof(WcfService1.GenericType<string>))]
    string GetDataList(GenericType<string> objs);
} 

 [DataContract(Name = "GenericType")]
public class GenericType<T>
{
    List<T> data;

    [DataMember]
    public List<T> mydata
    {
        get { return data; }
        set { data = value; }
    }
}

Wcf服务返回肥皂错误错误如: 内部服务错误..

然后我尝试了另一种方式:

public class Members extends Vector<String> implements KvmSerializable {

private static final long serialVersionUID = -1166006770093411055L;

@Override
public Object getProperty(int index) {
    return this.get(index);
}

@Override
public int getPropertyCount() {
    return this.size();
}

@Override
public void getPropertyInfo(int arg0, Hashtable arg1, PropertyInfo param) {
    param.name = "String";
    param.type = PropertyInfo.STRING_CLASS;
}

@Override
public void setProperty(int arg0, Object obj) {
    this.add(obj.toString());
}

}

使用以下wcf服务:

[ServiceContract]

公共接口IService1 {

[OperationContract]

string GetDataList(List<string> objs);

}

我收到了来自wcf服务的肥皂错误错误:

Deserialization fail...

每次我从wcf服务收到错误时......我认为我的wcf服务出错了。 如果有人知道答案,请回答我的问题。

非常感谢...

1 个答案:

答案 0 :(得分:0)

最后我得到了答案......

我决定使用MarshalArray类,而不是成员(KvmSerializable)。

使用MarshalArray时, 问题出在android中的MarshalArray类..

这是发生错误的旧代码:

 for(String str : sp.mydata){
    writer.startTag("http://schemas.datacontract.org/2004/07/WcfService1", "string");
    writer.text(str);
    writer.endTag("http://schemas.datacontract.org/2004/07/WcfService1", "string");

}       

我把它改成了如下:

for(String str:gt.mydata){
        writer.startTag("http://schemas.microsoft.com/2003/10/Serialization/Arrays", "string");
        writer.text(str);
        writer.endTag("http://schemas.microsoft.com/2003/10/Serialization/Arrays", "string");               
    }

然后它成功运作......

感谢您的帮助,stepoverflow。我必须自己找出答案.... !!