I deploy a swf file and a war file to my Tomcat server. The swf file is my Flex application and my war file is the HTTPService to be used by my Flex...
Nevermind, I found it in the documentation: var serverName:String = URLUtil.getServerNameWithPort(Application.application.url); ... Shawn Castrianni Landmark ...
Is there any equivalent or effective pattern to provide the functionality of Java de-serialization readResolve() method? readResolve() allows for designating a...
NevermindRelated to this, how do we obtain the HTTP parameters ? ... From: Shawn Castrianni To: javaflexcoders@yahoogroups.com Sent: Friday, July 06, 2007 2:24...
It seems to be looking at flashVars instead of at the actual query string: AC_FL_RunContent( "src", "TT3-debug", "width", "100%", "height", "100%", "align",...
Whoops... Yeah. I think in the past I copied the query string to the flashvars at page construction time to make it work that way. I think you might have to...
Is it possible to create a plugin for the FDS service that routes the RemoteObject methods calls from Flex client to Java backend? Can you guys point me where...
The client is a well funded and fast growing technology start-up. The company is located in Needham, MA just off Rt-128/I-95. The client is looking for...
Hi Guys, I am testing out the <mx:HttpService> by connecting to a server I made that spits out XML. The server only accepts POST method. I have to post an XML...
Hi Peter, How you doing? I just ran it directly from FLEX Builder. The scenario is, I have a tomcat having one servlet that renders the xml, and then i use...
Is there a way to serialize a java.util.Map that has non-String keys with FDS Remoting? I can get the serialization of MapS to ActionScript untyped ObjectS ...
You'd need to use flash.utils.IExternalizable/java.io.Externalizable to do this... java.util.Map is always mapped to an untyped AS Object, and thus the keys...
Hi James, I figured it out! Thanks for the advice, btw. I used Paros (http proxy ) and was able to verify that its not sending the right xml data. So what I...
Allan, I actually prefer using AS3 to MXML in general, but I'm not sure why <mx:request> didn't work for you? I tried your same example syntax and the POST'ed...
Hi Peter, I am using FLEX 2.0.1 SDK (Dec 2006). I'm probably using the outdated one. Another thing about using XML object also, is that it doesn't interpolate...
Hi, I am developing a flex application based on cairngorm microarchitecture. I am unable to cast the Value Object from results obtaining after making a remote...
Is it possible that you don't have a dependency on the particular ValueObject type in your code and thus it's not linked into the SWF at compile time? You can...
Oops, sent too soon. That is, that is just one particular way. Another way would be to include the type in a method signature, casting statement or any...
This should work without any problems. Did you figure this out? -James From: javaflexcoders@yahoogroups.com [mailto:javaflexcoders@yahoogroups.com] On Behalf...
try this model.message = new Message(event.message.body); Peter Farland <pfarland@...> wrote: Oops, sent too soon. That is, that is just one particular...
Anyone tried loading a local xml file (e4x) using httpservice with flex? it works perfectly but if I convert it to the Cairngorm convention by placing it on...
James, Please try this site: http://flexfm.castlesblog.com/ I found this by googling "Flex file manager" Me and someone else on the list have the same...
I have been successful in getting this to work. I currently have a Flex 2 application communicating with a Servlet deployed on Tomcat on a Redhat Linux box. I...
Nathan, Thanks for your input. However, I don't think I made myself clear enough: - the problem is on the Linux Flash plug-in. - this has nothing to do with...
Strangely file upload works fine for me in that application on Gentoo Linux. Perhaps you are missing a dependency needed by Flash Player 9. You can run ldd on...
Hi, I want to do modular development in Flex 2, i got two way to achive this one is my making, 1. module mxml file 2. and by assigning createpolicy but, in...