I have a C# web service which currently communicates with a Flex app using XML. It's not streaming data or anything, but still I'd like to lower the overhead involved. I have two questions:
1) would I see any benefit from using a technology like FluorineFX or WebORB in terms of reducing load on the server? The Flex clients won't perc...
We have found the combination of ASP.Net as a server backend and Adobe Flash for the User Interface to be an excellent marriage.
Up until now we have used Javascript as the communication conduit between the two technologies. This has worked well, however we want to be able to pass objects back and forth rather than just string variables...
I have an ASP.NET application that uses the Fluorine FX remoting library. When the web application initializes, it kicks off a socket server on a separate port for handling RTMP connections.
The problem we're having is that when IIS is restarted, the RTMP service won't start running until the first HTTP request is made against one of th...
I'm trying to create a very simple chat application in Flex/.Net using FluorineFX but can't get it to work.
<mx:VBox
width="100%"
height="100%"
xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style source="../../../Monkeywrench.css"/>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
import mx.rpc.events.FaultEvent;
impor...
Hello everyone,
I'm building a multiplayer game using Flash/Flex for the client and FluorineFX (just like FCS/FMS except it is written in .NET) on the server-side. My questions are regarding the use and performance of shared objects over RTMP protocol.
Essentially, I'm planning on having quite a few objects on screen simultaneously, ea...
Hi:
I created a console application that it should run every hour in order to push updates to a different server using FluorineFx for C# client (NetConnection). It works great, but only when I have Charles open and so I can see what is being sent. On the other hand, if Charles is closed, it does not send the data. I am running this on ...
Hello Everyone,
I want to convert FluorineFx.AMF3.ArrayCollection to DataTable,anyone know how to do that?
...
Has anyone ever set up error emailing with Fluorinefx?
Update: Found the answer with the SmtpAppender in log4net
...
I have next command to run from my AIR application:
chp.exe cmd /d /c ""process.bat" "params.tmp" > "log.tmp" 2>&1 && echo 0 > status.tmp" || echo 1 > "status.tmp""
It creates background invisible process and logs output and exit status of the process.bat to the log.tmp
and status.tmp.
chp.exe is a "Create Hidden Process" program (...
Hi All,
I'm trying to create a .NET consumer client that will connect to a FluorineFx RTMP Service.
It was very easy to create a Flex consumer client and I wish to create the same in .NET
(In other words how to connect a MessageAdapter to MessageAdapter?)
Many Thanks,
Dudi
...
We have a FluorineFx / ASP.Net application which uses forms authentication to identify the current user. To use these credentials in FluorineFx, we use FluorineContext.Current.User.Identity. When I log in the first time, the current context neatly reflects the right identity.
When I log out, I perform a FormsAuthentication.SignOut() an...
I just got hammered on a Security Audit by Deloitte on behalf of SFDC. Basically we use flex and communicate via AMF. We use FluorineFX for this (as opposed to LCDS and Blaze). We are being told that because the AMF response is not encoded and that someone can manipulate the AMF parameters and insert Javascript that this is a XSS vulnera...
I've found a workaround, but I had trouble earlier this week working with FluorineFx, where I had a Linq-to-SQL–generated object I wanted to send over the wire to Flash. This object contained a property that Flash didn't need:
[Association(Name="User_UserEntry", Storage="_UserEntries",
ThisKey="UserID", OtherKey="UserID")]
...
I am receiving AMF3 serialized objects via a socket connection, thus I have byte arrays of these objects.
What is the officially designated way to deserialize these byte arrays to an ASObject or dictionary with FluorineFX?
The most promising of my tries
MemoryStream ms = new MemoryStream(data, 0, recv);
AMFReader input = new AMFReader...
Hi,
Is there a way in fluorine to force a nullable double to be passed to flex as NaN? (and vice versa)
By default these values are passed as null, but a Number in actionscript is not nullable, so it is converted to 0 by default.
I need server side nullable doubles to be NaN in flex, and NaN values from flex to be nullable doubles on t...
I can't figure out how to publish an audio stream from a client to the server using FluorineFx on the client. We want to stream recorded audio data from the client to the stream via the already established NetConnection. There is a NetStream class in FluorineFx but it has no publish method. The NetStream class in FluorineFx only has the ...
I just switched from Classic Mode to Integrated Mode and now HttpContext doesn't seem to exist in my ASP.NET application. I can't even add a Watch to HttpContext nor to HttpContext.Current.
I'm using FluorineFX where in the Web.config a HttpModule is defined. Apparently, in IIS7 Integrated Mode, these HttpModules need to be added to the...
Like in the title:
We're implementing a c# application, which communicates with some flash clients. We're using flurinefx.
There are some events like (appConnect, appDisconnect), which are fired when a flash client connects to Gateway.
Is there any way to simulate flash clients connecting to gateway?
...