Flex :: Pass Request Data With URL Fragments?

Sep 1, 2009

I'm passing the following parameter as an url fragment to flex. (#groupID=2385)

This works great on the development box, but when I put it on the production server.. nothing.

Do you think this is a server configuration issue. I presume that flex is talking to the javascript file 'AC_OETags.js' to make this all happen.

View 1 Replies


Similar Posts:


As3 :: Flex - Pass Along An Incoming Xml Post Request?

Jun 15, 2011

I need to pass along an incoming xml post request using as3? Is there a simple way to just pass that request through an as3 application? I don't want to do anything with the request other than send it along to its destination.

View 1 Replies

Send Xml Data To The Server Using HttpService Request Thr POST In Flex?

Dec 12, 2009

send xml data to the server using HttpService request thr POST in Flex?

View 1 Replies

Flex :: Send HTTP POST Request With Binary Data In Body

Sep 17, 2009

I'm new to Flex and couldn't figure out yet how to send binary data to the server as the body of a POST request. The HTTPService component doesn't seem to support this. The FileReference doesn't seem to support setting the data via the Flex API.

View 4 Replies

Flex :: Access Data Field Of A JSON Request Send By Client In JAX-RS?

Feb 2, 2012

I have the following JAX-RS service.[code]...

The JAX-RS service receives the request and respond successfully with some dummy response, but I have no access to the request.data field.

How do I access the data of the request message (which is {"type":"get_configuration","data":"some data"} in this particular example)? I think that I'm supposed to add some parameters to the handleMessage method like

public SomeResponse handleMessage(Object message) {...

but this does not work at all. The request got 415 response.

View 1 Replies

Ajax :: Detect If HTTP Request Is From Browser / Flex Asynchronous Request?

Jun 1, 2010

When Flex application make an asynchronus HTTP request, does it add a special header to the request, like some JavaScript framework does? Something that indicates whether this request is an AJAX call/not.I just want my server side code to return different response format, depending on whether the request is made from browser/flex.

View 1 Replies

ActionScript 3.0 :: How To Pass Array Via Post Request

Jul 31, 2009

When i crate flash mail list I past the variables via an object

Code:
variables.name = formName;
variables.mail = formMail;
etc.

View 2 Replies

Flex :: Pass Data From Port To Xml()?

Mar 31, 2011

AM reading data from port in the form of bytes.my data will be like [code]...

View 3 Replies

Flex :: 4 - Pass Data To The Module

Apr 18, 2011

I have a Flex 4 application that loads a module. Everything works fine except that I cant create and object or cast an object to a type of my module. At run time it throws an error. I'm not sure if there is an issue with modules, Flex4, and spark? I've tried many different ways to set/cast these objects, but nothing seems to work.

[Code]....

View 1 Replies

Flex :: Pass Data Between Mxmls?

Jul 17, 2011

index.mxml :
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"

[code].....

View 2 Replies

Flex :: Flex - Pass Data From Popup To Parent?

Jan 1, 2011

I have a parent w/ a popup child. When parent loads, I have to call a function within the popup without showing the popup (thus, I load "pupLove" but don't include it in layout)....I then pass this data to the parent. When the user manually clicks another button to open the popup, the same function is called & data passed to the parent. However, I am not able to pass dg.length to the parent. I believe the root problem is that I am loading "pupLove" & thus the parents are getting confused.....I'm guessing if I get rid of "pupLove" I can pass the data correctly but will need to call the child's function at creationComplete of the parent....how do I do that?Here's my parent:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[code].....

View 1 Replies

Flex :: Events - Pass Data From Preloader To App?

Jan 19, 2010

I would like to track the customer experience in downloading and initializing my flex app.

(a) Is there a way to pass data from preloader to the application? I would like to pass the time it takes to download and the time it takes to initialize.

(b)Alternatively: Is there an event at the application level that corresponds to the preloader events:

1. Download complete

2. Initialization complete (same as Application creationComplete)

View 1 Replies

Flex :: Pass Data From One Flex Application To Another?

Mar 31, 2010

i have two flex applications and i want to pass the data from one application to another.Is there any way to do the same.

View 2 Replies

Flex :: Events - Pass Data To Handling Function?

Jul 28, 2010

In flex, I am handling event like this,

myImage.addEventListener(MouseEvent.CLICK, redoOperation);

Now, I want to pass some value to redoOperation. (function redoOperation myId:String)) How can I pass String to it?

View 1 Replies

Flex :: Pass Multiple Data Items Through Checkbox?

Dec 18, 2010

I have 2 checkbox repeaters: The first gets populated w/ an ArrayCollection & the second gets populated w/ the "Label" and "Data" fields selected from the first checkbox....how do I pass another item to the second checkbox? In the code below, I am currently only passing the "key" and "val" fields & would like to pass "another" field.[code]...

View 1 Replies

Flex :: Data - Pass Multiple Strings Between Views?

Aug 10, 2011

I have a list of txt files and when one is selected it is read and assigned to a string variable. this string is then pushed to a view : pushView(viewer, string), where the string is displayed in a textarea. I want to also pass the relative path of the file also. Is this possible to pass two strings?

[Code]...

View 1 Replies

Flex :: Pass Data To A ClassFactory-generated Instance?

Mar 7, 2012

I have created an item-renderer (IListItemRenderer) to customize the display of a datagrid, and I override the data getter/setter to pass in the relevant variable.

In the item-renderer I have a button, which, when clicked, should display a form populated with various fields of the aforementioned variable. To do this, Button is overridden so that it displays whatever IFactory implementation it is passed.

private function instantiateDropdown():void
{
_dropdownFactory = new ClassFactory(MyPanel);
_dropdownFactory.properties = {boundData: _myVariable};

[Code]....

My IFactory implementation is a panel containing my form, and it is displayed when the button is clicked, as desired. However, the variable is not set. It seems that in order to instantiate my IFactory before the overridden button needs to access it, my new ClassFactory() statement needs to be in the preinitialize event handler, but the variable has not been set at that time. Setting the properties of my IFactory instance after it has been created (e.g. in the click event) does not appear to work.

How should I pass my variable to my ClassFactory-generated instance so that it populates the form correctly?

View 1 Replies

Flex :: Pass Data Between ViewNavigators In Flash Builder 4.5 Burrito

Feb 12, 2011

I'm giving it a try and it happens that I'm having a hard time figuring out how to pass data between ViewNavigator in a TabbedMobileApplication.

<s:TabbedMobileApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Declarations>

[Code]....

How can I pass data between nav1 and nav2? I know how to do it in between navigation views.

View 4 Replies

Flex - Facebook IFrame Application - Pass Data From URL Query String?

Jul 4, 2010

I have a Facebook application that has a picture gallery. It's build in Flex 4. I want to allow users to link to a specific image. How can that be done?

The only way I see this being done is adding a GET var like &my_picture=asd.jpg in the Facebook page URL, but I don't know how to read that from the iFrame.

View 2 Replies

Flex :: Pass Data Retrieved From A Remote Object Service To A Modules Interface?

Jun 9, 2010

I found at this Adobe tutorial a nice "RemoteService" class that creates a RemoteObject and contains the functions for handling the result and fault events. If I wanted to use this approach, how could I pass the data from the result handler to interfaces that modules from the main application could use?

I could put the RemoteService/RemoteObject in the modules, but (in my opinion- and I could be wrong) the best design seems to be using the remote calls in the main app and passing the data along to the modules.

View 1 Replies

Flex Mobile 4.6 - Pass Data (selectedItem) From Master To Detail View In Splitview?

Dec 26, 2011

I have a tabbed view with in the second tab a splitview controller.

The master view shows a list. When selecting an item from that list it opens a second view with a new list by using navigator.pushView.

When I select an item in the second view/list it has to be passed to the detailview. Is there a simple solution available?

View 1 Replies

PHP :: How To Load SWF And Some Extra Data In Same Request

Oct 6, 2011

I'm loading a Flex 4.5 module (it's a SWF file) using a PHP code like this:
$module = 'modules/'.$_GET['module'].'.swf';
if(!file_exists($module)) {
$module = 'error.swf';
} $size = filesize($module);
$contents = file_get_contents($module);
header('Content-Type: application/x-shockwave-flash');
header('Accept-Ranges: bytes');
header('Content-Length: '.$size);
echo $contents;
And it works very well.

Now I want to get some extra data to load and populate the module with that data in just one request handler, something like:
private function requestHandler(response:???):void {
var data:Array = response as Array;
mySparkModuleLoader.load("", data[0] as ByteArray);
myController.load(data[1]);
}

I was trying to do it with AMFPHP but the ByteArray seems to be broken or something because it doesn't show up, but the rest of the data is fine:
return array(
'hello world!',
new Amfphp_Core_Amf_Types_ByteArray(file_get_contents($module))
);
Maybe creating a multipart response like [URL] and handling it?

View 1 Replies

Limit Illegal Unusual Request For Data?

Jan 26, 2012

[code]...

The RD is just a number, but it was a malicious transfer up to 10GB of data, or very large data.

View 4 Replies

Php :: Request Data In A Flash Movie At Run-time

Jun 9, 2009

Is it possible to request some data in a Flash movie from PHP at run-time? Maybe my real-world implementation can clarify some things:

I use a Flash movie to store a Local Shared Object (because for some reason I need LSO's instead or regular PHP cookies). Now, when I load up a PHP file I want to somehow retrieve the data from the LSO at runtime, assign it to some variables, and use the variables through the rest of the script.

View 4 Replies

Media Server :: Take .f4f Fragments And Do Anything With Them?

Mar 12, 2012

Using FMS/FMLE, I did a live broadcast.  I have all the .f4f files (1.6G) intact and saved off.  I want to be able to repackage, convert, flatten, etc. these streaming fragments to something that can be imported into Adobe Premiere Pro or other applications to product a DVD.  I've seen a lot of posts, but no answers.  Any ideas.  I don't want to think that I wasted 4 hours of a live stream and can't capture off the data.

View 3 Replies

Php :: Reading RAW Data From A Flash POST Request ( Images )?

Dec 8, 2009

I'm basically interacting with a third party API flash file to send HTTP POST requests to my server. know I'm on somewhat the right path because it requires a crossdomain.xml file, and before I added that part nothing in the POST variables was showing up, however since I added that file there are 4 variables that are set, these POST variables are sent by the application to give me basic information about the file.. but I actually need to read the RAW POST data to actually save the image being sent by the Flash.I'm aware there are 3 ways...$GLOBALS['HTTP_RAW_POST_DATA'] $HTTP_RAW_POST_DATA which is probably the same as the firstfile_get_contents('php://input')For whatever reason, neither of these "work". By "work" I mean they're not being set, when I var dump them I get nothing.

Could it be that there's a setting in php.ini that I need to set, or perhaps the Flash application is truly not sending the actual image? I think it's doing the right thing, because it's a semi popular API and it's used by a couple other sites so I'm pretty sure it's right on their end.

View 1 Replies

Actionscript 3 :: Flash / App Engine Request Data Encoding

Nov 12, 2010

I'm new to Flash and trying to communicate with an app engine server but I'm having some encoding problems. [code]This does not work, gives me some encoding errors on the server side. But if I switch POST to GET it automagically works.

View 1 Replies

Save Live Streams In Fragments?

Aug 20, 2011

I'm planning to have a livestream running 24/7, and to be able to handle the high amounts of storage I need, I want to save the live stream in fragments (By size. For example: each fragment will be 1GB).

View 8 Replies

ActionScript 3.0 :: Fragments On Stage After Tween?

Apr 8, 2009

i'm currently working on a project involving a circle animating clockwise and anti-clockwise, there is a mask covering the circle and animating in over 40 frames ( 10 frames for each quater )

However when the circle tweens out, there seems to be a trail / fragments left on the stage which makes the animation look horrible and jerky

View 2 Replies

Data Integration :: Sending XML Request To A Secure Server (https)?

Aug 30, 2006

am having this problem of sending XML request to an addresswhich starts with "https". The problem is I always get the errormessage "Error opening URL "https:......."", instead of the actualresponse which should be in XML format as well.The function I am using is "sendAndLoad()"requestXML and responseXML are objects of XML class . Whatfunction "sendAndLoad" above does is to post variables in the"requestXML" object to the specified URL "servelet_address". Theserver response is downloaded, parsed as variable data, and theresulting variables are placed in the responseXML object.However, as I stated above, I always get the error message.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved