0

我需要使用网络服务(.Net asmx),其中很少有方法接受.Net 对象作为参数。例如,一种方法具有以下签名:

public Item SaveData(string itemName, string guid, Location storeAddress, Price price)

前 2 个参数是简单的对象(字符串),因此发送到 WS 没有什么特别的。我的问题是最后两个参数。该位置在.Net上定义为:

public class Location
{
    double longitude, latitude;

    public Location()
    {
    }

    public Location(double longitude, double latitude)
    {
        this.Longitude = longitude;
        this.Latitude = latitude;
    }

    public Location(String longitude, String latitude)
    {

        this.Longitude = double.Parse(longitude);
        this.Latitude = double.Parse(latitude);
    }

    public double Longitude
    {
        get { return longitude; }
        set { longitude = value; }
    }

    public double Latitude
    {
        get { return latitude; }
        set { latitude = value; }
    }
}

和价格之类的 //不是所有的代码

public class Price {
    //private vars

    public Price(float price, float discount, string currency){
        //vars assignment 
    }

//more methods and properties
}

现在在 Java (android) 上,我使用 HttpClient 和 HttpParams 来发送发布数据。

我的问题是: 1. 如何构建 JSON 以将所需参数发送到服务器?2.有什么工具可以帮助我构建请求吗?我正在寻找知道阅读 wsdl 并构建示例请求的东西。

谢谢你。

4

1 回答 1

1

您可以通过分析Web 方法的输入XML来构建json字符串。为此,我建议您使用STORM等免费工具(或WCF Storm等功能丰富的付费工具)来翻译您的 Web 服务的WSDL。除此之外,您可以使用jsoneditoronline.orgjsonlint.com来构建和检查 json 字符串。

例如,以下是您需要传递给 web 方法的 json 字符串的结构。

{
    "itemName": "bla bla bla",
    "guid": "32sd4fgsd654fg53dfsg",
    "storeAddress": {
        "longitude": 12.02,
        "latitude": 10.32
    },
    "price": {
        "price": 100.01,
        "discount": 5.1,
        "currency": "USD"
    }
}

*您需要将虚拟值替换为真实值。

最后但同样重要的是,您可以使用一些 chrome 浏览器插件,如Postman - REST Client将 json 字符串发送到您的 Web 服务并测试响应。

于 2013-10-28T09:50:48.880 回答