如何在delphi中使用此Web服务

时间:2015-02-15 10:25:44

标签: delphi

我有使用网络服务的链接。 http://smartcard.rmto.ir:7003/i/web_service/PKG_WEB_SERVICES.xml

我在delphi中使用此代码,但它不起作用。

procedure TForm1.Button1Click(Sender: TObject);    
 var
  d : PKG_WEB_SERVICESPortType;
begin
Memo1.Lines.Clear;
d := GetPKG_WEB_SERVICESPortType(true,'http://smartcard.rmto.ir:7003/i/web_service/PKG_WEB_SERVICES.xml',nil);
Memo1.Lines.Text := d.GET_DRIVER_BY_SHC(Edit1.Text);
end;

网络服务 用户名:tr_web_service 密码:tr_web_service123

感谢

1 个答案:

答案 0 :(得分:0)

您需要阅读有关SOAP的一些信息。见SOAP in Delphi。尝试获取WSDL文件。