Tagged Questions
The urlrequest tag has no wiki summary.
7
votes
2answers
10k views
What is the most robust way to force a UIView to redraw?
I have a UITableView with a list of items. Selecting an item pushes a viewController that then proceeds to do the following. from method viewDidLoad I fire off a URLRequest for data that is required ...
6
votes
8answers
22k views
Flex 3 - how to support HTTP Authentication URLRequest?
I have a Flex file upload script that uses URLRequest to upload files to a server. I want to add support for http authentication (password protected directories on the server), but I don't know how to ...
4
votes
3answers
3k views
How do I prevent Flash's URLRequest from escaping the url?
I load some XML from a servlet from my Flex application like this:
_loader = new URLLoader();
_loader.load(new URLRequest(_servletURL+"?do=load&id="+_id));
As you can imagine _servletURL is ...
3
votes
2answers
586 views
Actionscript 3: Memory Leak in Server Polling Presentation App
I'm building a remote presentation tool in AS3. In a nutshell, one user (the presenter) has access to a "table of contents" HTML page with links for each slide in the presentation, and an arbitrary ...
3
votes
2answers
516 views
URLRequest with DELETE method
Need to find a way to send a delete method from Flash Player (Flex). Currently it's not done by default (except for from AIR), but I am sure someone has augmented the URLRequestHeader to get it to ...
3
votes
1answer
1k views
UIWebView is not loading a page
I got a UITabBarController and one of the bar items is a Navigation Controller with some buttons on it.
One of the buttons opens up a urlRequest and load it in a UIWebView.
NSURL * url = [NSURL ...
3
votes
3answers
5k views
Unexpected Flash Security Exception When Using URLLoader
What I am trying to accomplish is to upload some binary data, specifically a ByteArray representing a PNG image, to a server using the URLLoader class in conjunction with URLRequest.
When I set the ...
2
votes
3answers
5k views
How to bypass “Adobe Flash Player has stopped a potentially unsafe operation.”?
I have created an advent calendar for the blog of a friend, and to fetch/get/download the gifts of each day, the flash animation requests a file located at "http://domain.com/folder/etcetc/gifts.php".
...
2
votes
1answer
519 views
What is the difference between URLLoader and URLRequest in Actionscript?
What is the difference between URLLoader and URLRequest in Actionscript?
2
votes
2answers
3k views
Combining URLRequest, URLLoader and Complete Event Listener In Actionscript 3.0?
when handling data, i always have to write the following:
var dataSourceRequest:URLRequest = new URLRequest("/path/file.xml");
var dataSourceLoader:URLLoader = new URLLoader(dataSourceRequest);
...
2
votes
1answer
4k views
How do I fix this cross-domain ActionScript 3 error?
I'm going to be as specific and verbose as possible and include some of the code I'm using. I already did a search and found this question, which seems similar; however the author there was using ...
2
votes
2answers
2k views
Can a SWF (using URLLoader) access HTTPS webservice?
I have a fla (using ActionScript 3.0) I am compiling in Flash. I am using URLRequest and URLLoader to access a http webservice.
var loader:URLLoader = new URLLoader();
var request:URLRequest = new ...
2
votes
3answers
4k views
When POSTing a form with URLRequest, how to include cookies from browser session?
(With reference to this answer:)
When I POST with a URLRequest, does it automatically include cookies from the browser session in which Flash is hosted? If not, how can I make it include them, or if ...
1
vote
1answer
25 views
What object (key-value) can I use for actionscript's URLRequest/Loader classes?
I am trying to get my Actionscript program to turn in a key-value (more specifically: a key, value1, value2) object into a server. I am doing the html request properly, but I'm not sure what kind of ...
1
vote
2answers
55 views
Flex: post without showing
var url:String = "http://www.[yourDomain].com/application.jsp";
var request:URLRequest = new URLRequest(url);
var variables:URLVariables = new URLVariables();
variables.exampleSessionId = new ...
1
vote
1answer
253 views
How can I set rel=noreferrer in a URLRequest in Flash
I'm using a URLRequest to get a resource. I need to clear the Referrer information in the request. Is there a way to do this?
Snippet:
sound = new Sound();
var req:URLRequest = new ...
1
vote
1answer
684 views
How to cache image with as3?
This is my first post here in StackOverFlow, and I bring you a problem that is hauting my development team.
We are in a project, using stand alone FlashPlayer as a news displayer.
The news feed is a ...
1
vote
1answer
1k views
Adobe AIR: How to play local mp3 file?
I'm testing Adobe AIR with flex, and I wanted to play a mp3 via an open file dialog, I did that :
import flash.filesystem.*;
import flash.events.Event;
import flash.media.*;
import ...
1
vote
2answers
2k views
SSL Client Side Certificate authentication in Adobe AIR
I'm trying to use a RESTful web service in Adobe AIR. The service uses client side certificates for authentication, thus I need to set the cert and private key used by AIR/Actionscript's URLRequest ...
1
vote
2answers
2k views
How can I prompt a user to open or save a PDF file returned by a .aspx file?
I have a Flex application that calls a .aspx page on our webserver, which builds a PDF or Excel File. Right now, I am using navigateToURL() to call the file, and this works fine when the output file ...
1
vote
5answers
6k views
How to play a sound in Actionscript 3 that is not in the same directory as the SWF?
I have a project with a bunch of external sounds to a SWF. I want to play them, but any time I attempt load a new URL into the sound object it fails with either "Error #2068: Invalid Sound" or raises ...
0
votes
1answer
22 views
iOS - Is it possible to send in continuos connection request to a server?
I have a app code that sends in request only when the app opens. However I need to have a continuos access to the file in the server which will be updated every second.
-(void)viewDidLoad
{
...
0
votes
1answer
41 views
xcode 4 stream video check
i am unable to solve this problem and i can´t find any solution elsewhere. I am playing the streaming video from url. But want to check if the url contains any video. Does anyone know how? To be clear ...
0
votes
1answer
50 views
Access Stage object (textbox) within a Custom Class
I'm currently trying to add the resulting XML (xmlResult) to a textbox that is on the stage. I did try using MovieClip(root).[instancename].text = ..... however it didn't work - null object reference? ...
0
votes
2answers
51 views
Is it possible to use a var in a URLRequest
During development I have to test using several different hosts. It is a pain to have to change the IP address everywhere I use navigateToURL or in an mx:HTTPService.
I would like to set a var with ...
0
votes
2answers
41 views
Post values to a URL using Flash
I'm dipping my toes into Flash development and wondered how to post some variables to a URL.
Let's say the user has played a Flash game, packaged as an EXE or SWF embedded in HTML stored on the user's ...
0
votes
1answer
34 views
Converting an Actionscript 2 Script to an AS3 Equivalent
I have the following code to open a document through a separate window (through a button action) in AS2:
mapSym_btn.onRelease = function() {
getURL ("https://myPortal.html", "_blank")}
Can anyone ...
0
votes
2answers
69 views
TinyURL popup opening instead a tab
I gotta an uncommon problem over here.
I have to call the tinnyURL service to shorten my URL, it is working fine. After that, I have to call another tab, but for some reason, it calls a pop-up.
I'm ...
0
votes
1answer
159 views
Actionscript 3, URLRequest/URLLoader problem. Server not receiving data
I am trying to send a server "schooltraq.com/api/" variables for a request.
My Code:
package
{
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.events.*;
...
0
votes
1answer
390 views
Can't set “Content-Type” for URLRequest in as3
I'm trying to set Content-Type for URLRequest headers to "application/json".
Here is the code:
var request:URLRequest = new URLRequest("http://localhost");
request.contentType = "application/json; ...
0
votes
1answer
127 views
How many types of URLRequest is possible in iPhone for retrieve the data from WebServices?
In my app i am retrieve data from web services and show in uitableview it is fine but problem is that in mu tableview suppose 10 row (that is city name and latitude longitude of all city that are in ...
0
votes
3answers
220 views
Facebook App using Flash AS3 URLRequest sporatically returns IOErrorEvent s
I've got a Flash-based Facebook App running in an iFrame that makes regular URLRequest .load() calls to the server in order to set and get information about user game play.
For most users, this works ...
0
votes
0answers
135 views
Trouble reproducing Flex Socket request with UrlRequest
I have managed to use Flex's Socket class to successfully upload in-memory data to a limited implementation of an html server as a file in order to save settings as an xml file on the server.
I would ...
0
votes
0answers
616 views
ASIHTTPRequest multiple downloads
I am downloading multiple files using ASIHTTPRequest using the following code.
ASIHTTPRequest *request;
ASINetworkQueue *networkQueue = [[ASINetworkQueue alloc] init];
request ...
0
votes
3answers
229 views
Flex: browser popup rather than Alert.show() type popup?
Im trying to create a browser popup window with some text, rather than using the Alert.show() or Flash Player level popups.
I have been looking around, and tried some stuff with URI Data Scheme, but ...
0
votes
1answer
178 views
URLRequestDefaults.setLoginCredentialsForHost not setting the user & pwd in authorization header
I want to access html files which are protected by basic authentication.
I am trying to load this html page using htmlloader and sending the request by urlRequest.
I am using URLRequestDefaults class ...
0
votes
3answers
186 views
MVC 2 how to go to url without redirecting?
Is there a way to go to a url without redirecting to it? Basically I want to call a url from within my application in the background so it can logout a reliant party.
Appreciate the help.
0
votes
3answers
43 views
Is there a way to send updates from PHP to flash in the middle of a request?
I have a PHP process that does a bunch of stuff and I want to send feedback to the Flash client that calls it, as the request is being processed. However, since I'm listening for the COMPLETED event, ...
0
votes
2answers
400 views
URLRequestHeader problem in actionscript
I will use the URLRequest to upload the modified image in Flex. It works fine. However, I need to add Content-Length as a URLRequestHeader for the moment, and I get error 2096. Then, I know that ...
0
votes
0answers
40 views
Is typing a URL in a browser always ends with GET request? [closed]
Is that some security convention to perform always a GET request when typing a URL in a browser ?
0
votes
1answer
482 views
AS3 URLRequest Timeout (not AIR)
I am building a web-app that should send some data to the server.
Flash has a built in timeout limit for URLRequest set to 30 seconds.
I cannot use AIR (as this solution should run from the browser) ...
0
votes
1answer
107 views
Loading a swf named in xml into a parent swf in Actionscript 3
OK, I have a situation where I use loadvars to load an xml file, which has the address of 2 swf's on the server. I can trace the xml items so know they are loading. So I'm trying to load the swf's ...
0
votes
4answers
396 views
AS3 URLRequest in for Loop problem
I read some data from a xml file, everything works great besides urls. I can't figure what's the problem with the "navigateURL" function or with the eventListener... on which square I click it opens ...
0
votes
1answer
332 views
AS3 URLRequest XSS?
Im basically working on an image analyser that downloads images from another server. I have no control over the server but I only want to scan images not html pages.
would something like this work?
...
0
votes
2answers
801 views
AS3 URLRequest stored in array needs now to load, how?
Hey guys, I have a bit of code here that pulls, at random, 50 images from a file and pushes them into an array. I now need to pull, at random, 350 times from the array. I'm using a timer in place of ...
0
votes
0answers
767 views
Trying to change a child movieclips variable through the parent
Hey guys, I been toying around with the new loader() event.
I create 2 files. One named par.swf with the code below in it, and the other named chi.swf. chi.swf has 2 frames. on frame one it has an ...
0
votes
3answers
666 views
How to specify the location of a remote machine's file in the URLRequest parameter? - Edited
Hi now I have found how to give a relative path in URLRequest paramate and download that file. I found it from this particular stack overflow post . Thanks to Christian Nunciato and heri0n.
so now if ...
0
votes
2answers
280 views
Loading form input values from web pages into URLRequest?
How would I pull out the form values for the html source below and add them to an NSURLConnection?
<tr>
<th><label for="username"><span ...