Embedding the flex SWF into a program as a resource is one thing, creating a network aware client that is not based in a browser that downloads the flex SWF...
The nature of Remoting does limit the benifits of frameworks for the backend. Let me restate this. It doesn't warrant anything fancy for the actual Remote...
Try, var viewImages:Array = new Array(); [Embed(source="/assets/lock.png")] var lockImage:String; viewImages[ "lockImage" ] = lockImage; Renaun...
Hi, Here's the RO result using the NetConnection Debugger. I have a function that can always read the first array element, but the others aren't readable....
Dont name your internal variable result: var result:Array = result[0]; Name it something else like myResult: var myResult:Array = result[0]; From: "coldfs"...
Embedding the flex SWF into a program as a resource is one thing, creating a network aware client that is not based in a browser that downloads the flex SWF...
You only asked 3 hours ago, have patience :-) I believe what you've proposed falls within the license but you can talk to a sales rep for further...
20808
Michel Bertrand
michel.bertrand@...
Aug 31, 2005 7:47 pm
Hello ! I would like to use reflection, As2lib Reflection API, over published RemoteObjects, <mx:RemoteObject/>, is there any way to do that ? Can I manipulate...
20809
Mehdi, Agha
Agha.Mehdi@...
Aug 31, 2005 8:25 pm
Hi All, I have to modify tree control so that child nodes are DataGrids. The reason I need it to be like this is so that I can expand all of the nodes and have...
I have a simple distributed architecture with an outward facing IIS 6 web server running a secured ASP.NET application. Part of that application is a custom...
I need to iterate through a collection of polymorphic objects and build a form dynamically. Depending on the current type of object, I need to output 1, 2, or...
My thoughts: This is a good time to air this publically, do's and don'ts and then we can put it in the Flexcoders FAQ? Questions would be: 1) What defines an...
Hi, Thanks for the reply. You must be a very experienced programmer because you just looked at the suggestion and found the problem it will create two steps...
For anyone who cares, the solution is to declare a "Valve" element in the ...\conf92;server.xml file within the <Engine name="Catalina" ..> tag like these...
Whether it is a reserved word or not had nothing to do with why it didn't work in this particular instance. It didn't work because the same variable name was...
Ahhh...That makes more sense...Thanks!! ... From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]On Behalf Of Kelly Sent: Wednesday, August 31,...
Take a look at RemoteHostValve and the RemoteAddrValve in the Tomcat docs. They'll give you what you want. You should be able to do something like this in...
Short answer: No. Long answer: You have to realize that JSTL tags logically give you dynamic template text but physically ALL of the text in the JSP page is...
Robert, I am not also sure that this problem is because of browser restriction. But you can try your application in Firefox by changing maxhttprequest limit. ...
Oops, bug in the doc. setEndPointURI should really be setEndpointURI (lower-case 'p'). I posted to livedocs. Matt ________________________________ From:...
WebService will really be a reference to mx.servicetags.Service but you should be able to use it to make calls. Matt ________________________________ From:...
The Xms and Xmx JVM parameters set the default memory settings. By default Sun's JVM is set to 64Mb which is not high enough for most server applications. I...
While this will work - why does the intermediate string is needed here, or why can't the compiler just put the string into the array on the first place? ... ...