我想从另一台服务器上的页面后面的代码中调用远程 Web 方法(asmx)。第二个要求是能够将一个字符串和一个 pdf 文件传递给 webmethod 并在 webmethod 中使用它们。
我所拥有的只是Testing.asmx 中的这个简单的webmethod。
[WebMethod]
public string TestPdf()
{
return "Hello World";
}
谁能告诉我如何调用这个网络方法(网址:http://mydomain.com/Testing.asmx/TestPdf )?
我想将一个pdf文件和一个字符串参数传递给webmethod,并能够在返回“hello world”之前检索它。