一、首先要修改下配置文件。
修改\repository\conf\axis2目录下axis2.xml与axis2_client.xml配置文件。
增加<parameter name="httpContentNegotiation">true</parameter>配置
axis2.xml代码段如下:
true true optional true work/mtom 4000 true ${childfirstCL}
axis2_client.xml代码段如下:
true
WebClient w = new WebClient(); w.Headers.Add(HttpRequestHeader.Accept, "application/json"); using (StreamReader sr = new StreamReader(w.OpenRead("http://192.168.1.123:9763/services/ccjy.HTTPEndpoint/getrestnews?num=4"))) { string a =sr.ReadToEnd(); }