- 1、本文档共4页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
客户端delphi使用XML与中间层C#.net通信的例子,客户端用idhttp的post发送请求
客户端代码:
unit?Unit1;
interface
uses
??Windows,?Messages,?SysUtils,?Variants,?Classes,?Graphics,?Controls,?Forms,
??Dialogs,?IdBaseComponent,?IdComponent,?IdTCPConnection,?IdTCPClient,
??IdHTTP,?StdCtrls;
type
??TForm1?=?class(TForm)
????IdHTTP1:?TIdHTTP;
????Button1:?TButton;
????Button2:?TButton;
????Memo1:?TMemo;
????procedure?Button2Click(Sender:?TObject);
??private
????{?Private?declarations?}
??public
????{?Public?declarations?}
??end;
var
??Form1:?TForm1;
implementation
{$R?*.dfm}
procedure?TForm1.Button2Click(Sender:?TObject);
var
??respsm:TStringStream;
??AList:TStrings;
??uri:string;
begin
??uri:=http://localhost:4983/WebSite3/Default.aspx;//这个地址换成自己的响应地址
??AList:=TStringList.Create;
??{中文乱码问题解决方法:发送过去之前先转码UTF8Encode,接收的时候再解码UTF8Decode}
??AList.Add(UTF8Encode(Memo1.Text));
??respsm:=TStringStream.Create();
??//IdHTTP1.Get(http://localhost:4983/WebSite3/Default.aspx?id=3,sm);
??IdHTTP1.Request.ContentType:=application/x-www-form-urlencoded;
??try
????IdHTTP1.Post(uri,AList,respsm);
??finally
????ShowMessage(UTF8Decode(respsm.DataString));//respsm.DataString为中间层返回的数据
??end;
??respsm.Free;
??AList.Free;
end;
end.
客户端memo1.Text的内容为(在设计界面直接编辑memo1.lines,输入以下内容):
?xml?version=1.0?encoding=utf-8??
erp
head
/head
body
client?job=RoleInfo_New
main?job=New?ID=?Name=测试角色3?/
/client
/body
/erp
中间层代码:(Default.aspx.cs)
using?System;
using?System.Data;
using?System.Configuration;
using?System.Web;
using?System.Web.Security;
using?System.Web.UI;
using?System.Web.UI.WebControls;
using?System.Web.UI.WebControls.WebParts;
using?System.Web.UI.HtmlControls;
//添加以下命名空间
using?System.Xml;
using?System.Data.Sql;
using?System.Data.SqlClient;
using?System.IO;
using?System.Text;
public?partial?class?_Default?:?System.Web.UI.Page?
{
????protected?void?Page_Load(object?sender,?EventArgs?e)
????{
????????Stream?sm?=?Request.InputStream;
????????sm.Position?=?0;
????????byte[]?buff?=?new?byte[sm.Length];
????????//char[]?buff?=?new?char[sm.L
文档评论(0)