Blazeds security

So I have a problem that has been bothering me for a few weeks now. My backstory is a Flex front end that connects to a java backend located on the same server.  It is running on a tomcat server.  When you are inside the firewall everything runs fine in firefox but crashes in IE.  When outside the firewall you can reach the swf but get back a very long server 500 error.  This is my remote object:
<mx:RemoteObject id="ldapConnect" destination="ldapService" showBusyCursor="true"
        endpoint="https://servername/blazeds/messagebroker/amf">
        <mx:method name="getAllUsersXML" result="getAllUsers(event)" />
        <mx:method name="clearCache"/>
    </mx:RemoteObject>
this is part of my services-config.xml file
<!-- Servlet Based endpoints -->
        <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>false</polling-enabled>
            </properties>
        </channel-definition>
        <channel-definition id="my-polling-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amfpolling" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>true</polling-enabled>
                <polling-interval-seconds>8</polling-interval-seconds>
            </properties>
        </channel-definition>
        <channel-definition id="my-http" class="mx.messaging.channels.HTTPChannel">
            <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/http" class="flex.messaging.endpoints.HTTPEndpoint"/>
        </channel-definition>
        <!-- Secure Servlet-based endpoints -->
        <channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel">
            <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <!--HTTPS requests on some browsers do not work when pragma "no-cache" are set-->
                <add-no-cache-headers>false</add-no-cache-headers>
            </properties>
        </channel-definition>
        <channel-definition id="my-secure-http" class="mx.messaging.channels.SecureHTTPChannel">
            <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/httpsecure" class="flex.messaging.endpoints.SecureHTTPEndpoint"/>
            <properties>
                <!--HTTPS requests on some browsers do not work when pragma "no-cache" are set-->
                <add-no-cache-headers>false</add-no-cache-headers>
            </properties>
        </channel-definition>

Hi kloysen.  It looks like you are simply referring to the wrong endpoint.  You are using https, but the rest of the url is to the non-secure (i.e. http) endpoint.  You should probably add 'secure' to the url to match your secure config, or change https to http.  See if that helps.
<mx:RemoteObject id="ldapConnect" destination="ldapService" showBusyCursor="true"
        endpoint="https://servername/blazeds/messagebroker/amfsecure">
        <mx:method name="getAllUsersXML" result="getAllUsers(event)" />
        <mx:method name="clearCache"/>
    </mx:RemoteObject>

Similar Messages

  • BlazeDS/Security/Spring/NonBlazeDS/NonSpring/Confusion Oh My

    I'm new to Flex (coming over from the pure JEE world.) One of the first things that is needed for any application is security authentication/authorization. I've been extremely disappointed, though, in the lack of good examples with best practices on how to handle this, or if there is a book that covers it well let me know and I'll purchase it.
    I'm working with BlazeDS at the moment (but not opposed to scrapping it.)
    I have managed to finally get a security setup using blazeds-spring integration working, but their forum is a ghost town so it makes me think that there aren't many people using it. The docs are also extremely vague. Had it not been for some stuff that I was able to pull from these two tutorials by the same author http://www.adobe.com/devnet/flex/articles/flex_security.html#ach-setscr  http://www.gridshore.nl/2009/05/24/integrate-flex-security-in-mate-using-the-spring-blazed s-integration-project/ I would have been completely lost. Even though it's 'mostly' working, so much is unknown to me, and because the reference doc http://static.springsource.org/spring-flex/docs/1.0.x/reference/html/index.html is so short it doesn't cover a lot of what is going on.
    I'm not even 100% certain I want to use Spring though (It seems to actually black-box too much and in some ways overcomplicate things with a lot of configuration), yet I want my application be portable across containers. Where are the examples on the best way to set things up? The blazeds reference doc chapter seems to gloss over a lot, and only confuses me a bit more. I'd like to see some real examples.
    As an example of some things that I'd like to see:
    1) When not using Spring security, where is a concrete implementation of handling authentication and authorization (with/without blazeDS - I just want a good best practice example of how things are handled)?
    2) How are people dealing with session time outs? (user clicking around in application and then they happen to make a server call but their session is gone. Do you simply poll every few minutes to keep the session alive?)
    3) Are people putting up a filter up before the blazeDS filter to check the user's session is valid? If the session isn't valid and you've set up a filter, what happens on the flex side of things if the filter finds an invalid session? It can only redirect for forward so how does it trigger the client flex app that it needs to invalidate its internal storage of an authenticated user and hence needs to redisplay the login page. I know how to set things up in a traditional java web app, but I'm a bit stumped here... I only have one main "FooBar.swf" file, so when the sesison filter realizes the user's session timed out where do I "go" - can I somehow just redirect to the same main page "FooBar.swf" and somehow Flex can be aware that "Hey ok some event happened so I need to invalidate my flex user and present the login page (login component)"
    Thanks for any suggestions/help on what to look at for best practices.

    Hi,
    Did you got any ideas on this one? As a newcomer to Flex/BlazeDS I'd like hear those?
    I'll add my thoughts to the discussion you started.
    2) How are people dealing with session time outs? (user clicking around
    in application and then they happen to make a server call but their
    session is gone. Do you simply poll every few minutes to keep the
    session alive?)
    I check the session in a filter for each request. If there's no valid session, the filter sends a response message to flex app which shows it as a Alert message.I'm not (yet) using blaze, but I don't see why it wouldn't work.
    If you want, you can configure the session timeout in the web.xml of your web app, so no need to poll. It would be nice to get asynchronous event from the server side when the session times out. This requires to use the pub/sub method of blaze or java messaging on a servlet.
    The web.xml of the blazeDS samples has the following lines
    <!-- Http Flex Session attribute and binding listener support -->
        <listener>
            <listener-class>flex.messaging.HttpFlexSession</listener-class>
        </listener>
    To me this indicates that you can define a listener for the session somehow. It would be nice to know more about this.
    3) Are people putting up a filter up before the blazeDS filter to check
    the user's session is valid? If the session isn't valid and you've set
    up a filter, what happens on the flex side of things if the filter
    finds an invalid session? It can only redirect for forward so how does
    it trigger the client flex app that it needs to invalidate its internal
    storage of an authenticated user and hence needs to redisplay the login
    page. I know how to set things up in a traditional java web app, but
    I'm a bit stumped here... I only have one main "FooBar.swf" file, so
    when the sesison filter realizes the user's session timed out where do
    I "go" - can I somehow just redirect to the same main page "FooBar.swf"
    and somehow Flex can be aware that "Hey ok some event happened so I
    need to invalidate my flex user and present the login page (login
    component)"
    Why not just have different swfs? When the session is not valid, redirect to login.html (a wrapper for login component).
    If I have understood correctly, Flex uses HTTP GET method to communicate with the browser. So it might be possible to send parameters to the app after the filter. Also, using java script and external interface might be helpful here.

  • BlazeDS security with Jetty?

    Hello everyone, I have BlazeDS 3.2 set up on Jetty 7.0.1. I'm looking to secure my channel for producers. Has anyone done this with Jetty? Does it use the same methodology as Tomcat?
    I managed to get security applied for producers on a channel, but it would pull up a browser security authentication dialog box when the Flex app attempts to send a message with the producer. When I try to set up the Flex client to transmit the credentials, the send fails.
    Has anyone gotten the security working with Jetty so that their app itself can transmit the credentials?
    Thanks,
    josh

    Try changing the network name.
    Often when you enable encryption or change the encryption type without changing the network name the Mac gets confused when automatically trying to connect. Apparently there is some remnants of the old setting lingering causing confusion.

  • BlazeDS Secure-amf (https) still uses amf (http)

    Hello,<br /><br />BlazeDS works perfect, but when i bring my services-config, proxy-config and remoting-config to Secure then I get the following error:<br /><br />500 Internal Server Error. BlazeDS is stil trying to connect to: http://<servername>:<port>/blazeds/messagebroker/amf<br /><br />But i removed every amf-channel using amf! Why is BlazeDS still trying to connect on the amf channel?? (HTTP).<br /><br />My channel definitions are:<br /><br />-- services-config.xml --<br /><channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel"><br />            <endpoint url="https://<servername>:<portssl>/blazeds/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/><br />            <properties><br />                <add-no-cache-headers>false</add-no-cache-headers><br />            </properties><br />        </channel-definition><br /><br />-- remoting-config.xml --<br /><default-channels><br />       <channel ref="my-secure-amf"></channel><br /></default-channels>

    I have already found the problem. When you want to use amf-secure instead of amf beware that you disable all amf configurations. Then blazeds will try to connect with http instead off https. This wil give overhead.

  • Invalidate session in BlazeDS

    Hi!
    I need to integrate BlazeDS security with an external security mechanism so I have implemented custom authentication as described in http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=services_security_1 .html. Now I need to invalidate user authentication on server upon certain circunstances. When this happens, I invalidate Session contained in Request parameter of invoke method of TomcatValve. This seems to work but I get a nasty "Duplicated Http Session" in Flex client telling that cookies where removed in server. Is there any clear way to invalidate current user login from BlazeDS?
    I've also tried invalidating FlexSession but then Flex clients hangs.
    Thank you very much.
    Daniel.

    Ummm - isn't that exactly what a session timeout specifies?
    ie how long should it stick around before it "expires" and should be invalidated?
    You don't need to call session.invalidate() - it will do that all by itself.

  • Glassfish v3, BlazeDS, and authentication.

    Hi,
    I'm looking for documentation about how to configure BlazeDS security with Glassfish v3.  I've found this:
    http://anachronymous.com/2009/01/flex-blazeds-and-glassfish-part-1.html
    ...but it's for Glassfish v2.  Most of it should be the same, but some of the TomcatValve stuff has changed for Glassfish v3:
    http://blogs.sun.com/jluehe/entry/glassfish_v3_adds_support_for
    Should I be able to ignore the valve configuration and simply use TomcatLoginCommand since Glassfish v3 is supposed to support Tomcat style valves?  I tried adding the following to services-config.xml:
    <security>
        <login-command class="flex.messaging.security.TomcatLoginCommand" server="all"/>
    </security>
    ...but upon deployment I get the following error:
    javax.servlet.UnavailableException: Cannot create class of type 'flex.messaging.security.TomcatLoginCommand'.
    Can anyone point me in the right direction?
    Ryan

    I'll assume you've got Glassfish using the default 'file' realm for authentication.  If not you'll have to adapt my instructions to the realm you're using.
    1) Load the glassfish admin console.
    2) Navigate to 'Configuration -- Security -- Realms -- file'.
    3) Select 'Manage Users' near the top left.
    4) Select 'New'
    5) Add the user 'tech'.  In the 'Group List' put 'tech'.  Use any password you like.
    6) Select 'OK' to save your user.
    7) Navigate to 'Configuration -- Security'.
    8) Enable 'Default Principal To Role Mapping'.  I can't remember why I have this enabled, so feel free to research it a bit.
    9) Select 'Save' to save the changes.
    Here is a complete copy of a simple web.xml that I've used:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
             version="2.5">
        <display-name>ITMA Web App</display-name>
        <!-- Http Flex Session attribute and binding listener support -->
        <listener>
            <listener-class>flex.messaging.HttpFlexSession</listener-class>
        </listener>
        <!-- MessageBroker Servlet -->
        <servlet>
            <display-name>MessageBrokerServlet</display-name>
            <servlet-name>MessageBrokerServlet</servlet-name>
            <servlet-class>flex.messaging.MessageBrokerServlet</servlet-class>
            <init-param>
                <param-name>services.configuration.file</param-name>
                <param-value>/WEB-INF/flex/services-config.xml</param-value>
            </init-param>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>MessageBrokerServlet</servlet-name>
            <url-pattern>/messagebroker/*</url-pattern>
        </servlet-mapping>
        <welcome-file-list>
            <welcome-file>itma-flex-ui-blazeds.swf</welcome-file>
        </welcome-file-list>
        <login-config>
            <auth-method>BASIC</auth-method>
            <realm-name>file</realm-name>
        </login-config>
        <security-role>
            <role-name>tech</role-name>
        </security-role>
        <security-constraint>
            <web-resource-collection>
                <web-resource-name>Flex UI</web-resource-name>
                <url-pattern>/messagebroker/*</url-pattern>
                <http-method>GET</http-method>
                <http-method>POST</http-method>
            </web-resource-collection>
            <auth-constraint>
                <role-name>tech</role-name>
            </auth-constraint>
        </security-constraint>
    </web-app>
    Note the MessageBrokerServlet configuration, specifically the <servlet-name>.  You probably have something similar.  The <servlet-mapping> means all requests to urls like 'http://my.domain.com/contextroot/messagebroker/amf' will be processed by the MessageBrokerServlet.   The <security-constraint> configuration restricts all requests to '/messagebroker/*'.  Basically all requests to the MessageBrokerServlet will require authentication.
    All of the roles in your application need to get listed in  the <security-role> section.  Each role needs to be mapped to a 'Principal' on the Glassfish server.  I'm not positive, but I think the 'Default Principal To Role Mapping' will automatically map users defined as being of the role 'tech' to the 'tech' user (principal) or possibly the 'tech' group.  I'm a little unclear on how it works with the group list.
    The final parts are the <login-config> and <auth-constraint> sections.  The login config defines the realm to use (file in this example).  The auth-constraint section says that access to the listed resources should be restricted to users in the 'tech' role.
    The whole process is something like this:
    1) Only users in the role 'tech' can access urls that match /messagebroker/*.
    2) The role of tech is defined and mapped to a principal (or group of principals) within the file realm on the server.
    3) The 'Default Principal To Role Mapping' option in glassfish automatically maps the tech role to the tech principal (user) or group (I'm not actually sure which one).  I think you'd normall need to configure this somewhere and map the roles in your flex application to groups in your security realm.
    Try creating a configuration like the above.  Ignore the BlazeDS portion of the configuration to start with and see if you can get it working with just web.xml.  After you get that working and know you can actually authenticate to the container (Glassfish), then you can go back to trying to get the BlazeDS side of things configured / mapped.
    I hope that helps,
    Ryan

  • [svn:bz-4.6_Apache] 24057: Changes for Apache donation.

    Revision: 24057
    Revision: 24057
    Author:   [email protected]
    Date:     2013-06-28 02:05:34 -0700 (Fri, 28 Jun 2013)
    Log Message:
    Changes for Apache donation.
    Modified Paths:
        blazeds/branches/4.6_Apache/adobe.header
        blazeds/branches/4.6_Apache/apps/blazeds/WEB-INF/classes/commons-logging.properties
        blazeds/branches/4.6_Apache/apps/blazeds/WEB-INF/flex/messaging-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds/WEB-INF/flex/proxy-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds/WEB-INF/flex/remoting-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds/WEB-INF/flex/services-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds/WEB-INF/web.xml
        blazeds/branches/4.6_Apache/apps/blazeds/build.xml
        blazeds/branches/4.6_Apache/apps/blazeds/index.htm
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/classes/commons-logging.propertie s
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/flex/messaging-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/flex/proxy-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/flex/remoting-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/flex/services-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/flex-servlet.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/spring/app-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/spring/infrastructure-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/spring/security-config.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/WEB-INF/web.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/build.xml
        blazeds/branches/4.6_Apache/apps/blazeds-spring/index.htm
        blazeds/branches/4.6_Apache/apps/ds-console/ConsoleResultWindow.mxml
        blazeds/branches/4.6_Apache/apps/ds-console/WEB-INF/flex/services-config.xml
        blazeds/branches/4.6_Apache/apps/ds-console/WEB-INF/install-web.xml
        blazeds/branches/4.6_Apache/apps/ds-console/WEB-INF/web.xml
        blazeds/branches/4.6_Apache/apps/ds-console/build.xml
        blazeds/branches/4.6_Apache/apps/ds-console/console/ConsoleListener.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/ConsoleManager.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/ConsoleTreeDataDescriptor.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/AdvancedPanel.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/AdvancedPanelDisplay.mxml
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/DefaultPanel.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/DefaultPanelDisplay.mxml
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/DestinationManager.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/DestinationManagerDisplay. mxml
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/EndpointManager.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/EndpointManagerDisplay.mxm l
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/LogManager.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/LogManagerDisplay.mxml
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/Operation.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/OperationSet.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/PollableAttributeChart.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/ServerManager.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/ServerManagerDisplay.mxml
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/UpdateListener.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/containers/UpdateManager.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/data/Bindable3DHashMap.as
        blazeds/branches/4.6_Apache/apps/ds-console/console/events/ManagementOperationInvokeEvent .as
        blazeds/branches/4.6_Apache/apps/ds-console/console.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex/messaging-config.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex/proxy-config.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex/remoting-config.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex/services-config.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/dashboard/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/dashboard/src/RegionBreakdown.m xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/dashboard/src/RegionDetail.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/dashboard/src/RevenueTimeline.m xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/dashboard/src/SortUtils.as
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/dashboard/src/dashboard.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/dashboard/src/main.css
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/inventory/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/inventory/src/Product.as
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/inventory/src/ProductForm.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/inventory/src/SearchPopup.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/inventory/src/inventory.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/inventory/src/styles.css
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/runtimeconfig-messaging/build.x ml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/runtimeconfig-messaging/src/Cha tPanel.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/runtimeconfig-messaging/src/mai n.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/runtimeconfig-remoting/build.xm l
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/runtimeconfig-remoting/src/main .mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-101/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-101/src/ProductView.m xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-101/src/Thumb.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-101/src/main.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-101/src/testdrive.css
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-chat/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-chat/src/main.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-datapush/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-datapush/src/main.mxm l
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-datapush/src/startfee d.jsp
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-datapush/src/stopfeed .jsp
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-httpservice/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-httpservice/src/catal og.jsp
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-httpservice/src/main. mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-remoteobject/build.xm l
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-remoteobject/src/main .mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-update/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-update/src/Product.as
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-update/src/ProductFor m.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-update/src/main.mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-webservice/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/testdrive-webservice/src/main.m xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/traderdesktop/build.xml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/traderdesktop/src/BackgroundCol orRenderer.as
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/traderdesktop/src/ColorRenderer .as
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/traderdesktop/src/main.css
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/traderdesktop/src/samples/portf olio/Stock.as
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/traderdesktop/src/startfeed.jsp
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/traderdesktop/src/stopfeed.jsp
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/flex-src/traderdesktop/src/traderdesktop .mxml
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/ConnectionHelper.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/DAOException.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/DatabaseCheckService.ja va
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/crm/ConcurrencyExceptio n.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/crm/DAOException.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/crm/company/Company.jav a
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/crm/company/CompanyDAO. java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/crm/employee/Employee.j ava
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/crm/employee/EmployeeDA O.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/dcd/product/Product.jav a
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/dcd/product/ProductServ ice.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/feed/Feed.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/marketdata/Feed.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/marketdata/Portfolio.ja va
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/marketdata/Stock.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/product/Product.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/product/ProductService. java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/qos/CustomDelayQueuePro cessor.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/qos/FlexClientConfigSer vice.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/runtimeconfig/ChatRoomS ervice.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/src/flex/samples/runtimeconfig/EmployeeR untimeRemotingDestination.java
        blazeds/branches/4.6_Apache/apps/samples/WEB-INF/web.xml
        blazeds/branches/4.6_Apache/apps/samples/build.xml
        blazeds/branches/4.6_Apache/apps/samples/fb-project-setup.htm
        blazeds/branches/4.6_Apache/apps/samples/index.htm
        blazeds/branches/4.6_Apache/apps/samples/main.css
        blazeds/branches/4.6_Apache/apps/samples/testdrive.htm
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/classes/commons-logging.propertie s
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex/messaging-config.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex/proxy-config.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex/remoting-config.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex/services-config.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-servlet.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/.actionScriptProper ties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/.flexProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/.settings/org.eclip se.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/html-template/histo ry/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/html-template/histo ry/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/html-template/histo ry/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/html-template/index .template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/html-template/swfob ject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/chat/src/chat.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/.actionScr iptProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/.flexPrope rties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/.settings/ org.eclipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/html-templ ate/history/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/html-templ ate/history/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/html-templ ate/history/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/html-templ ate/index.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/html-templ ate/swfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/src/Custom er.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/collaboration/src/collab oration.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/.actionScript Properties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/.flexProperti es
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/.settings/org .eclipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/html-template /history/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/html-template /history/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/html-template /history/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/html-template /index.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/html-template /swfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/src/BindableC omboBox.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/src/Company.a s
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/src/CompanyEv ent.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/src/CompanyFo rm.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/src/Industry. as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/companymgr/src/companymg r.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/.actionScrip tProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/.flexPropert ies
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/.settings/or g.eclipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/html-templat e/history/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/html-templat e/history/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/html-templat e/history/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/html-templat e/index.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/html-templat e/swfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/feedstarter/src/feedstar ter.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/.actionScriptPr operties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/.flexProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/.settings/org.e clipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/html-template/h istory/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/html-template/h istory/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/html-template/h istory/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/html-template/i ndex.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/html-template/s wfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync01/src/insync01.mx ml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/.actionScriptPr operties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/.flexProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/.settings/org.e clipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/html-template/h istory/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/html-template/h istory/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/html-template/h istory/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/html-template/i ndex.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/html-template/s wfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync02/src/insync02.mx ml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/.actionScriptPr operties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/.flexProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/.settings/org.e clipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/html-template/h istory/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/html-template/h istory/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/html-template/h istory/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/html-template/i ndex.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/html-template/s wfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/src/Contact.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/src/ContactForm .mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync03/src/insync03.mx ml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/.actionScriptPr operties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/.flexProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/.settings/org.e clipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/html-template/h istory/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/html-template/h istory/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/html-template/h istory/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/html-template/i ndex.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/html-template/s wfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/src/Contact.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/src/ContactForm .mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync04/src/insync04.mx ml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/.actionScriptPr operties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/.flexProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/.settings/org.e clipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/html-template/h istory/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/html-template/h istory/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/html-template/h istory/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/html-template/i ndex.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/html-template/s wfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/src/Contact.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/src/ContactForm .mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync05/src/insync05.mx ml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/.actionScriptPr operties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/.flexProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/.settings/org.e clipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/html-template/h istory/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/html-template/h istory/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/html-template/h istory/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/html-template/i ndex.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/html-template/s wfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/src/Contact.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/src/ContactEven t.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/src/ContactForm .mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/insync06/src/insync06.mx ml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/.actionScript Properties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/.flexProperti es
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/.settings/org .eclipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/html-template /history/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/html-template /history/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/html-template /history/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/html-template /index.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/html-template /swfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/simplepush/src/simplepus h.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/.acti onScriptProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/.flex Properties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/.proj ect
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/.sett ings/org.eclipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/build .xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/html- template/history/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/html- template/history/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/html- template/history/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/html- template/index.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/html- template/swfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/src/M ain.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/.actionScriptProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/.flexProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/.settings/org.eclipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/html-template/history/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/html-template/history/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/html-template/history/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/html-template/index.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/html-template/swfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security- 101/src/Main.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/.actionScr iptProperties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/.flexPrope rties
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/.settings/ org.eclipse.core.resources.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/html-templ ate/history/history.css
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/html-templ ate/history/history.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/html-templ ate/history/historyFrame.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/html-templ ate/index.template.html
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/html-templ ate/swfobject.js
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/src/Backgr oundColorRenderer.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/src/ColorR enderer.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/src/org/sp ringframework/flex/samples/marketfeed/Stock.as
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/flex-src/traderdesktop/src/trader desktop.mxml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/spring/app-config.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/spring/infrastructure-config.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/spring/security-config.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/src/spring-samples/.classpath
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/src/spring-samples/.project
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/src/spring-samples/.settings/org. eclipse.jdt.core.prefs
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/src/spring-samples/src/org/spring framework/flex/samples/secured/Security3Helper.java
        blazeds/branches/4.6_Apache/apps/samples-spring/WEB-INF/web.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/build.xml
        blazeds/branches/4.6_Apache/apps/samples-spring/index.html
        blazeds/branches/4.6_Apache/apps/samples-spring/login.jsp
        blazeds/branches/4.6_Apache/apps/samples-spring/main.css
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/flex/global.css
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/flex/messaging-config.xml
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/flex/proxy-config.xml
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/flex/remoting-config.xml
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/flex/services-config.xml
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/bootstrapservices/HTTPProxyBoo tstrapService.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/bootstrapservices/MessagingBoo tstrapService.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/bootstrapservices/RemotingBoot strapService.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/messaging/customadapter/Custom ActionscriptAdapter.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/messaging/serverpush/ServerPus hService.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/remoting/AMFConnectionTest.jav a
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/remoting/EchoService.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/remoting/externalizable/Extern alizableClass.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/runtimeconfig/RuntimeConfigura tor.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/validators/deserialization/Cla ssLoggingDeserializationValidator.java
        blazeds/branches/4.6_Apache/apps/team/WEB-INF/src/features/validators/deserialization/Tes tDeserializationValidator.java
        blazeds/branches/4.6_Apache/apps/team/build.xml
        blazeds/branches/4.6_Apache/apps/team/features/ajax/messaging/TextMessage.html
        blazeds/branches/4.6_Apache/apps/team/features/ajax/messaging/TextMessage.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/cluster/messaging_AMF_Poll_Clust er.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/cluster/messaging_HTTP_Poll_Clus ter.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/cluster/messaging_SecureAMF_Poll _Cluster.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/cluster/messaging_SecureHTTP_Pol l_Cluster.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/customadapter/messaging_CustomAd apter.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/discardedMessaging.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/jms/messaging_AMF_LongPoll_JMS_T opic.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/jms/messaging_AMF_Poll_JMS_Queue .mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/jms/messaging_AMF_Poll_JMS_Topic .mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/jms/messaging_HTTP_Poll_JMS_Queu e.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/jms/messaging_HTTP_Poll_JMS_Topi c.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_AMF.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_AMF_LongPoll.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_AMF_Piggyback.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_AMF_Poll.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_AMF_Stream.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_HTTP.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_HTTP_LongPoll.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_HTTP_Piggyback.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_HTTP_Poll.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/messaging_HTTP_Stream.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/multipleendpoints/messaging_AMFL ongPoll_and_SecureAMFLongPoll.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/multipleendpoints/messaging_Secu reAMFLongPoll_and_AMFStream.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/multipleendpoints/messaging_two_ AMFLongPoll_Endpoints.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/secure/messaging_SecureAMF.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/secure/messaging_SecureHTTP.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/selector/messaging_AMF_Poll_JMS_ Queue_Selector.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/selector/messaging_AMF_Poll_Sele ctor.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/selector/messaging_HTTP_Poll_Sel ector.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/sendsubscribeconstraint/messagin g_AMF_LongPoll_SendSubscribeConstraint.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/sendsubscribeconstraint/messagin g_AMF_Poll_SendSubscribeConstraint.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/sendsubscribeconstraint/messagin g_AMF_Stream_SendSubscribeConstraint.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/sendsubscribeconstraint/messagin g_HTTP_Poll_SendSubscribeConstraint.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/subtopic/messaging_AMF_Poll_Subt opic.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/subtopic/messaging_AMF_Stream_Mu ltiSubtopic.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/subtopic/messaging_HTTP_Poll_Sub topic.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/throttle/messaging_ThrottleInbou nd.mxml
        blazeds/branches/4.6_Apache/apps/team/features/messaging/throttle/messaging_ThrottleOutbo und.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/externalizable/ExternalizableClas s.as
        blazeds/branches/4.6_Apache/apps/team/features/remoting/externalizable/remoting_Externali zable.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/filteredAckRemoting.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/filteredFaultRemoting.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/remoting_AMF.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/remoting_AMFX.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/remoting_AMF_Dictionary.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/remoting_AMF_Legacy.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/remoting_AMF_ReadOnly.mxml
        blazeds/branches/4.6_Apache/apps/team/features/remoting/remoting_AMF_Vector.mxml
        blazeds/branches/4.6_Apache/apps/team/features/runtimeconfig/runtimeconfig_MessageDestina tion.mxml
        blazeds/branches/4.6_Apache/apps/team/features/runtimeconfig/runtimeconfig_MessageDestina tionWithJMS.mxml
        blazeds/branches/4.6_Apache/apps/team/features/security-constraints/securityConstraint_Ba sic.mxml
        blazeds/branches/4.6_Apache/apps/team/features/security-constraints/securityConstraint_Cu stom.mxml
        blazeds/branches/4.6_Apache/apps/team/features/security-constraints/securityConstraint_Le gacy.mxml
        blazeds/branches/4.6_Apache/apps/team/features/withoutui/messaging_withoutUI.as
        blazeds/branches/4.6_Apache/apps/team/features/withoutui/remoting_withoutUI.as
        blazeds/branches/4.6_Apache/build.properties
        blazeds/branches/4.6_Apache/build.xml
        blazeds/branches/4.6_Apache/collateral/blazeds-bin-readme.htm
        blazeds/branches/4.6_Apache/collateral/blazeds-src-readme.htm
        blazeds/branches/4.6_Apache/collateral/blazeds-turnkey-readme.htm
        blazeds/branches/4.6_Apache/development/IDEA/projects/java/BlazeDS.ipr
        blazeds/branches/4.6_Apache/development/IDEA/projects/java/blazeds.xml
        blazeds/branches/4.6_Apache/development/IDEA/projects/java/common.iml
        blazeds/branches/4.6_Apache/development/IDEA/projects/java/core.iml
        blazeds/branches/4.6_Apache/development/IDEA/projects/java/opt.iml
        blazeds/branches/4.6_Apache/development/IDEA/projects/java/proxy.iml
        blazeds/branches/4.6_Apache/development/IDEA/projects/java/remoting.iml
        blazeds/branches/4.6_Apache/development/eclipse/projects/flex/3.0/framework/.actionScript Properties
        blazeds/branches/4.6_Apache/development/eclipse/projects/flex/3.0/framework/.flexLibPrope rties
        blazeds/branches/4.6_Apache/development/eclipse/projects/flex/3.0/framework/.project
        blazeds/branches/4.6_Apache/development/eclipse/projects/flex/3.0/framework/.settings/org .eclipse.core.resources.prefs
        blazeds/branches/4.6_Apache/development/eclipse/projects/flex/3.0/rpc/.actionScriptProper ties
        blazeds/branches/4.6_Apache/development/eclipse/projects/flex/3.0/rpc/.flexLibProperties
        blazeds/branches/4.6_Apache/development/eclipse/projects/flex/3.0/rpc/.project
        blazeds/branches/4.6_Apache/development/eclipse/projects/flex/3.0/rpc/.settings/org.eclip se.core.resources.prefs
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-common/.classpath
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-common/.project
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-common/.settings/or g.eclipse.jdt.core.prefs
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-core/.classpath
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-core/.project
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-core/.settings/org. eclipse.jdt.core.prefs
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-opt/.classpath
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-opt/.settings/org.e clipse.jdt.core.prefs
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-proxy/.classpath
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-proxy/.project
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-proxy/.settings/org .eclipse.jdt.core.prefs
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-remoting/.classpath
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-remoting/.project
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-remoting/.settings/ org.eclipse.jdt.core.prefs
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-team.war/.actionScr iptProperties
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-team.war/.classpath
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-team.war/.flexPrope rties
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/blazeds-team.war/.project
        blazeds/branches/4.6_Apache/development/eclipse/projects/java/formatter.xml
        blazeds/branches/4.6_Apache/lib/commons-logging.properties
        blazeds/branches/4.6_Apache/modules/common/build.xml
        blazeds/branches/4.6_Apache/modules/common/src/flex/graphics/ImageSnapshot.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/graphics/package-info.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/LocalizedException.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/AbstractConfiguratio nParser.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/AdapterSettings.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ApacheXPathClientCon figurationParser.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ChannelSettings.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ClientConfiguration. java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ClientConfigurationP arser.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ClusterSettings.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ConfigMap.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ConfigurationConstan ts.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ConfigurationExcepti on.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ConfigurationFileRes olver.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ConfigurationParser. java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/DestinationSettings. java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/FlexClientSettings.j ava
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/LocalFileResolver.ja va
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/LoggingSettings.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/LoginCommandSettings .java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/PropertiesSettings.j ava
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/SecurityConstraint.j ava
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ServiceSettings.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ServicesConfiguratio n.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/ServicesDependencies .java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/TargetSettings.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/TokenReplacer.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/config/XPathClientConfigura tionParser.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/errors.properties
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/log/AbstractTarget.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/log/ConsoleTarget.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/log/LineFormattedTarget.jav a
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/log/Log.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/log/LogCategories.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/log/LogEvent.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/log/Logger.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/log/Target.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/BasicPrettyPrinter.jav a
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/ExceptionUtil.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/FileUtils.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/LocaleUtils.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/ObjectTrace.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/PrettyPrintable.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/PrettyPrinter.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/PropertyStringResource Loader.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/ResourceLoader.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/StringUtils.java
        blazeds/branches/4.6_Apache/modules/common/src/flex/messaging/util/UUIDUtils.java
        blazeds/branches/4.6_Apache/modules/core/AdobeInfo.xml
        blazeds/branches/4.6_Apache/modules/core/build.xml
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/BaseControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/BaseControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/MBeanLifecycleManager.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/MBeanServerLocator.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/MBeanServerLocatorFactory.ja va
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/Manageable.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/ManageableComponent.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/ManagementException.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/PlatformMBeanServerLocator.j ava
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/Attribute.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/MBeanAttributeInfo.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/MBeanConstructorInfo.jav a
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/MBeanInfo.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/MBeanOperationInfo.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/MBeanParameterInfo.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/MBeanServerGateway.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/ObjectInstance.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/ObjectName.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/jmx/package-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/package-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/AdminConsoleDisplayR egistrar.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/AdminConsoleDisplayR egistrarMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/AdminConsoleTypes.ja va
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/Destinatio nControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/Destinatio nControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/MessageBro kerControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/MessageBro kerControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/MessageDes tinationControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/MessageDes tinationControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/client/Fle xClientManagerControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/client/Fle xClientManagerControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/client/pac kage-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ AMFEndpointControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ AMFEndpointControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ EndpointControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ EndpointControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ HTTPEndpointControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ HTTPEndpointControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ PollingEndpointControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ PollingEndpointControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ StreamingAMFEndpointControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ StreamingAMFEndpointControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ StreamingEndpointControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ StreamingEndpointControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ StreamingHTTPEndpointControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ StreamingHTTPEndpointControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/endpoints/ package-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/log/LogCon trol.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/log/LogCon trolMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/log/LogMan ager.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/log/packag e-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/package-in fo.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/M essageServiceControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/M essageServiceControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/S erviceAdapterControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/S erviceAdapterControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/S erviceControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/S erviceControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/SubscriptionManagerControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/SubscriptionManagerControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/ThrottleManagerControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/ThrottleManagerControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/adapters/ActionScriptAdapterControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/adapters/ActionScriptAdapterControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/adapters/JMSAdapterControl.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/adapters/JMSAdapterControlMBean.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/adapters/package-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/m essaging/package-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/messaging/services/p ackage-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/management/runtime/package-info.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/AbstractConnectionAwareSessio n.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/AbstractFlexSessionProvider.j ava
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/ConnectionAwareSession.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/Destination.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/DestructibleFlexFactory.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FactoryDestination.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FactoryInstance.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexComponent.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexConfigurable.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexContext.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexFactory.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexRemoteCredentials.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexSession.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexSessionAttributeListener. java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexSessionBindingEvent.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexSessionBindingListener.ja va
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexSessionConnectivityEvent. java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexSessionConnectivityListen er.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexSessionListener.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/FlexSessionManager.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/HttpFlexSession.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/HttpFlexSessionProvider.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageBroker.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageBrokerServlet.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageClient.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageClientListener.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageDestination.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageException.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageRoutedEvent.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageRoutedListener.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/MessageRoutedNotifier.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/Server.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/ServiceValidationListener.jav a
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/VersionInfo.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/AsyncPollHandler.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/EndpointPushHandler.ja va
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/EndpointPushNotifier.j ava
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlexClient.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlexClientAttributeLis tener.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlexClientBindingEvent .java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlexClientBindingListe ner.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlexClientListener.jav a
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlexClientManager.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlexClientNotSubscribe dException.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlexClientOutboundQueu eProcessor.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/FlushResult.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/OutboundQueueThrottleM anager.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/PollFlushResult.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging/client/PollWaitListener.java
        blazeds/branches/4.6_Apache/modules/core/src/flex/messaging

    imho i don´t think FB4.5 had SVN installed - would be nice!
    I just updated my FB4.6 prerelease to the release version and installed subclipse 1.6 via "install new software"....seems to work!
    Did you uninstall FB before updating?

  • [svn:bz-trunk] 17029: Update all samples to remove target player version from calls to the mxmlc target .

    Revision: 17029
    Revision: 17029
    Author:   [email protected]
    Date:     2010-07-22 19:08:20 -0700 (Thu, 22 Jul 2010)
    Log Message:
    Update all samples to remove target player version from calls to the mxmlc target. Now we will just use the target player version from the flex-config.xml file. As this is used to locate playerglobal.swc, it's unlikely we would need this to be different than what is in flex-config.xml.
    Turn the ocx target for installing the player back on again and update it to use the new silent uninstall and install switches for the 10.1 player.
    checkintests: passed
    Modified Paths:
        blazeds/trunk/apps/samples/WEB-INF/flex-src/dashboard/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/inventory/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/runtimeconfig-messaging/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/runtimeconfig-remoting/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/testdrive-101/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/testdrive-chat/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/testdrive-datapush/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/testdrive-httpservice/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/testdrive-remoteobject/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/testdrive-update/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/testdrive-webservice/build.xml
        blazeds/trunk/apps/samples/WEB-INF/flex-src/traderdesktop/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/chat/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/collaboration/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/companymgr/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/feedstarter/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/insync01/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/insync02/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/insync03/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/insync04/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/insync05/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/insync06/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/simplepush/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-101/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/spring-blazeds-security-101/build.xml
        blazeds/trunk/apps/samples-spring/WEB-INF/flex-src/traderdesktop/build.xml
        blazeds/trunk/build.properties
        blazeds/trunk/build.xml
        blazeds/trunk/sampledb/flexdemodb/flexdemodb.properties
        blazeds/trunk/servers/apache-tomcat-6.0.14/conf/tomcat-users.xml

    Hi Chris,
    I tried removing and adding back the dialpeer 101 and adding .T to 501 but still the same result. Please help.
    Please see the following:
    SEC-HO-VGATEWAY01#show dial-peer voice summ        
    dial-peer hunt 1
                 AD                                    PRE PASS                OUT
    TAG    TYPE  MIN  OPER PREFIX    DEST-PATTERN      FER THRU SESS-TARGET    STAT PORT    KEEPALIVE
    501    voip  up   up                                0  syst                    
    1001   voip  up   up             5...               1  syst ipv4:10.13.14.21   
    1002   voip  up   up             1...$              1  syst ipv4:10.13.14.21   
    103    voip  up   up             911$               1  syst dns:toronto2.voip.ms
    102    voip  up   up             1[2-9]..[2-9]...-  1  syst dns:toronto2.voip.ms
                                     ...$
    101    voip  up   up             [2-9]..[2-9]....-  1  syst dns:toronto2.voip.ms
                                     ..$
    SEC-HO-VGATEWAY01#show run | sec dial-peer voice 501
    dial-peer voice 501 voip
    incoming called-number .T
    voice-class sip bind control source-interface Loopback0
    voice-class sip bind media source-interface Loopback0
    dtmf-relay rtp-nte
    codec g711ulaw
    no vad

  • BlazeDS amf-polling on secure channel

    I tried using blazeDS amf-polling via https, and it doesnt work. amf (remote object) works through securechannel, but amf-polling does not. Is there a way to make amf-polling work on https?

    Hi,
    Here's my scenario.
    On click of a button, I'm making a remote call (secure-amf) which gives me a status code[the secure-amf works as expected]
    based on this status code, I'm polling to get a value. The polling happens at the secure channel.
    The polling however doesn't happen. I see the error "(ERROR_INTERNET_UNABLE_TO_CACHE_FILE)" in IEWatch.
    I can see that there are no logs from the polling class. Any help on this would be appreciated.
    Here's my code;
    consumer = new Consumer();
    producer = new Producer();
    url = ExternalInterface.call("window.location.href.toString");
    isSecure = URLUtil.isHttpsURL(url);
    var channelSet:ChannelSet = null;
    if(isSecure)
         channelSet = new ChannelSet();
         channelSet = new ChannelSet();
         var httpsChannel: SecureAMFChannel= new SecureAMFChannel("secure-amf-poll", hostUrl + "/" +         getContextRoot(applicationUrl) + "/messagebroker/amfsecurepoll" );
         httpsChannel.pollingEnabled = true;
         httpsChannel.pollingInterval = 1000;
         channelSet.addChannel(httpsChannel);
    consumer.channelSet = channelSet;
    producer.channelSet = channelSet;
    consumer.destination = "myDestination"
    producer.destination = "myDestination";
    consumer.addEventListener(MessageEvent.MESSAGE, messageHandler);
    consumer.addEventListener(MessageFaultEvent.FAULT, faultHandler);
    consumer.subscribe();
    in messaging-config.xml I've the following entries;
    <adapters>
            <adapter-definition id="ReportExecutionStatusAdapter" class="com.xyz.parameterservice.adapter.impl.FlexMessagingAdapter"/>
    </adapters>
    <destination id="myDestination">
    <adapter ref="ReportExecutionStatusAdapter"/>
    <properties>
    <server>
    <message-time-to-live>0</message-time-to-live>
               </server>
           </properties>
    <channels>
                <channel ref="secure-amf-poll"/>
                <channel ref="my-amf-poll"/>           
    </channels>
    </destination>
    Any help is greatly appreciated.
    Thanks
    Abdul

  • BlazeDS: Having issues in secured WebSphere 6.0 environment

    I have a BlazeDS package that I verified works in Tomcat, WebSphere and over SSL.  When I deploy to our target, secured environment (WebSphere 6, Tivoli Access Manager, ...), it blows up with the following error:<br /><br />[9/11/08 17:55:17:004 GMT+00:00] 0000002f ServletWrappe E   SRVE0014E: Uncaught service() exception root cause MessageBrokerServlet: Response already committed.<br />[9/11/08 17:55:17:036 GMT+00:00] 0000002f LocalTranCoor E   WLTC0017E: Resources rolled back due to setRollbackOnly() being called.<br />[9/11/08 17:55:17:053 GMT+00:00] 0000002f WebApp        E   SRVE0026E: [Servlet Error]-[MessageBrokerServlet]: java.lang.IllegalStateException: Response already committed.<br />     at com.ibm.ws.webcontainer.webapp.WebAppDispatcherContext.sendError(WebAppDispatcherContext. java:574)<br />     at com.ibm.ws.webcontainer.srt.SRTServletResponse.sendError(SRTServletResponse.java:868)<br />     at com.ibm.ws.webcontainer.srt.SRTServletResponse.sendError(SRTServletResponse.java:851)<br />     at flex.messaging.MessageBrokerServlet.service(MessageBrokerServlet.java:393)<br /><br />Looking at line 393 in MessageBrokerServlet, it is trying to send an error back as follows res.sendError(HttpServletResponse.SC_FORBIDDEN);.  This is part of an else block that is called only if endpoint is null.<br /><br />Very odd as the exact same code package with the same endpoint and channel definition works in the other environments I mentioned.  The only difference is this environment is secured via SSL (which I tried locally without a problem) and Tivoli Access Manager.  Since the request is getting to the logs, it doesn't appear to be a Tivoli issue as if anything was wrong with the request, it would never get to the server.<br /><br />That leaves WebSphere?  Below are the pertinent definitions from my Java service.  Any help is greatly appreciated.<br /><br />service-config.xml<br /><br />     <channels><br />          <channel-definition id="comment-amf"<br />               class="mx.messaging.channels.SecureAMFChannel"><br />               <endpoint<br />                    url="https://<url-removed-from-post>/amvcmnt/comment-service/messag ebroker/amfsecure"<br />                    class="flex.messaging.endpoints.SecureAMFEndpoint" /><br />               <properties><br />                    <polling-enabled>false</polling-enabled><br />                <!--HTTPS requests on some browsers do not work when pragma "no-cache" are set--><br />                <add-no-cache-headers>false</add-no-cache-headers><br />                <!-- Optional. Use this to limit the client channel's connect attempt<br />                     to the specified time interval.<br />                <connect-timeout-seconds>5</connect-timeout-seconds><br />                -->           <br />                <!--  removes headers from request if true --><br />                    <serialization><br />                         <enable-small-messages>false</enable-small-messages><br />                    </serialization><br />               </properties><br />          </channel-definition>     <br />     </channels><br /><br />remote-config.xml<br /><br />     <adapters><br />          <adapter-definition id="java-object"<br />     class="flex.messaging.services.remoting.adapters.JavaAdapter"<br />               default="true" /><br />     </adapters><br />     <default-channels><br />          <channel ref="comment-amf" /><br />     </default-channels><br />     <destination id="CommentService"><br />          <properties><br />               <factory>spring</factory><br />               <source>commentService</source>          <br />          </properties><br />     </destination><br />     <br />     <destination id="SecuredCommentService"><br />          <properties><br />               <factory>spring</factory><br />               <source>securedCommentService</source>          <br />          </properties><br />     </destination><br />     <destination id="EntitlementService"><br />          <properties><br />               <factory>spring</factory><br />               <source>entitlementService</source>          <br />          </properties><br />     </destination>

    Hi,
    I am facing exactly same issue. my application works fine on local and dev. however, when i deploy it on QA where TAM and clustering is in picture it throws connection failed error. Can you please help me on how to solve this issue.
    Regards,
    Sachin Patil.
    [email protected]

  • BlazeDS FlexContext FlexClient ID Security

    I need to find out if the identifier returned by the function call FlexContext.getFlexClient().getId(); is a secure identifier, as I understand it, each Flash/Flex Client (Player) is assigned the Client ID upon first connection (tested this from the same browser in different tabs and a different Client ID is give to each player).
    I have also been told that this Client ID may or may not be directly related to the IP Address and the MAC Address of the pc that originally connected to the server.
    The use case for this is the following...
    The User enters login details into a login form.
    Those login details are passed through a SecureAMF Channel (over https) to the BlazeDS server.
    The details are verified against the database, and upon successful authentication, is assigned a session token.
    The session token is not delivered back to the flex client, but instead if held server side.
    What we then do is upon receiving any function calls from the flex client, we get the FlexContext.getFlexClient().getId(); unique client id, and lookup this identifier to see if there is a session token associated with it, if there is than the server knows that the user is authenticated, after that the server does permission checks to see if the user has access rights to use that particular function call.
    Now this whole process only works if the Client ID is absolutely secure that there is no way possible to spoof or steal the ID in anyway and use that from another flex client.  Unfortionetly, I have not had any success whatsoever searching the internet to obtain any information related to the client id and how its generated.
    The other alternative, which is a slightly unappealing alternative, would be to pass the session token from the flex client to the BlazeDS server, on every remoteObject function call.  Although I believe its possible to store the session token in the FlexContext itself, but again there is no documentation on the security of these solutions.
    If anyone has any knowledge at all about this I would be very grateful.
    Is the Client ID delivered to the Flex Client (Flash Player or Air App) through a secure HTTPS or encrypted channel so that no one can possibly steal the id?

    Well this certainly makes things difficult, is there no one out their at all that can tell me if the ClientID is secure?

  • Blazeds + Spring security: fetch data based on current user

    Hi,
    I'm currently learning flex by trying to build an application with
    flex, blazeds and Spring. My application lets users log on using
    spring security (which I will probably combine with
    AcegiLogonCommand). I would like my assemblers to return different
    data based on which user is currently logged on (for instance to show
    that specific user's to-do list). To do this, I added a userId
    property to my spring security principals (by subclassing
    org.springframework.security.userdetails.User)
    and added user_id columns to user-specific data in the database. Now
    I would like to know how I can get the currently logged on user in my
    assembler so I can use its userId to fetch the user's data.
    Is the assembler the right place to decide which data to send to my
    flex application? If so, can anyone tell me how to determine which
    user is currently logged on in my assembler? If not, what would be the
    recommended way of dealing with user-specific data in my database in
    combination with blazeds?
    The only examples I have been able to find on the Internet so far only
    use different roles to determine what a user is or is not allowed to
    do, I have yet to find any examples where users store and retrieve
    user-specific data.
    Kind regards,
    Jeroen

    Hi,
    There is a field “Target Audience” in list whenever “Target Audience” is enable in “List Settings”, it accepts the name of a SharePoint group.
    For your requirement, you will need to get the name of the group which the current user belongs to. Then perform a query in a specific list to get all the items that
    contains the specific value in “Target Audience” field.
    Here is a code snippet about how to set Target Audience for an item, there are code lines about
    how to get the value of a “Target Audience” field:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/a3ac41d8-42e9-4ec7-999f-036c4b06d3e2/programatically-set-target-audience-in-list-item
    A method about checking whether the current user is a member of the specified group:
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.iscurrentusermemberofgroup.aspx
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • [svn:bz-trunk] 5137: Fix failing security tests on BlazeDS/ trunk by using a remote object to invalidate the FlexSession at the end of each test method which should cause each test method to run with a new /clean session.

    Revision: 5137
    Author: [email protected]
    Date: 2009-03-02 10:28:59 -0800 (Mon, 02 Mar 2009)
    Log Message:
    Fix failing security tests on BlazeDS/trunk by using a remote object to invalidate the FlexSession at the end of each test method which should cause each test method to run with a new/clean session. It looks like some test methods were leaving some things in a bad state which was causing the next test that ran to fail. These may be legitimate bugs/issues so we should investigate further to see what sequence of events gets things into a bad state but for these tests we want all of the test methods to run in isolation.
    Modified Paths:
    blazeds/trunk/qa/apps/qa-manual/WEB-INF/flex/services-config.mods.xml
    blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/remoting-config.mods.xml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/security/stream ing-amf/JMSAuthSendSubscribeConstraintTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/security/stream ing-amf/MessagingAuthProSendTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/security/stream ing-http/JMSAuthSendSubscribeConstraintTest.mxml
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/security/stream ing-http/MessagingAuthProSendTest.mxml
    Added Paths:
    blazeds/trunk/qa/apps/qa-regress/WEB-INF/src/qa/messaging/SessionManager.java

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • [svn:bz-3.x] 5036: Bug: BLZ-347 - Secure amf polling channel not working correctly on IE in BlazeDS /3.x branch.

    Revision: 5036
    Author: [email protected]
    Date: 2009-02-23 06:24:31 -0800 (Mon, 23 Feb 2009)
    Log Message:
    Bug: BLZ-347 - Secure amf polling channel not working correctly on IE in BlazeDS/3.x branch.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This is BlazeDS part of the fix. For MSIE over HTTPS, we need to add additional Cache-Control headers.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-347
    Modified Paths:
    blazeds/branches/3.x/modules/core/src/java/flex/messaging/endpoints/AbstractEndpoint.java

    Revision: 5036
    Author: [email protected]
    Date: 2009-02-23 06:24:31 -0800 (Mon, 23 Feb 2009)
    Log Message:
    Bug: BLZ-347 - Secure amf polling channel not working correctly on IE in BlazeDS/3.x branch.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This is BlazeDS part of the fix. For MSIE over HTTPS, we need to add additional Cache-Control headers.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-347
    Modified Paths:
    blazeds/branches/3.x/modules/core/src/java/flex/messaging/endpoints/AbstractEndpoint.java

  • How to upload a file in a secure manner.

    I've seen the Flex help examples on uploading files, but what if I have files that are confidential to the client, and I want them uploaded in the most secure manner possible.
    I'm new to security in Flex and on the web, so please understand that as you form your description.
    Should I use https? Should I use ssl? Will a certificate be involved?
    Any links to code examples showing how it is done?
    Using what you recommend, how secure will the transfer be? Can anyone hack it?

    Always a good idea to talk to security experts so that can't hurt.  My memory is pretty fuzzy since I was doing this so long ago but I'm pretty sure you can do this w/BlazeDS in addition to LCDS.
    Using the 'default' services-config.xml-
            <!-- Secure Servlet-based endpoints -->
            <channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel">
                <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/>
                <properties>
                    <!--HTTPS requests on some browsers do not work when pragma "no-cache" are set-->
                    <add-no-cache-headers>false</add-no-cache-headers>
                </properties>
            </channel-definition>
    Tell remoting-config.xml to use the secure channel instead of the regular amf channel-
        <default-channels>
            <channel ref="my-secure-amf"/> <!-- instead of my-amf  -->
        </default-channels>
    Sorry that link was a poor one, was just a quick google.  This might be a slightly better starting point:
    http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=services_security_2 .html

Maybe you are looking for

  • Copy and Paste using Adobe Flex3

    I am trying to copy the images from Adobe Flex 3 application and paste it in the Microsoft Word or PowerPoint. I couldn't find any examples online. I am not sure whether I could do this using Adobe Flex3. I know this is possible with Adobe AIR. Could

  • Output_options in SF; selecting output device

    Hi all, i've been struggling with the following, maybe anyone can help? In a smartforms i want to, dynamically determine the printer for output. Whatever i do, i cant get it to work. I have set 'print directly' OFF so i can catch the printjobs in the

  • What is the relation between G/L account and Chart of Accounts

    Hello Guru's,                    Can you please tell me what is the relation between chart of accounts and G/L accounts. I know there was a list or range of account numbers in chart of accounts.   Assets 100000 - 149999                 current assets

  • Itunes keeps accessing Itunes Store

    Basically, every time i go on itunes, my song or the store, i get this window popping up and telling me: Accessing Itunes Store. Sometimes it pops-up every time i click in or on the window, sometimes it's every time y try to type more than one charac

  • What are the largest sized memory cards that can be swapped into a macmini 2.6GHz i7 quadcore

    What are the largest sized replacement memory cards that can be used in a new macmini 2.6MHz i7 quad core? I see samsung has some 16GB cards and was wondering if the macmini can be jacked up to 32GB instead of the apple store configuration of 2x8GB o