1. 先上调用代码

             public static string PostMoths(string url, string Json)
    {
    System.Net.HttpWebRequest request;
    Stream writer;
    System.Net.HttpWebResponse response; try
    {
    string strURL = url;
    System.GC.Collect();
    System.Net.ServicePointManager.Expect100Continue = false;
    request = (System.Net.HttpWebRequest)WebRequest.Create(strURL);
    System.Net.ServicePointManager.DefaultConnectionLimit = ;
    request.ServicePoint.ConnectionLimit = ;
    request.KeepAlive = false;
    request.Timeout = * * ;
    request.Method = "POST";
    request.ProtocolVersion = HttpVersion.Version11;
    ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
    request.ContentType = "application/x-www-form-urlencoded;charset=UTF-8";
    string paraUrlCoded = Json;
    byte[] payload;
    payload = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);
    request.ContentLength = payload.Length;
    writer = request.GetRequestStream();
    writer.Write(payload, , payload.Length); response = (System.Net.HttpWebResponse)request.GetResponse();
    System.IO.Stream s;
    s = response.GetResponseStream();
    string strValue = "";
    StreamReader Reader = new StreamReader(s, Encoding.UTF8);
    strValue = Reader.ReadToEnd();
    if (request != null)
    {
    request.Abort();
    request = null;
    }
    if (response != null)
    {
    response.Close();
    response = null;
    }
    if (writer != null)
    {
    writer.Close();
    writer = null;
    }
    return strValue;
    }
    catch (Exception ex)
    {
    var obj = new
    {
    status = ,
    msg = ex.Message
    };
    request = null;
    response = null;
    writer = null;
    return ex.Message;
    }
    finally
    {
    request = null;
    response = null;
    writer = null;
    }
    }
  2. 配置文件信息 WebConfig
     <system.web>
    <!--解决本地调用成功,外网调用失败的问题-->
    <webServices>
    <protocols>
    <add name="HttpSoap"/>
    <add name="HttpPost"/>
    <add name="HttpGet"/>
    <add name="Documentation"/>
    </protocols>
    </webServices>
    <!--上传文件大小限制-->
    <httpRuntime executionTimeout="" maxRequestLength="" useFullyQualifiedRedirectUrl="false" requestValidationMode="2.0"/>
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID" validateRequest="false"/>
    </system.web>

    配置文件中红色标注是必填项。

  3. webservice接口代码
         [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    //[System.ComponentModel.ToolboxItem(false)]
    // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消注释以下行。
    [System.Web.Script.Services.ScriptService]
    public class MESService : System.Web.Services.WebService
    {
    [WebMethod(Description = "")]
    public void GetData(string strXML)
    {
    //你的结果处理
    #region 处理数据 #endregion
    Context.Response.Write(Common.JsonHelper.SerializeToJson(new { status = , msg = strXML }));
    Context.Response.End();
    }
    }
  4. 接口参数
     <?xml version="1.0" encoding="UTF-8"?>
    <LineEqui
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <LineCode>W1</LineCode>
    <EquiCode>qwe</EquiCode>
    <PlanStatus>Running</PlanStatus>
    <DataTime>2018-02-02 09:34:16</DataTime>
    <FactoryCode></FactoryCode>
    <ProductCode></ProductCode>
    <PlanCount></PlanCount>
    <Unit>PC</Unit>
    <Batch></Batch>
    <Area>山东</Area>
    <AreaCode>SD</AreaCode>
    <PlanCode></PlanCode>
    </LineEqui>
  5. 调用结果

    

HttpWebRequest,HttpWebResponse C# 代码调用webservice,参数为xml的更多相关文章

  1. c# 纯代码调用 webservice

    public static class RequestHelper { public class RequestResult { public RequestResult(bool requestRe ...

  2. C#调用WebService(服务引用-xml)

    情形:做接口调用三方WebService,WebService地址外网无法访问 方案: Step1:内网环境(可访问三方WebService地址,此处地址以http://127.0.0.1/WebSe ...

  3. Salesforce 使用Js 调用Webservice实例

    1,创建 Custom Button 在页面上 2, 创建CustomJs 代码调用Webservice <!--参数名区分大小写,对于跨层object直接在Object名后直接加参字段名即可- ...

  4. java接口调用——webservice就是一个RPC而已

    很多新手一听到接口就蒙逼,不知道接口是什么!其实接口就是RPC,通过远程访问别的程序提供的方法,然后获得该方法执行的接口,而不需要在本地执行该方法.就是本地方法调用的升级版而已,我明天会上一篇如何通过 ...

  5. Java调用WebService方法总结(5)--Axis2调用WebService

    Axis2是新一点Axis,基于新的体系结构进行了全新编写,有更强的灵活性并可扩展到新的体系结构.文中demo所使用到的软件版本:Java 1.8.0_191.Axis2 1.7.9. 1.准备 参考 ...

  6. 存储过程系列之存储过程sql数据库调用和程序代码调用

    1.存储过程,无参数的存储过程 创建无参数存储存储过程 Create Procedure DCEMREMR_TEMPLATEAs SELECT TOP 10 [FILENAME],[FILETITLE ...

  7. cxf 生成客户端代码调用服务

    cxf是另一种发布webservice的方式,与jdk提供的相比 jdk提供的是wsimport cxf 提供的是 wsdl2java- d 地址 根据http://www.cnblogs.com/f ...

  8. Java调用WebService方法总结(4)--Axis调用WebService

    Axis是比较常用的WebService框架,该项目在2006实现了最终版,后面就没有更新了.文中demo所使用到的软件版本:Java 1.8.0_191.Axis 1.4. 1.准备 参考Java调 ...

  9. Java调用WebService方法总结(3)--wsimport调用WebService

    wsimport是JDK自带的把WSDL转成Java的工具,可以很方便的生成调用WebService的代码.文中所使用到的软件版本:Java 1.8.0_191. 1.准备 参考Java调用WebSe ...

随机推荐

  1. HTTP请求过程-域名解析和TCP三次握手建立链接

    我们在浏览器输入http://www.baidu.com想要进入百度首页,但是这是个域名,没法准确定位到服务器的位置,所以需要通过域名解析,把域名解析成对应的ip地址,然后通过ip地址查找目的主机.整 ...

  2. onmouse事件

    常用的鼠标事件:onmouseenter,onmouseleave,onmouseover,onmouseout,onmouseup,onmousedown,onmousewheel,onmousem ...

  3. SpringMVC【开发Controller】详解

    前言 本文主要是讲解在Controller中的开发,主要的知识点有如下: 编码过滤器 使用注解开发 注解@RequestMapping详解 业务方法接收参数 字符串转日期 重定向和转发 返回JSON ...

  4. MySQL多数据源笔记3-分库分表理论和各种中间件

    一.使用中间件的好处 使用中间件对于主读写分离新增一个从数据库节点来说,可以不用修改代码,达到新增节点数据库而不影响到代码的修改.因为如果不用中间件,那么在代码中自己是先读写分离,如果新增节点, 你进 ...

  5. WordPress二级菜单设置

    关于二级菜单的设置,首先建立几个自己的分类目录,然后打开菜单设置界面,用鼠标自由拖动即可.注意,这里说的一级菜单和二级菜单都是分类目录,所 以我们写文章的时候应该同时选择一级菜单和二级菜单两个分类目录 ...

  6. Unity3D判断角色对敌人是否可见

    在编写敌人AI的状态机时 经常需要判断角色对敌人来说是不是可见的 如果是可见的,则做出追击或者攻击动作 如果是不可见的,则保持idle或者巡逻状态 判断是否可见 包括两个步骤 1.地方角色的视见向量和 ...

  7. Opencv读取并获取视频属性

    opencv中通过VideoCaptrue类对视频进行读取操作以及调用摄像头.常用的操作如下: 1.常用构造函数 1.VideoCapture类的构造函数:C++: VideoCapture::Vid ...

  8. 最小化安装CentOS7的网卡设置

    实验环境:CentOS 7 Minimal Installation 64bit (1511) 最小化安装CentOS 7 后,查看网卡的信息让人很意外,因为网卡的命名规则变了,网卡的名字让人很难懂. ...

  9. svn 要求commit提交必须加注释(日志) hook

    #vim /data/svn/mysvn/hook/pre-commit #!/bin/bashREPOS="$1"TXN="$2" #RES="OK ...

  10. CSS奇思妙想图形(心形、气泡三角形、切角、梯形、饼图等)

    今天看到一篇不错文章,在原来CSS3图形创建基础上扩展了很多. 这里记录总结下 心形 原理:利用 圆形 和 正方形实现 HTML: <div class="heartShaped&qu ...