我已设法使用xmlhttprequest.
通过帖子发送xml我还设法通过aspx页面使用
Dim reader As System.IO.StreamReader = New System.IO.StreamReader(Page.Request.InputStream)
Dim xmlData As String = ""
xmlData = reader.ReadToEnd()
我现在正试图从php页面读取xml。 (我想阅读整个xml,标题和数据)
使用$_POST
我什么都没得到
使用file_get_contents("php://input")
我获取xml的数据,没有标题。
答案 0 :(得分:0)
file_get_contents完成我想要的工作。 虽然mozilla显示了纯xml数据file_get_contents