473,395 Members | 1,791 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

ASP Guru needed (XML-Flash+ASP)

How can I do it?

I have a bit of idea but searching on the internet is not enough
information (or I didnt find it) Any one knows how to Send an XML to ASP
form FLASH,
the ASP saves it into a XML on the server...

If i just could send the XML and from ASP say something like save XML...
Would be easy.

Thanks!!!!!!!!

Mar 15 '06 #1
9 3716
JimmySlam wrote on 15 mrt 2006 in microsoft.public.inetserver.asp.general:
... to Send an XML to ASP form FLASH, ...


You cannot "send" anything to ASP,
ASP being a platform for serverside languages.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Mar 15 '06 #2
Sorry for the understanding , it is to an ASP page.
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
JimmySlam wrote on 15 mrt 2006 in microsoft.public.inetserver.asp.general:
... to Send an XML to ASP form FLASH, ...


You cannot "send" anything to ASP,
ASP being a platform for serverside languages.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Mar 16 '06 #3
JimmySlam wrote on 16 mrt 2006 in
microsoft.public.inetserver.asp.general:
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
JimmySlam wrote on 15 mrt 2006 in
microsoft.public.inetserver.asp.general:
... to Send an XML to ASP form FLASH, ...
You cannot "send" anything to ASP,
ASP being a platform for serverside languages.


[please do not toppost on usenet]
Sorry for the understanding , it is to an ASP page.


MISunderstanding?

I repeat: You cannot "send" anything to ASP or an ASP page.

However you van send string data to a server, by posting or
"querystringing". Both are cliendside actions, not involving ASP.

However you can retrieve those stringdata with ASP:
request.form() ir request.querystring()

[I bet you knew that]

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Mar 16 '06 #4
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.


"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
JimmySlam wrote on 16 mrt 2006 in
microsoft.public.inetserver.asp.general:
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
JimmySlam wrote on 15 mrt 2006 in
microsoft.public.inetserver.asp.general:
... to Send an XML to ASP form FLASH, ...

You cannot "send" anything to ASP,
ASP being a platform for serverside languages.


[please do not toppost on usenet]
Sorry for the understanding , it is to an ASP page.


MISunderstanding?

I repeat: You cannot "send" anything to ASP or an ASP page.

However you van send string data to a server, by posting or
"querystringing". Both are cliendside actions, not involving ASP.

However you can retrieve those stringdata with ASP:
request.form() ir request.querystring()

[I bet you knew that]

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Mar 16 '06 #5

"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.
Mar 16 '06 #6
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.

Mar 16 '06 #7
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..

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.

Mar 16 '06 #8
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" <An*@yadayadayada.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
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..

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.

Mar 17 '06 #9
Nothing I am still blocked, i cant do it.

:'(:'(:'(:'(:'(:'(:'(:'(:'(:'(:'(:'(:'(:'(:'(:'(:' (

"JimmySlam" <Ji*******@hotmail.com> wrote in message
news:uH*************@TK2MSFTNGP09.phx.gbl...
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" <An*@yadayadayada.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
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..

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.


Mar 21 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: reh | last post by:
Have installed on Redhat 9.0 in the following order; Qscintilla sip PyQt When I install eric3 (python install.py), I get this error; Sorry, please install QScintilla and/or reinstall PyQt...
1
by: Steve Covert | last post by:
In converting a VB6 app using MSXML2 to a VB.NET app using System.xml, I'm looking a cross-reference. What would the equivalent .NET XML command be to 'transformNodeToObject?' Thanks!
2
by: Efy. | last post by:
Hello all! I wonder if the following subject is a Crystal issue or what? When ever I have a field that includes hebrew(-RTL language) and numbers all the spaces beetwen the words and the numbers...
0
by: Joe | last post by:
I am having a hard time with setting a property on a custom server control that i am placing in a repeater. The control inherits from DropDownList. The property is being set in the repeater using...
1
by: John Thompson | last post by:
We're sooo close. When we load the page to upload the image, all of the prms go through except the binary image data. Using SQL server with the data type set to "image". Please help! Thanks-...
0
by: Andreas Klemt | last post by:
Hello, please help. I don't now who to ask for this little problem. I have this HTML <a name=section1></a> <table> <a href="myurl1_1.thm">Link1_1</a> <a href="myurl1_2.thm">Link1_2</a> <a...
1
by: Tim::.. | last post by:
Hi... I'm having a big problem with a datagrid that obtains data from 2 different locations... Active Directory and SQL Database The data is inserted into a datatable and the sorted by a...
2
by: Brent | last post by:
Ok this is driving me nuts.. I add a com reference to the excel 11.0 library and throw this in Dim oXL As Excel.Application Dim oWB As Excel.Workbook Dim oSheet As Excel.Worksheet Dim oRng...
13
by: Giggle Girl | last post by:
My pages need to unfold gracefully even if Javascript is disabled, but I can't get this to work? Please help, Javascript Gurus!! <noscript> document.write('<span class=warning><b>Warning</b>:...
1
by: stevenjs | last post by:
Greeings, all, Flash 8 has quiz templates which are coded for multiple choice, true/false, text statement, and matching types of questions, along with hotspots and probably anoher type I am...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.