Search the web
Sign In
New User? Sign Up
javaflexcoders · A Place for Developers using Java & Flex
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 163 - 196 of 774   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
163
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...
Shawn Castrianni
scastria
Offline Send Email
Jul 5, 2007
5:52 pm
164
Nevermind, I found it in the documentation: var serverName:String = URLUtil.getServerNameWithPort(Application.application.url); ... Shawn Castrianni Landmark ...
Shawn Castrianni
scastria
Offline Send Email
Jul 5, 2007
6:26 pm
165
Is there any equivalent or effective pattern to provide the functionality of Java de-serialization readResolve() method? readResolve() allows for designating a...
moonusamy
Offline Send Email
Jul 6, 2007
1:11 am
166
NevermindRelated to this, how do we obtain the HTTP parameters ? ... From: Shawn Castrianni To: javaflexcoders@yahoogroups.com Sent: Friday, July 06, 2007 2:24...
Christian Chua
christianchua
Offline Send Email
Jul 6, 2007
1:44 am
167
Like the query string parameters? http://livedocs.adobe.com/flex/201/langref/mx/core/Application.html#parameters -James...
James Ward
jlward4th
Offline Send Email
Jul 6, 2007
2:30 am
168
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",...
Christian Chua
christianchua
Offline Send Email
Jul 6, 2007
10:07 am
169
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...
James Ward
jlward4th
Offline Send Email
Jul 6, 2007
1:20 pm
170
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...
ibo
poweribo
Online Now Send Email
Jul 6, 2007
5:40 pm
174
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...
thyaga
Offline Send Email
Jul 10, 2007
8:31 pm
175
Please post all job related stuff to the flexjobs list. This group is for technical questions. Thanks. -James From: javaflexcoders@yahoogroups.com ...
James Ward
jlward4th
Offline Send Email
Jul 11, 2007
2:06 am
176
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...
Allan Lim
allan_s_lim
Online Now Send Email
Jul 14, 2007
2:36 am
177
What URL did you use to load the SWF?...
Peter Farland
pjfarland
Offline Send Email
Jul 14, 2007
8:58 pm
178
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...
Allan Lim
allan_s_lim
Online Now Send Email
Jul 15, 2007
12:03 am
179
Can you use firebug or wireshark to see if the http request and response are what you expect? -James ... From: javaflexcoders@yahoogroups.com...
James Ward
jlward4th
Offline Send Email
Jul 16, 2007
11:32 am
180
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 ...
moonusamy
Offline Send Email
Jul 16, 2007
6:14 pm
181
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...
Peter Farland
pjfarland
Offline Send Email
Jul 16, 2007
6:37 pm
182
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 Lim
allan_s_lim
Online Now Send Email
Jul 18, 2007
5:12 am
183
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...
Peter Farland
pjfarland
Offline Send Email
Jul 18, 2007
3:48 pm
184
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...
Allan Lim
allan_s_lim
Online Now Send Email
Jul 19, 2007
3:04 pm
185
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...
Muhammad Furqan
muhammad.furqan
Offline Send Email
Jul 20, 2007
12:33 pm
186
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...
Peter Farland
pjfarland
Offline Send Email
Jul 20, 2007
1:21 pm
187
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...
Peter Farland
pjfarland
Offline Send Email
Jul 20, 2007
1:47 pm
188
This should work without any problems. Did you figure this out? -James From: javaflexcoders@yahoogroups.com [mailto:javaflexcoders@yahoogroups.com] On Behalf...
James Ward
jlward4th
Offline Send Email
Jul 20, 2007
11:27 pm
189
try this model.message = new Message(event.message.body); Peter Farland <pfarland@...> wrote: Oops, sent too soon. That is, that is just one particular...
ibo
poweribo
Online Now Send Email
Jul 21, 2007
9:01 am
190
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...
ibo
poweribo
Online Now Send Email
Jul 21, 2007
9:07 am
191
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...
Christian Chua
christianchua
Offline Send Email
Jul 21, 2007
3:29 pm
192
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 Dickamore
nathan_dicka...
Offline Send Email
Jul 21, 2007
7:22 pm
193
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...
Christian Chua
christianchua
Offline Send Email
Jul 22, 2007
2:04 am
194
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...
James Ward
jlward4th
Offline Send Email
Jul 22, 2007
4:44 pm
196
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...
Zuhair Hasan
hasanzuhair
Offline Send Email
Jul 27, 2007
3:27 pm
Messages 163 - 196 of 774   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help