Java :: Flex 4 IFrame Open Url Internal Network To An External Network?

Sep 6, 2011

I have the following scenario:

One application JEE / Flex 4 running on a tomcat, inside my Flex layer I have a iFrame passing a url to an ip of my internal network (http:url....) which is another application running within an industrial PLC.When access this app from within my internal network works fine, but when I try to access this iFrame to an external network in my home for example have a timeout error onhttp:[url].........

I believe this error occurs because the flex client is trying to run this url as I was in a internal network.Is there any way to run this url from an external network?

View 1 Replies


Similar Posts:


Flex - AIR - Making Use Of Air.swf File In An Internal Network?

Apr 19, 2010

StackOverflow community,[URL].. used to launch AIR applications from Flex applications requires the use of an air.swf file located here:[URL].. We have tried to download this SWF and use it in our internal network, but it is not working, we depend on using the one located in the Adobe site.

Is there anyway to use this air.swf file without having to access the Adobe site?

View 2 Replies

Actionscript 3 :: Open A File From A Network Path?

Apr 18, 2011

I need to open media files from a network path like this "\drivefolderfile", is it possible, if yes how? else is there any other alternative?

View 1 Replies

Java :: Verify Contribution Of Client-server Network Latency In Application Performance

Sep 24, 2011

We have a typical Flash+J2EE application that makes multiple requests from client to server (over Flex remoting), which is taking quite a long time on some client systems (and hence results in poor application performance on such systems).

Now, suspecting issues with network connectivity (latency) on such client system(s), we need to identify how far does it contribute to the slow response of the application (rather than performance issues in the application itself).

So, what are the best way(s) to diagnose this on a client system (Windows)?

Note that we have tried profiling our application, which does not indicate bottlenecks there, so we just need to clearly identify the possible network issues.

View 1 Replies

Flex :: View Available Network Shares?

Aug 23, 2011

I would like to list all network shares but have no idea where to even begin my search, I assume that it has something to do with Samba etc., but really some guidance would be very useful.

I will be using Adobe AIR 2.5 - so I assume I have access to that sort of information, though I will be using the PlayBook from BlackBerry to access the network which has a full AIR implementation.

View 1 Replies

Flex :: Limitations Of The Network Monitor?

Sep 19, 2011

What is the reason Flash Builder 4's Network Monitor does not support applications that were created using pure ActionScript and Library projects? It seems to work only for Flex projects.

View 1 Replies

Flash:: Using Network In Flex Sdk 4.5 Gives Blank Swf

Jan 24, 2012

I developed a flash app and i need the functionality when I click on a sprite I want to open a web page in browser for example [URL]. I use flex sdk 4.5 and I changed the use-network tag from false to true in flex-config.xml. But when i compile my project and load the swf in browser I get everything blank. I tried also to use html page with swf embeded but same result

View 1 Replies

Actionscript :: Creating Network Graph In Flex?

Jun 17, 2009

I need to create a network graph with nodes in flex. Once I give the input the nodes must get connected with each other if they have something in common.

The nodes must be click-able to show which other nodes it is connected to.

Can a bubble chart be modified to do this?

View 2 Replies

Flash :: Adobe Flex And Air Connecting To A Network

Nov 26, 2009

What Approach can you use to Connect Adobe Air Application to a Local Network? Examples of function is send a message to other computer that is connected to a network, sending files or viewing their desktop.

View 1 Replies

Flex :: Adobe AIR. Local Network Error?

Apr 16, 2011

For example, in local network, when Adobe Air is reading files from local server (\Serverstorage) and network will be in down for a second, Air becomes eat a lot of memory and it is increasing up to 1GB (while normal memory use is 100 kb or less).Just reading file with File('file path on local server'); from unstable network can cause this error.
Have anybody seen that in projects?

private function init() : void
{
file = new File("\Serverdragracing

[code].....

View 1 Replies

Flex :: Accessing Video Content Over Local Network?

Jun 17, 2011

I am having a strange issue in my flex app. I have a Video element that loads an FLV file from the same directory as the SWF app. If I move my SWF and FLV to a local directory on my computer and load the SWF in my browser, the video plays without any issues. However, if I move the same collection of files (SWF, FLV, HTML) to a network share, the video no longer loads.

[Code]...

In my netStatusHandler() callback I get an event status of: NetStream.Play.StreamNotFound.

Again, I only have this issue when loading content from a network share.

View 1 Replies

Flex :: Synchronous - Action Wait For Network Response?

Jun 22, 2011

I have small Flex web based util with single button. On this button click a request is sent to server and the response must be read in the same call.This is important not to wait for response with event handler (which is trivial).Basically this is synchronous call.I am ok with blocking ui and so on.

View 1 Replies

Actionscript 3 :: Communication Between Two Flex Mobile Applications Over A Network

Jan 8, 2012

I have two mobile devices on a local network, A and B. I would ideally like A to be able call functions on B, returning a response to A.

I am aware of LocalConnection, but unfortunately this isn't supported on mobile. What is the best way to achieve this? Do I have to setup B as a server using BlaseDS?

View 1 Replies

Php :: Casting From FLEX - Network Monitor Response Is NULL

Jan 31, 2012

[Code]...

so the problem is I can print the array but how to cast tht array to a known php type? After 5 days I finnaly figured out flex and mysql using amfphp

View 1 Replies

Flex :: SOAP Variables In Network Monitor But Not Making It To Event Handler

Aug 13, 2009

I am querying a 3rd party web service and not all the data seems to be making it to the event handler. When I view the request/response in the Network Monitor I see a collection of data objects each containing two string variables (name, url) and two arrays (counts, breakdown). When the result handler receives the data and I view it in debug mode, the collection of data objects each only contains one string variable (name). What happened to the other string var (url) and both arrays (counts, breakdown)? what would cause this since it seems to becoming corrupt before it reaches the event handler but after it is received by the network? Is this most likely an IDE issue?

View 1 Replies

Flex :: Intercepting Network Calls To Force Html Header Referrer To Null

Aug 16, 2011

I've been using the Flex "HTML" component in my AIR 2.7 project. It's a wrapper for the HtmlLoader class. The problem is that empty referers in HTML headers are automatically set to "app://[appname].swf". This is not standard as default referer behavior should be to not set any referer at all. The consequence is I'm getting denied access on certain websites using iframes (as location changes from an iframe set an empty referer). I have no control over those requests has no event is fired when changed the source of an iframe.

I have thought about the possibility of intercepting all network calls and setting the referer to empty when necessary before sending the message. My app is only a container in wich a module is loaded for easier updates so maybe I could set up a proxy on top or something like that. Is there any way to intercept network messages in Flex??

[Code]...

View 2 Replies

Can't Publish To Network Drive

Feb 29, 2008

We recently upgraded our network to Leopard and Flash to CS3,and since then, I can't publish to a network drive.The reason I need to do this is that we're on a network where all our project files are on the server, and we work directly from the server. With previous versions of Flash and the system, I was able to work on a Flash file on the server and publish or test to the same place. Now I need to copy my flash file to my local
computer in order to publish or test.If I try, I get this error: "Error creating Flash movie file.Be sure the destination file is not locked or on a locked drive.Also, check that the file name is not too long." Neither of those are the case.

View 1 Replies

ActionScript 3.0 :: SWF Can't Access Network

Feb 26, 2011

I've got a Flash Banner worked with AS3.0. It loads XML and then load the Jpegs. At the beginning, the SWF accesses the files under the same directory. So the code goes like

[Code]...

View 6 Replies

Unable To Connect To Network

Sep 26, 2011

I just installed FMS 4.5 w/ built in apache on Win2008R2 - accepting all defaults. Samples streams play fine when playing on the server.  I copied the sample directory and put on a client on the network.  I modified the stream URL using the server's IP address.  I also modified the manifest files so that localhost was replaced with the server's IP.  When I attempt to view in the sample player I get the following:

"We are unable to connect to the network.

View 2 Replies

Flash :: Use Network Services For FDT?

Apr 22, 2010

I've recently started using FDT, for a while I was using FlashDevelop, it had a really handy feature in Compiler options where you can set UseNetworkServices to false which would stop the compiled swf from connecting to the internet and became very useful for running standalone flash apps without security warnings when loading in an external xml file etc.

View 1 Replies

See Network Requests Made By A Swf?

Jun 30, 2010

I have a swf (flash file) who is making http request.

Which is the easiest way to see what request the flash application is doing?

P.S. I do not have the program as a fla file

View 4 Replies

ActionScript 3.0 :: Network Programming In It?

Apr 19, 2011

Can u recommend me a good book/e-book/tutorial to network programming in as 3.0 ? I'd like to create a multiplayer game.

View 0 Replies

ActionScript 2.0 :: Network Url From Within Flash?

Nov 18, 2005

Just created a banner for our intranet and I have a getURL inside the flash which should open an html file on the local network. The paths:\networkcompetworkfolderfile.htmlIt works from my computer but when we put it on the intranet it doesn't.

View 4 Replies

Can't Connect To FMS Inside Of Local Network

Jul 26, 2010

I'm FMS beginner (server side newbie in general)... I installed FMS 3.5 (Development) on my computer which is inside of local network. Now I try to connect to rtmp service from another machine in same network using my computer's IP as I used to while connecting to my apache, but it is worthless. Everything works fine on my computer.

View 2 Replies

Passing Network Credentials Through Flex4

May 4, 2011

i am new to flex4.i want to pass network credentials (username and password) through flex.i was not able to get appropriate results using [code]

View 1 Replies

Actionscript :: Check Network Availability ?

Feb 19, 2012

I want to check network and Internet availability in Action Script programming language.

View 2 Replies

Actionscript 3 :: Flash - Get All Network Activity?

Mar 6, 2012

Is there a way within ActionScript 3.0 to:

Get all URLRequests() that are made within the application?
Get all RTMP:// connections to a Flash Media server?

Since my application contains SWC files which were compiled by another developer, I cannot directly access the ActionScript which creates the URL requests and RTMP connections.

View 1 Replies

ActionScript 2.0 :: YuMe Ads Network Integration

Oct 18, 2009

I'm having same inconvenience while integrating YuMe Ads Module in my project. YuMe's documentation is really bad & pretty confusing. Here Now I have done some manipulations with code in AS2 based player.

I was trying to run it locally while connected to internet so it may load ads from the online source defined. But it does not load anything. I have also made the controls btns hidden, as i dont need them. I dont know if I just need to upload these files on web server and test it online to get it working. Not Sure.

[Code]....

View 0 Replies

ActionScript 3.0 :: Loading URL Within Network Produces Nothing?

Oct 26, 2009

I have a SWF that I am running on a kiosk and the Actionscript is calling a PHP script residing on an internal IP address. As everyone always says, it runs great with the IDE, however when I publish this file and run it, I get nothing. I cannot even output errors and such into a textfield. I'm totally baffled as to how I can debug this.

Code:
//set up request and loader
var request:URLRequest = new URLRequest("http://10.25.241.11/custom/test.php");
var loader:URLLoader = new URLLoader();

[Code]......

View 4 Replies

ActionScript 3.0 :: File Access With Network Off?

Nov 26, 2009

im testing out some AS3 and working on my first preloader. Ive run into the file access problem and looked about for a while and found that locally I can get files to load with the compiler flag -network=off. To put this online would I have to do a compile with the network on but with a Security.allowDomain("myDomain") line. Would this then work online so long as all the required files are in the same place.

View 3 Replies







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