I did try ur code and says the same... (firefox)
-----------------------------------
The connection was reset
The connection to the server was reset while the page was loading.
* The site could be temporarily unavailable or too busy. Try again
in a few
moments.
* If you are unable to load any pages, check your computer's network
connection.
* If your computer or network is protected by a firewall or proxy,
make sure
that Firefox is permitted to access the Web.
--------------------------
If i use IE says ERROR 500 (internal)
Well on the flash im using POST but anyway
I check what is sending and it is this:
http://www.centralnightclub.com/temp...%3E%3C%2Fdb%3E
That is the XML on the URL. Some times if i make it smaller, that doesnt
give me that error. but i dont thing is a good idea making it smaller, what
would be the point ?
Any suggestion??? Thanks for triying..
"Anthony Jones" <An*@yadayadayada.com> wrote in message
news:u2*************@TK2MSFTNGP10.phx.gbl...
"JimmySlam" <Ji*******@hotmail.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl... Yeah, the only problem is when i receive an XML from flash. Normally says
is a problem with the page... But If I send just variables ,(and I am
talking
about the values, the strings) works fine.
This is the ASP code that I am using with no luck...
<%
Response.ContentType="text/xml"
Dim strXML
Dim objXML
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
strXML = Request.Form
%>
Do you know where is the problem? (This is just for a XML, when I send
variables (values) is different code.
Try this:-
Dim strXML
Dim objXML
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.Load Request
The Flash thingy it probably just posting up XML in the body of the
Request.
I doubt it is using any Mime multipart encoding that is used by Form Posts
in a Web Browser.
Anthony.