Actionscript 3 :: File Sending XML To Servlet
Apr 29, 2010I have an ActionScript File sending XML to my servlet. I am only getting empty arrays on output. Anyone know what Exactly I'm doing wrong? output is:
[Code]...
I have an ActionScript File sending XML to my servlet. I am only getting empty arrays on output. Anyone know what Exactly I'm doing wrong? output is:
[Code]...
I have an ActionScript File sending XML to my servlet. I am only getting empty arrays on output.output is:
java.io.StreamCorruptedException: invalid stream header
at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:764)
at java.io.ObjectInputStream.(ObjectInputStream.java:277)
at myDungeonAccessor.myDungeonAccessorServlet.doPost(myDungeonAccessorServlet.java:82)
[code]....
The is my first attempt to build an air app, so the solution to my problem may hopefully be simple.
I need to send a byteArray to my servlet via a post request. In my original code, the byteArray is containing a png pic.
I'm running flash cs 4 demo...
When i'm running this code as an Air 1.1 file, i'm getting Error #2044: unhandled IoError:..text=Error #2032: Stream Error URL localhost
import flash.net.*;
import flash.events.*;
import flash.events.HTTPStatusEvent;
[Code].....
But if i'm running the same file as an as3 file flashplayer 10, everything is perfect, and no errors occurs...
I want to retrieve data from a Database and display inside a datagrid in a Flex web application. The way I'm thinking of doing it is :
Send the Query data from .mxml file to the .jsp page using HTTPService. In the .jsp, connect to the database and retrieve the data using select statements. send the results back to the .mxml using HTTPService.
I know what to use but I have an ambiguity. In the (.mxml) I use xxx.send() to send the data. What do I use in the (.jsp) to send it back ? I know that I should store the results in an XML in the .jsp file, but how to do that ?
I have an AS2 FLA that needs to get an external JPG file from a web-server and send it to another server encoded as base64.
The only problem is I can't use an external PHP page or something like that. It should work with a single SWF at the end.
I don't even need to show the JPG inside a MC. Just need to send it encoded to the other server.
The instructions I read for using AC_FL_RunContent, say to leave off the file extension of the swf file, e.g.: AC_FL_RunContent(..., 'movie', 'some'); So that it will embed some.swf. However, I need to serve the swf from a servlet, e.g. /blah/SomeServletName. How can I do that? I tried changing the javascript of AC_RunActiveContent.js, so it doesn't manipulate the file extension. In other words, so I could use:
AC_FL_RunContent(..., 'movie', 'some.swf'); But, it displays nothing if I use the servlet path, instead of a path that looks like a file name, e.g.: AC_FL_RunContent(..., 'movie', '/blah/SomeServletName');
I need to send my flash file some values to .as file.
Example: I have 2 buttons.
Actionscript Code:
Button1.onRelease = function(){myXML.load("something1");};
Button2.onRelease = function(){myXML.load("something3");};
And if I press the button then AS3 get myxml.load value
Actionscript Code:
private var xmlURL:String = HERE';
How can I send a .png file using python cgi to a flex application?
View 1 RepliesI am using the follwing actionscript to send 2 vars to a php file:
Code:
getURL ("file.php?name1=" + name1+ "&name2=" +name2, "_self", "POST");
.but when i test it local. I see the following:
"file.php?name1=david&name2=posh?M%5FloveMatch=%5B type+Function%5D&calculateScore=%5Btype+Function%5 D&your%5Fname%5Fstatic=dfjkawef&your%5Floveone%5Fs tatic=oiaSDV&score=78&scoretext=78%25&name1=david& name2=posh"
and all i wanna get is:
"name1=david&name2=posh"
can i send some variables that are within a text file into the actionscript; i mean, in 1.txt there will be a[1]=30; can i use a function to read this variable and then use it in the actionscript like x=a[1]+2 and x would be 32?
View 1 Replieshow to send variables from one swf to anotherAssuming they are on different domains,
View 2 RepliesI have a job application form where i am taking users basic info as name,email, phone no along with this i am asking him to upload his CV(a doc /pdf file)
How can i post all data on one submit. I am using PHP at backend.
I can send data and upload file seperately.Isit possible to upload file and submit data at a time.
Can we send additional variables with File Reference object.
I'm running it in actionscript 1 and 2 since 3 wouldn't work when getting data from external media. I'm trying to find out how to post data to a PHP file and getting from that file I'm trying to make the flash for something that works like a game but differently. Since I just found out how to make the HTML stuff show up but a lot of times, some of my text will not appear so I don't know what's going on.
how to send and get data both at the same time from a sample file?
The sample file is example.php
It has to sent information like ID and NAME and it has to get information like Description and userID
I'm running it in actionscript 1 and 2 since 3 wouldn't work when getting data from external media. I'm trying to find out how to post data to a PHP file and getting from that file I'm trying to make the flash for something that works like a game but differently. Since I just found out how to make the HTML stuff show up but a lot of times, some of my text will not appear so I don't know what's going on.
how to send and get data both at the same time from a sample file?
The sample file is example.php
It has to sent information like ID and NAME and it has to get information like Description and userID
I have a flash file that contains an input text field and a submit button symbol. I need to capture what the user puts into this text field and send it to an asp page that will execute a search script. I used the source from this tutorial as my base: [URL]I can attach an FLA if needed, but it should be pretty simple. Here is the setup:Inside a movie clip named "form", I have a text field, set to input text, with "search" in the var property field.On the search button, I have the following action:
Code:
on (release) {
form.loadVariables("searchtest.asp", "POST");
}
In the ASP page, I am trying to capture the value of the variable "search" by using:
Code:
Request.Form("search")
Am I on the right track here? Should I use "GET" and try to pull the value out of the query string?
how to call (or) pass access to a Java servlet using Flash [i.e., ActionScript 3.0 code]?
View 1 RepliesI have developed a Flex application. I have also developed a Java servlet program for an Access database using Tomcat. How can I use that servlet backend for my Flex application using HTTPService ?
View 1 Repliessyntax for calling a servlet with parameters in query string to load an XML file into flash?
Current code (Not Working):
xml.load("<project_name>/<servlet_name>?parametr1="+variable1+"¶metr2=" +variable2+"¶metr3="+variable3+"",)
What I need to do is pass a variable into flash.
I've had success doing this by just adding the variable to the end of the embedded SWF URL (.../mymovie.swf?variable=value), but what I need is the ability to send the swf variables when certain links are clicked, without the page refreshing.
I'm guessing this has to be done somehow with a javascript onClick function.
I've looked into using externalInterface, but it seems overly complicated for this application.
I have a flash file that is located on my website and I have a php file wich gets requests from flash file every 5 minutes. I want to be shure that flash file wich is sending request is located on my website and not somewhere else. How can I do it. Is there anything in PHPs global variables?
View 2 RepliesHow do i send a text file between air applications using local connection?Sender AIR
private var conn:LocalConnection;
public function init():void
{
[code]......
Running my Flash app from localhost (in debug) I can connect/contact the socket server just fine. Note: It doesn't seem as though the server detects any 843 connection (e.g. the policy file port) this way. However, when I move the app to the server itself and run it from there (i.e. from the website), it will send the policy file, get a disconnect (as it should), and then try to execute the regular port stuff but doesn't read anything from Flash. It seems like my Flash app isn't writing to the port as it should, or something else is going wrong. I did also notice that Flash seems to be trying to send the policy-file-request twice.My process right now is like this:
1) Flash tries to connect to port 843. The server responds to its <policy-file-request/> with the policy file.
2) Flash reads it, disconnects from 843
3) Server gets graceful disconnect, then gets another connection on 843.
4) Just after that, the server gets a connection on 2188, but reads another <policy-file-request/>, so sends the policy file again.
5) At this point, Flash SHOULD simply write the string "Test" to the socket (that's in my connect handler). However, my server doesn't seem to read anything on the socket after the second <policy-file-request/>.[code]
I am using loadVars with the send method to send my contact info to a php file. This works fine but when I press the submit button the browser goes to the email.php file. How do i prevent it from opening that file in the browser window?
Heres the [AS]
lv = new LoadVars();
lv.name = name;
lv.company = company;
lv.phone = phone;
lv.email = email;
lv.message = message;
lv.send("email.php", "POST");
}
[/AS]
Is there any way to connect Java servlet to FMS?I would like to send comand from servlet via HTTP to FMS?(Something like communication to Flash media server using administration API)The best way for me would be connecting (writing) to SharedObjects, but I would be happy with any connection at all.(I read some about ColdFusion, but there would be too much modification on my servlet.)
View 4 Repliesread a local shared object with a servlet even if there is no flash present on a page? I want to set a local shared object like a cookie, and then access it again from a page that doesn't have a flash movie.If I can't do this, is it standard to have the initial flash movie call an external javascript to set a traditional cookie that can later be read?
View 1 RepliesI have a problem using Flex with BlazeDS on a Tomcat 5.5 through a Proxy (Apache). I already searched for it but didn't find answers which solved my problem. I hope you guys can help me out. Our scenario is the following: Flex-App using BlazeDS to communicate with our Dataservice on a Tomcat 5.5.The Webapp is balze enabled and the services config contains channel definitions like the following:
<channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
<endpoint url="http://xxx.xxx.xxx.xxx:8180/myDataService/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint">
</channel-definition>
[Code]...
This is my method in actionscript
var urlVars : URLVariables = new URLVariables();
urlVars.myname = byteArr;
var urlReq : URLRequest = new URLRequest('MyServlet');
[Code].....
How do I recieve the byte array on servlet ?
Also the byteArr above comes from java side,
byte[] byteArr = aMethodWhichReturnsaPDFByteArray();
HttpServletResponse response = FlexContext.getHttpResponse();
ServletOutputStream os = null;
[Code].....
I have a scheduling application that allows users to save any changes. When the user clicks the save button, Flex sends all the information to a coldfusion script which picks the information apart and sends saves it to the database. That all works well and good, but I would like to be able to display some sort of text to the user saying something like "Your file was successfully saved" or "There has been an error.
[Code]...
I was just wondering if it is important to include POST as a method of sending loadVars to the php file. i was using POST before and i still ecountered some problems of receiving empty mails. Since i found an example which do not use POST or REQUEST method i dont have anymore prob. I just wanted to get another opinion about that as i wanna start using server side script with flash and i know that ill be using the POST method.
View 2 RepliesI am new to Flex. I am just wondering how to manage session and cookies for logging in, logging off in Flex? I am using Flex HttpService and Java servlet.
View 1 Replies