Flex :: Blaze And Integrate App With SiteMinder

Feb 15, 2011

I'm just looking for some direction to integrate my Flex app with SiteMinder. I can't find any working examples online to get me started.

View 1 Replies


Similar Posts:


Flex :: Blaze DS 4 Libs Missing Mx.* Packages?

Mar 29, 2012

I just set up my environment (Flex 4.6 SDK, Blaze DS 4.01) and I'm wondering where the needed mx.* packages might be found, since I want to import classes, such as mx.messages.Producer / Consumer, in my non-MXML-Project and instanciate them programmatically. Blaze DS API ref says, they are part of the Blaze-WAR but I just can't find them.

View 1 Replies

Flex :: Security - Blaze DS Not Passing OpenSSO Authentication Cookie?

Jun 15, 2010

I have a set of RESTful web services. These services are protected on a Glassfish server by OpenSSO. When I attempt to call the RESTful services directly from a browser, OpenSSO intercepts the request, then forwards the request to the REST service once the user's credentials are authenticated. OpenSSO utilizes a session cookie on subsequent requests (until the session is invalidated) . I'm sure this piece is working correctly.We'd like to call these services from a Flex client. In order to enable PUT and DELETE operations, we set up BlazeDS to proxy the RESTful requests from the flex client to the REST service. When security to the RESTful services is disabled, this piece works great.

Now we're trying to secure the entire application. We've placed the Flex SWF into a war and deploy to Glassfish. We've placed security around this resource and when a user attempts to download the SWF (through an HTML link in the war), OpenSSO intercepts the request, then forwards to the application on successful authorization (just like it does for the RESTful web services).The problem is - the RESTful calls made by the Flex application (via BlazeDS) are failing. OpenSSO seems to be intercepting these requests as well and again asking for the users credentials. It doesn't seem the authentication cookies are being passed to (or maybe by) the BlazeDS proxy.

View 1 Replies

C++ :: Using Live Data From Blaze DS In A Swf File

Aug 23, 2011

I currently have a c++ client which can play SWF, AVI, BIK etc It uses DirectX9 to render the graphics I currently have a requirement for dynamic SWF files, which would retrieve data from a BlazeDS server and put certain text in certain places depending on the retrieved data From what I have read, BlazeDS talks to Adobe Flex and Adobe AIR applications Would that mean I would have to convert my current c++ client into a Flex application I'm just having trouble trying to figure out how Blaze and Flex and Air all fit together

View 1 Replies

Actionscript 3 :: How To Define Proxy Without Blaze DS

Jan 5, 2012

I have an AIR app that I need to define a proxy for because the services sit behind a firewall. We are not using BlazeDS so I can't define the proxy settings in the proxy-config.xml file. So, how do I do it? I'm guessing that I'm not the first person who has had to work behind a firewall when accessing data so I'm not sure why I can't find any documentation on the web anywhere about this.AIR says it is supposed to automatically know and use the proxy configuration from your system, i.e. default browser. In there, I don't set a manual proxy, I use the 'automatic configuration' and point it to a .dat file. Could this be where the problem is? Does AIR not know how to understand this?There's no way to set a proxy on an HTTPService component unless you are using Blaze DS or LCDS? Is this true? I'd hate to have to add that to my application just so I can get this accomplished.

View 1 Replies

Javascript :: Use Adobe's Blaze DS Via ColdFusion Through Ajax?

Dec 7, 2009

I want to use Adobe's Blaze DS via ColdFusion through Ajax. I know enough ColdFusion and JavaScript to do what I want to do, but I want to add long poling into the application and it looks like the only way to do that is through Blaze DS...but I don't know enough about Flash/Flex to finish the job.

View 2 Replies

Flex :: Best Way To Integrate R Function And Flash

Sep 21, 2009

I want to make a Flash or Flex front end for my R code, I want to call an R function from a website (using Flash) what is the best way to go about connecting Flash and R?

View 2 Replies

Web Development :: How To Integrate Flex With Existing Web App

Sep 2, 2010

I'm having trouble conceptually understanding how to integrate flex components -- forms, charts, data grids, etc. -- with an existing web app. There are certain aspects of the web application where I believe it makes more sense to use flex -- however, I DO NOT want to replace the (html/js/java) web-app with a pure flex based app.For example, currently the web app displays user data using html tables and java based charts, I'd like to re-implement this "data display" using flex. Would I have to create a flex "application" for the "data display"?

View 1 Replies

Integrate R And Flex (e.g. Web Server Using Rapache)?

Sep 3, 2010

How can you integrate R and Flex (e.g. web server using rapache)?

View 1 Replies

Flex :: Possible To Integrate FlipCard With SebCoverFlow?

Dec 29, 2010

Im xHTML/CSS/PHP coder - not flex and AS3.Components that im saing on:URL...sebastiaanholtrop (spam restrictions)

View 1 Replies

Integrate Raw Ruby Apps (not Rails) With Flex?

Jan 12, 2011

I´m looking for any kind of information on this subject, kinda hard to find. I´m a ruby programmer and i´m looking for ways to create web apps with RIA, like Adobe Flex.

View 3 Replies

Actionscript 3 :: Integrate Google Calendar Using Flex 3?

Aug 19, 2011

I have developed an application using adobe Flex 3 as frontend and Java as backend. The application is related to CRM. So i need to integrate Google Calender into my application using flex 3.

View 2 Replies

Flex :: Integrate Pentaho And Google Visualization API?

Nov 14, 2011

I have developed one Mondrian schema and cube. I have deployed schema file in Pentaho BI server. I would like to know is it possible to connect these Pentaho schemas and UI technologies like Google Visualization API or Adobe Flex?

While searching for solution I came to know about OLAP4J and icCube, out of which I think OLAP4J is very old project and its not really active project. icCube looks good but it works with its own server, it cannot be integrated with Pentaho BI server.

Right now I am thinking about Google Visualization API and Adobe Flex. Or, is there any other option?Where can I get more information about it?

View 1 Replies

Flex :: Events - Integrate Flare3D Into Application?

Nov 22, 2011

I'm building an application with the Flex framework and the 3D graphics library Flare3D. I want to be able to embed my 3D scene into an MXML application and still have the mouse events dispatched to the 3D scene.

Here is my code:
- The MXML app:
<?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]....

The problem is that the 3D rendering is done by default in a "layer" that is behind the 2D layer (where we can put MXML components). By default, if we mix 3D and 2D elements, we can't see 3D elements. So I added backgroundAlpha="0". This solved the problem of showing the 3D view. But now I have another problem, I can't move the cube (which is the default behaviour) when I click on the scene and move the mouse. I understand that this is because the 3D view is behind the 2D view.

Is it possible to give the 3D view the focus for mouse events (when it's needed) ? Or is there a different way of doing what I want ? The only hack I figured out is to uncomment this //stage.getChildAt(0).visible = false; which make the 2D view invisible. But I want to mix 2D elements and 3D view, so it's not a solution.

View 2 Replies

Flex :: Grails Security Over HTTP - Use HTTPService To Integrate Into It?

Dec 5, 2010

I'm writing an application, Flex front-end & Grails back-end, in which I need to integrate security. All the information around Grails gives me the impression to be well suited for when your client is written in HTML but how can I use Flex's HTTPService to integrate into it?

View 2 Replies

Javascript :: Integrate Google Earth Feature Into Flex?

Dec 18, 2010

i have successfully integrated Google earth with Flex using ExternalInterface.call("javascriptMethodName") method and writing the javascript stuff in the html file which embeds the swf file. it ran and loaded Google earth successfully.

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="http://earth-api-samples.googlecode.com/svn/trunk/lib/kmldomwalk.js" type="text/javascript"> </script>

[Code].....

this is a snippet of that html file but when i add something like to the html file:

var directionsService = new google.maps.DirectionsService();

View 1 Replies

Actionscript 3 :: Integrate Skype Link In Flex Application?

Mar 17, 2012

How to integrate Skype link in Flex application ?

View 1 Replies

Flex :: Integrate Shopping Cart System For Flash Application?

Mar 25, 2010

I've built a simple flash application that takes a user's photo/image, offers various effects and filters to play with. In the end, the application can write-out the resulting image to a PDF print file (to be purchased and sent to a printer).Currently I'm using PHP to template the web pages, with the Flash app embedded in the body of one of the pages.

I now need to integrate a shopping cart and check-out system, the idea being that the user can play with images, add various images to a shopping cart, at some point choose print sizes for each image, check-out and purchase etc. My app would attached the necessary print files, and email/submit the order to the printer.In researching the various cart systems out there like Zen-cart, Magento, osCommerce, etc.. these all seem to be full featured CMS systems, full websites, that you deploy, customize and skin, add products to etc... a "canned store". But in my case, I'm adding/creating the product at run-time. It's not a traditional store where you browse and select items.

At first glance its not clear to me how I would use one of these systems, how to integrate with my Flash app.... it seems I only want to make use of the shopping cart, customer database portion, payment transaction features.Is it possible to use one of these, using only the checkout and order management through a API? called from my Flash app? or processed via back-end PHP?

View 1 Replies

Java :: Integrate Services With Flex UI Built Using Mate Framework

May 24, 2010

I am new to Flex and need to integrate Java services with Flex UI built using Mate framework. Can anyone point me to any website/links or show an simple example of integrating Flex UI on Mate framework with Java remote services? A simple integration of a "LoginService" will be good enough.

View 1 Replies

Integrate Flex Application To Access Rest Services (using Jersey) Through BlazeDS?

Feb 15, 2011

I am trying to integrate Flex application to access Rest services (using Jersey) through BlazeDS. I'm able to get Rest + Jersey working (pretty straight forward I guess) and I was able to configure Flex + BlazeDS. I'm looking for help to invoke rest services (different methods) from Flex UI based on the annotations specified such as @Path in my rest service class.

View 1 Replies

Ruby On Rails :: Integrate A Flex Application Into A Rails Environment?

Feb 1, 2010

I have a webpage based on ruby on rails. For one task I need some more complex user interface which I plan to do with a flex programm. The question is, how I can start the a new window with my flex programm and hand over the right url where the flex app can load its data in XML format...

View 1 Replies

Professional :: How To Integrate A Font

Jan 8, 2010

I'm new to Flash and I just noticed that the custom font that I used for my menus is not being displayed on machines that do not have this font, only a default font is shown there.I tried to include the font in the library (Library -> New Font), but it still doesn't workDo I have to start from scratch with the imported font? Or was I supposed to checksomething/add some settings (like "Export for ActionScript" or "Export for runtime sharing"?).

View 10 Replies

ActionScript 3 :: How To Have Flash Integrate With SSH?

Nov 16, 2009

Is there a library for SSH in ActionScript 3? If not, how to have Flash integrate with SSH.I have a Flash prototype programmed out, and my client wants to see some minimal integration with an SSH server. What is needed is basically: connectauthenticate send a few basic commands I can't just have these commands be sent out blindly, as I need Flash to be aware of the SSH feedback and let the user know if the authentication, commands, etc were successful.

View 1 Replies

Php :: How To Integrate Flash And MySQL

Feb 20, 2010

tutorials (e.g. ) show how to integrate Flash and MySQL. Also Flash can manipulate and sent this back to serverTo integrate flash and MySQL one can do the following:(1) MySQL -> php -> Flash (e.g. What is the most robust way to set up (1) and (2) to work at scale - as quickly as possible? What are the server loading implications? Is there any other way to do (1) and (2) more effectively?

View 2 Replies

ActionScript 3.0 :: Integrate PhP Codes Into Flash?

Sep 16, 2010

I have to connect my flash application with php+mysql .how can i integrate my php code into flash..?

View 1 Replies

ActionScript 2.0 :: Integrate A Search Feature?

Nov 18, 2010

I have a XML file which I am trying to integrate a search feature. I have attached a zipped folder of my working example.In this XML file is a collection of modules: 1.1, 1.2, 1.3 etc...

Each module is broken down further:

1.1has: 1.1.1, 1.1.2, 1.1.3
1.2has: 1.2.1, 1.2.2, 1.2.3, 1.2.4 etc...

I have a search feature that is searching the XML, then outputting the content if found.Now this is working OK for a specific module listed above, for example, in my zipped example, I can get it to search 1.1.1, 1.1.2, 1.1.3 etc...

What I can�t seem to get working is how to search all of the modules sections: eg: 1.1: 1.1.1-1.1.x, 1.2: 1.2.1 � 1.2.x and so on depending on how much content is sorted in my XML.

View 14 Replies

How To Integrate Symbol Animation Into Timeline

Aug 9, 2009

I've got a multi-element character animated in its own timeline, within its own symbol --- but it's not showing up in the main timeline, or on the stage when I exit the symbol and go back to the Main movie view. How do I get the symbol's animation to integrate into the main scene?

View 2 Replies

Flash :: Integrate Banner In Website?

Nov 7, 2009

I'm building a portfolio website for my design work. The whole website is Flash based. I have a Flash banner that I would like to add to the website but I can't seem to place it on stage. Is there a way to stream the banner? If I do that, how do I place it's location on stage?

View 13 Replies

ActionScript 3.0 :: Integrate A Database Using MySQL?

Feb 18, 2010

how different is actionscript 3 compared to actionscript 2 i mean to integrate a datebase using mySQL if so how?

View 1 Replies

Flash :: Professional - Integrate Video In CS4

Mar 14, 2010

Here's what I am trying to do: I am working on a flash site and I want it to start out with a bang so I've made a intro clip in After Effects in 1920x1080. I want this intro to start by you clicking a button. So when you first see the screen you are going to see the paused video (In my case the earth from outer space) and a big red button which you can click to start this video. Since I am working in 1080p I won't be able to use FLV so we are talking about the embeded video function. My problem: I want the video to stop or go to the next frame after playback it only loops as of now.

View 7 Replies







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