//服务端发送发送 to where?if I understand you correctly, consider to use classes in System.Net, see an example here:
http://support.microsoft.com/default.aspx?scid=kb;en-us;313126

解决方案 »

  1.   

    <script language="vbscript">
      Set poster = CreateObject("Microsoft.XMLHTTP")    poster.load "此处为你的xml内容"   poster.open "POST", "请输入接口路径", False
       poster.send doc 
       rb.value=poster.responseText 
    </script>
      

  2.   

    回saucer(思归/MVP) and 
     davixiong(Minbear) 
    httpwebrequest这个类的发送,我也知道,但是本程序中对XML文档的要求很严格,如果单纯把XML文档写成一个字符串,然后发送这个字符串是不能成立的.这样的话 davixiong(Minbear) 兄的办法也是不能成立的,只能是先生成一个XMLDOCUMENT,然后直接发动这个XMLDOCUMENT,这样远程的类接口才能解释