I have been playing with utilizing MXMLApplicationContext in 1.1 to solve the typical class inclusion issues, but am seeing some unexpected behavior on anonymous Objects. If the <Object...
Type: Posts; User: incursion_matt; Keyword(s):
I have been playing with utilizing MXMLApplicationContext in 1.1 to solve the typical class inclusion issues, but am seeing some unexpected behavior on anonymous Objects. If the <Object...
Same problem. When I first implemented this, it did resolve the entire object graph. I ended up preventing this with a custom annotation and some BeanUtils traversal.
My aim was to remove the...
I am running with 1.0RC1 and the Flex 4 release build without issue. I am using JetBrains as my IDE, so I cannot confirm Flash Builder 4.
It's probably not the cast that solved it, but rather the inclusion of the class due to the cast. If there are no direct references to the class then the AS compiler will exclude the class from...
You can store the request in a ThreadLocal in a mapped servlet filter, then retrieve it from wherever you need it, including the service class.
You need to add an Event Listener on the call, and then issue the Alert in the event handler :
See http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_4.html
If you have Flex clients using Producers, you can also use a custom MessageAdapter.
<bean id="queryMessageAdapter"
class="FlexDatasourceAdapter">
<property...
Second that!!
Checkout http://forum.springsource.org/showthread.php?t=86093
I am using a custom Exception. I have an Interceptor that checks the session, if it has timed out, throw the custom exception, which typically will include a redirect url and then have the player...
Check out my response to http://forum.springsource.org/showthread.php?t=85988
I use an Interceptor and traverse the objects returned with original implementations and remove all the proxies on the...
Looks like you are htting a Hibernate proxy. When this happens, the Flash Player cannot resolve the java class returned to any of your AS types tagged with RemoteClass. The class will still be...
I had run up against this same scenario a number of times. I explored a number of solutions and eventually went with the session per request pattern for hibernate,...
After moving to spring-blazeDS integration, I lost BlazeDS debug logs using the included ServletLogTarget. I was consistently seeing the following message in the console messages :
**** No...