| JimmySlam 2006-03-17, 7:50 am |
| Ok i just realised that if I send the XML (the big and standard one) it says
that error I said before anyway. So Im gonna try to start with a v small
XML.
So I write ur code on ASP and this error appears...
Response object error 'ASP 0185 : 80020003'
Missing Default Property
/temp/uploadXML.asp, line 0
A default property was not found for the object
So i changed a few things after looking on google:
Dim strXML
Dim objXML
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.LoadXML Request.QueryString("database1")
response.write(objXML.xml) 'I put ".xml" here because it said error without.
objXML.save("haha.xml")
Now i have to give writing permissions and test. After that I have to test
it with the proper DB.
Cheers, i will let you know how things are going, you can learn from this
bloody thing

Jimmy
"Anthony Jones" <Ant@yadayadayada.com> wrote in message
news:%23iC3zrUSGHA.2536@tk2msftngp13.phx.gbl...
>
>
>
>
> Well I guess this should work:-
>
> Dim strXML
> Dim objXML
>
> Set objXML = Server.CreateObject("Microsoft.XMLDOM")
> objXML.LoadXML Request.QueryString("database1")
>
>
> But the query string isn't where you really want to be putting the data,
> it's not really a POST more a GET with a very large query string.
>
> Is there no mechanism in Flash to perform a proper post where the XML is
> sent up as the entity body?
>
> Anthony.
>
>
>
|