Re: [Flashcoders] flash and ASP.NET (ryanm)

2005-12-13 Thread ryanm
Interesting approach, Ryan. So, the big advantage here is cost (free!) 
with

the big disadvantage being that we're limited to string data types on the
return. Thanks for sharing.

   The other way is to use the XML object. You can put all of your return 
data in XML and compress it. XML is extremely redundant, so it compresses 
very small, and the decompression is handled by the browser automatically. 
With some creative use of the byte array you could probably still pass 
binary data (this will be a great help with images stored in a database). I 
also regularly use bitmasks in XML, you just have to convert them to numbers 
before using them. Serialization isn't a big deal, you just write a 
recursive function that serializes/deserializes your objects as XML and use 
it in your gateway class. Remoting is a convenience, from my perspcective, 
and not all clients can afford to pay for conveniences.


   In my opinion, remoting often allows the developer be lazy when they 
shouldn't be. I'm not saying that remoting is bad, it just lets you spend 
less time thinking about the transport layer, which is often a good thing, 
but it can let you be lazy when you should be putting more effort into an 
efficient transport layer. Rather than passing whole objects back and forth 
simply because you can, it is often more efficient to figure out how to pass 
the smallest amount of information in the simplest form, and then it comes 
down to building a well thought out transport layer. Some apps benefit 
greatly from remoting, but usually those are apps that depend on real-time 
data updates, and not your usual DB read/write apps.


   If you don't need real-time updates, why spend the resources on it? If 
you don't need a response from a save to database request to move on, why 
not just send it off asynch and let a background listener worry about 
whether it saved correctly or not? In fact, if you don't need to know your 
data was saved to move on, why not queue DB changes and send them out in 
scheduled batches, and worry about DB errors when the batch finishes, saving 
the end-user bandwidth and time, not to mention keeping traffic volume on 
the server down? It all depends on the needs of the app, of course, but I 
find that in most cases, remoting would often be easier on me but that 
doesn't necessarily mean it serves the app best.


ryanm 


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET (ryanm)

2005-12-12 Thread ryanm

Ryan, how would this work?




//  Actionscript

var IncomingData:LoadVars = new LoadVars();
IncomingData.onLoad = function(success:Boolean){
   if(success){
   // Do stuff when data is loaded
   }else{
   trace(Load Failed!);
   }
};

var OutgoingData:LoadVars = new LoadVars();
OutgoingData.first_name = Bob;
OutgoingData.address = 1234 Main;
OutgoingData.zipcode = 75240;
OutgoingData.sendAndLoad(http://server.com/script.aspx,IncomingData,POST;);


'VB.NET Code Behind in the page load event

first_name = Request(first_name)
address = Request(address)
zipcode = Request(zipcode)

'Do SQL query using posted data
'Munge data as necessary
'Write return data into a string called output

response.write output


   That's about it.

ryanm 


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] flash and ASP.NET

2005-12-10 Thread Dan Thomas
For what its worth I have managed to get WebOrb working (with a bit of help 
from Scott Hyndman), yet to do anything other than take a look and mess around 
with the samples it comes with but looks pretty decent. Certainly a nice viable 
alternative for .net heads.
 
From their downloads page I downloaded WebOrb for .Net after setting up my 
local IIS to run .net properly and it worked fine.
 
Dan



From: [EMAIL PROTECTED] on behalf of Tjalle Groen
Sent: Sat 10/12/2005 17:56
To: Flashcoders mailing list
Subject: Re: [Flashcoders] flash and ASP.NET



Why don't you just use XML for the communication between flash en ASP.NET. 

Just use .net for the database connection and read/write actions. 

Write out your XML with .NET and import the page just like you would import 
XML in Flash. 

Use that all the time and it works like a charm... 

oioioi 

Tjalle 


On 12/7/05, Paul Hart [EMAIL PROTECTED] wrote: 
 
 I have written a .NET based web service(for a game scoreboard) which I 
 use to read/write to a SQL database from flash, the type of data 
 source doesn't matter to .NET, if you want I can package it up and 
 send the source to you?  Let me know because I'll need to remove 
 sensitive connection string details etc. 
 I can also send you the scoreboard as2 class which work well with the 
 web service. 
 
 Regards 
 Paul 
 On 07/12/05, Pete Hotchkiss [EMAIL PROTECTED] wrote: 
  Openamf is not .NET 
  
  http://starwolf.ch/ is 
  
  -Original Message- 
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Serge 
  Jespers 
  Sent: 07 December 2005 12:56 
  To: Flashcoders mailing list 
  Subject: Re: [Flashcoders] flash and ASP.NET 
  
  
  Have a look at http://www.openamf.org 
  Don't know if this can help you but it's also a third party remoting 
  solution. 
  
  
  
   I need to create a Flash application for a small non-profit can't 
   afford the 
   $999 price tag of MM's Flash Remoting gateway. Is there a third party 
   remoting solution like AMFPHP that I could use? Essentially I need 
   to read 
   and write to an Access database on a Windows web host. 
   
   Thanks for any suggestions and pointers to examples for this. 
   
   Michael 
   ___ 
   Flashcoders mailing list 
   Flashcoders@chattyfig.figleaf.com 
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 
  
  ___ 
  Flashcoders mailing list 
  Flashcoders@chattyfig.figleaf.com 
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 
  
  
  ___ 
  Flashcoders mailing list 
  Flashcoders@chattyfig.figleaf.com 
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 
  
 ___ 
 Flashcoders mailing list 
 Flashcoders@chattyfig.figleaf.com 
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 
 



-- 
Tjalle Groen 

http://www.kermitsmistake.tk 
http://www.boredsheep.tk 
___ 
Flashcoders mailing list 
Flashcoders@chattyfig.figleaf.com 
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders 


This message and any attachments should only be read by those persons to whom 
it is addressed and be used by them for its intended purpose.  It must not 
otherwise be reproduced, modified, distributed, published or actioned. If you 
have received this e-mail in error, please notify us immediately by telephone 
on 01202 237000 and delete it from your computer immediately. This e-mail 
address must not be passed to any third party or be used for any other purpose. 
Every reasonable precaution has been taken to ensure that this e-mail, 
including attachments, does not contain any viruses. However, no liability can 
be accepted for any damage sustained as a result of such viruses, and 
recipients are advised to carry out their own checks. 


Moov2 Ltd cannot accept liability for statements made which are clearly the 
senders own and not made on behalf of the Moov2 Ltd. An e-mail reply to this 
address may be subject to interception or monitoring for operational reasons or 
for lawful business purposes.


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-09 Thread grant
I've used the flourine pre-alpha, it works fine..

I used it in a demo of ARP extensions (flash RIA) but you can download the .NET 
piece to look at how it works, was pretty easy and transparently comparable to 
MM's .NET remoting framework.

http://theresidentalien.typepad.com/ginormous/2005/10/extending_arp.html

Grant.





- Original Message -
From: Zoltan Csibi [EMAIL PROTECTED]
To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Sent: 12/7/05 10:45 AM
Subject: RE: [Flashcoders] flash and ASP.NET

 Hi Michael
 
 Don't know if this is in your timeframe but we are preparing the alpha
 release of the Fluorine .NET remoting gateway. This works like the MM one
 for .NET and additionally supports pageable recordsets and .NET custom
 authentication
 (Fluorine is open source)
 
 Zoli
 
 -Original Message-
 From: Michael Appelmans [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, December 07, 2005 12:15 PM
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] flash and ASP.NET
 
 I need to create a Flash application for a small non-profit can't afford the
 $999 price tag of MM's Flash Remoting gateway. Is there a third party
 remoting solution like AMFPHP that I could use? Essentially I need to read
 and write to an Access database on a Windows web host.
 
 Thanks for any suggestions and pointers to examples for this.
 
 Michael
 
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-09 Thread grant

between flashorb pro, flashorb standard and weborb and the fact their news 
doesn't link to the item the news is talking about I was a little confused on 
what to download, is weborb professional for .net the free thing ?  I could 
find a weborb standard in the downloads section...

grant

- Original Message -
From: hank williams [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: 12/7/05 3:13 PM
Subject: Re: [Flashcoders] flash and ASP.NET

 www.flashORB.com  has a free .NET remoting product.
 
 Regards
 Hank
 
 On 12/7/05, Michael Appelmans  wrote:
  I need to create a Flash application for a small non-profit can't afford the
  $999 price tag of MM's Flash Remoting gateway. Is there a third party
  remoting solution like AMFPHP that I could use? Essentially I need to read
  and write to an Access database on a Windows web host.
 
  Thanks for any suggestions and pointers to examples for this.
 
  Michael
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-09 Thread hank williams
I am not a user so I am not an expert on flashorb. But as I understand
it, weborb is just the most recent version that, along with handling
flash remoting also does ajaxy stuff.  I believe the free version is
the standard edition. If you cant find the weborb, I think the
flashorb standard edtion is fine since all that weborb does is add
support for ajaxy stuff.

Regards
Hank

On 9 Dec 2005 17:54:42 -, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 between flashorb pro, flashorb standard and weborb and the fact their news 
 doesn't link to the item the news is talking about I was a little confused on 
 what to download, is weborb professional for .net the free thing ?  I could 
 find a weborb standard in the downloads section...

 grant

 - Original Message -
 From: hank williams [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: 12/7/05 3:13 PM
 Subject: Re: [Flashcoders] flash and ASP.NET

  www.flashORB.com  has a free .NET remoting product.
 
  Regards
  Hank
 
  On 12/7/05, Michael Appelmans  wrote:
   I need to create a Flash application for a small non-profit can't afford 
   the
   $999 price tag of MM's Flash Remoting gateway. Is there a third party
   remoting solution like AMFPHP that I could use? Essentially I need to read
   and write to an Access database on a Windows web host.
  
   Thanks for any suggestions and pointers to examples for this.
  
   Michael
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] flash and ASP.NET

2005-12-09 Thread Gabe Varela
There aren't any links to the standard edition on their site anymore. 

-Original Message-
From: hank williams [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 09, 2005 11:30 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] flash and ASP.NET

I am not a user so I am not an expert on flashorb. But as I understand
it, weborb is just the most recent version that, along with handling
flash remoting also does ajaxy stuff.  I believe the free version is the
standard edition. If you cant find the weborb, I think the flashorb
standard edtion is fine since all that weborb does is add support for
ajaxy stuff.

Regards
Hank

On 9 Dec 2005 17:54:42 -, [EMAIL PROTECTED] [EMAIL PROTECTED]
wrote:

 between flashorb pro, flashorb standard and weborb and the fact their
news doesn't link to the item the news is talking about I was a little
confused on what to download, is weborb professional for .net the free
thing ?  I could find a weborb standard in the downloads section...

 grant

 - Original Message -
 From: hank williams [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: 12/7/05 3:13 PM
 Subject: Re: [Flashcoders] flash and ASP.NET

  www.flashORB.com  has a free .NET remoting product.
 
  Regards
  Hank
 
  On 12/7/05, Michael Appelmans  wrote:
   I need to create a Flash application for a small non-profit can't 
   afford the
   $999 price tag of MM's Flash Remoting gateway. Is there a third 
   party remoting solution like AMFPHP that I could use? Essentially 
   I need to read and write to an Access database on a Windows web
host.
  
   Thanks for any suggestions and pointers to examples for this.
  
   Michael
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] flash and ASP.NET

2005-12-09 Thread Dan Thomas
I've taken a look and was pretty impressed but what they say to be offering, 
however was also a little confused, i downloaded the free edition that 
supposedly supports remoting with asp.net but it didn't seem to include all the 
files it said it would. I've joined their yahoo mailing list and posted for 
help so will keep you posted.
 
Dan



From: [EMAIL PROTECTED] on behalf of Gabe Varela
Sent: Fri 09/12/2005 22:12
To: Flashcoders mailing list
Subject: RE: [Flashcoders] flash and ASP.NET



There aren't any links to the standard edition on their site anymore.

-Original Message-
From: hank williams [mailto:[EMAIL PROTECTED]
Sent: Friday, December 09, 2005 11:30 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] flash and ASP.NET

I am not a user so I am not an expert on flashorb. But as I understand
it, weborb is just the most recent version that, along with handling
flash remoting also does ajaxy stuff.  I believe the free version is the
standard edition. If you cant find the weborb, I think the flashorb
standard edtion is fine since all that weborb does is add support for
ajaxy stuff.

Regards
Hank

On 9 Dec 2005 17:54:42 -, [EMAIL PROTECTED] [EMAIL PROTECTED]
wrote:

 between flashorb pro, flashorb standard and weborb and the fact their
news doesn't link to the item the news is talking about I was a little
confused on what to download, is weborb professional for .net the free
thing ?  I could find a weborb standard in the downloads section...

 grant

 - Original Message -
 From: hank williams [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: 12/7/05 3:13 PM
 Subject: Re: [Flashcoders] flash and ASP.NET

  www.flashORB.com  has a free .NET remoting product.
 
  Regards
  Hank
 
  On 12/7/05, Michael Appelmans  wrote:
   I need to create a Flash application for a small non-profit can't
   afford the
   $999 price tag of MM's Flash Remoting gateway. Is there a third
   party remoting solution like AMFPHP that I could use? Essentially
   I need to read and write to an Access database on a Windows web
host.
  
   Thanks for any suggestions and pointers to examples for this.
  
   Michael
   ___
   Flashcoders mailing list
   Flashcoders@chattyfig.figleaf.com
   http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



This message and any attachments should only be read by those persons to whom 
it is addressed and be used by them for its intended purpose.  It must not 
otherwise be reproduced, modified, distributed, published or actioned. If you 
have received this e-mail in error, please notify us immediately by telephone 
on 01202 237000 and delete it from your computer immediately. This e-mail 
address must not be passed to any third party or be used for any other purpose. 
Every reasonable precaution has been taken to ensure that this e-mail, 
including attachments, does not contain any viruses. However, no liability can 
be accepted for any damage sustained as a result of such viruses, and 
recipients are advised to carry out their own checks. 


Moov2 Ltd cannot accept liability for statements made which are clearly the 
senders own and not made on behalf of the Moov2 Ltd. An e-mail reply to this 
address may be subject to interception or monitoring for operational reasons or 
for lawful business purposes.


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] flash and ASP.NET

2005-12-07 Thread Michael Appelmans
I need to create a Flash application for a small non-profit can't afford the
$999 price tag of MM's Flash Remoting gateway. Is there a third party
remoting solution like AMFPHP that I could use? Essentially I need to read
and write to an Access database on a Windows web host.

Thanks for any suggestions and pointers to examples for this.

Michael
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Serge Jespers

Have a look at http://www.openamf.org
Don't know if this can help you but it's also a third party remoting  
solution.




I need to create a Flash application for a small non-profit can't  
afford the

$999 price tag of MM's Flash Remoting gateway. Is there a third party
remoting solution like AMFPHP that I could use? Essentially I need  
to read

and write to an Access database on a Windows web host.

Thanks for any suggestions and pointers to examples for this.

Michael
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Martin Wood

does it have to be asp?

you can run php on IIS and php has ODBC libraries

http://us2.php.net/odbc

so flash - amfphp - ODBC

bingo.

:)

also you can run apache on windows, you dont have to run IIS.

It depends on what your constraints are i suppose.


martin

Serge Jespers wrote:

Have a look at http://www.openamf.org
Don't know if this can help you but it's also a third party remoting  
solution.




I need to create a Flash application for a small non-profit can't  
afford the

$999 price tag of MM's Flash Remoting gateway. Is there a third party
remoting solution like AMFPHP that I could use? Essentially I need  to 
read

and write to an Access database on a Windows web host.

Thanks for any suggestions and pointers to examples for this.

Michael
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



--
Martin Wood

http://relivethefuture.com/choronzon
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Zoltan Csibi
Hi Michael

Don't know if this is in your timeframe but we are preparing the alpha
release of the Fluorine .NET remoting gateway. This works like the MM one
for .NET and additionally supports pageable recordsets and .NET custom
authentication
(Fluorine is open source)

Zoli

-Original Message-
From: Michael Appelmans [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 07, 2005 12:15 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] flash and ASP.NET

I need to create a Flash application for a small non-profit can't afford the
$999 price tag of MM's Flash Remoting gateway. Is there a third party
remoting solution like AMFPHP that I could use? Essentially I need to read
and write to an Access database on a Windows web host.

Thanks for any suggestions and pointers to examples for this.

Michael


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Paul Hart
That sounds interesting.  Any more details?

On 07/12/05, Zoltan Csibi [EMAIL PROTECTED] wrote:
 Hi Michael

 Don't know if this is in your timeframe but we are preparing the alpha
 release of the Fluorine .NET remoting gateway. This works like the MM one
 for .NET and additionally supports pageable recordsets and .NET custom
 authentication
 (Fluorine is open source)

 Zoli

 -Original Message-
 From: Michael Appelmans [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 07, 2005 12:15 PM
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] flash and ASP.NET

 I need to create a Flash application for a small non-profit can't afford the
 $999 price tag of MM's Flash Remoting gateway. Is there a third party
 remoting solution like AMFPHP that I could use? Essentially I need to read
 and write to an Access database on a Windows web host.

 Thanks for any suggestions and pointers to examples for this.

 Michael


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Judah Frangipane

Hi Zoli,

Can you send links?

Judah

Zoltan Csibi wrote:


Hi Michael

Don't know if this is in your timeframe but we are preparing the alpha
release of the Fluorine .NET remoting gateway. This works like the MM one
for .NET and additionally supports pageable recordsets and .NET custom
authentication
(Fluorine is open source)

Zoli

-Original Message-
From: Michael Appelmans [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 07, 2005 12:15 PM

To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] flash and ASP.NET

I need to create a Flash application for a small non-profit can't afford the
$999 price tag of MM's Flash Remoting gateway. Is there a third party
remoting solution like AMFPHP that I could use? Essentially I need to read
and write to an Access database on a Windows web host.

Thanks for any suggestions and pointers to examples for this.

Michael


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



 



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Jeff Small
Why can't the little flash file just *sit* someplace that has Flash
Remoting? You don't have to buy it, and if they have their own PC that
they're hosting from, just get a little account someplace or piggyback
it someplace else where it *can* get to a database? Maybe that's a
cheap little solution?

On 12/7/05, Gabe Varela [EMAIL PROTECTED] wrote:
 Haven't used it but found this a few months back.
 http://www.flash-db.com/Board/index.php?PHPSESSID=981459153bf8a6cdfd83dc
 77b35ce3b3topic=11259.msg47191

 -Original Message-
 From: Michael Appelmans [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 07, 2005 3:15 AM
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] flash and ASP.NET

 I need to create a Flash application for a small non-profit can't afford
 the
 $999 price tag of MM's Flash Remoting gateway. Is there a third party
 remoting solution like AMFPHP that I could use? Essentially I need to
 read and write to an Access database on a Windows web host.

 Thanks for any suggestions and pointers to examples for this.

 Michael

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] flash and ASP.NET

2005-12-07 Thread Zoltan Csibi

Well fluorine started as another projector extender library written in c#.
The communication between the host application and the flash player uses
flash remoting (the host application becomes a mini webserver by using
.net remoting channel sinks)  http://fluorine.thesilentgroup.com

Now a big part of the library was actually an AMF implementation.
So we split it, there is an old version of the remoting gateway
(http://fluorine.thesilentgroup.com/download.htm) called Remoting for .NET
Test...but that version was experimental and the first step only

Since then the remoting gateway was further developed to cover all the
functionality needed and we are in testing phase, hope to release it soon

-Original Message-
From: Paul Hart [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 07, 2005 6:04 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] flash and ASP.NET

That sounds interesting.  Any more details?

On 07/12/05, Zoltan Csibi [EMAIL PROTECTED] wrote:
 Hi Michael

 Don't know if this is in your timeframe but we are preparing the alpha 
 release of the Fluorine .NET remoting gateway. This works like the MM 
 one for .NET and additionally supports pageable recordsets and .NET 
 custom authentication (Fluorine is open source)

 Zoli

 -Original Message-
 From: Michael Appelmans [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 07, 2005 12:15 PM
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] flash and ASP.NET

 I need to create a Flash application for a small non-profit can't 
 afford the
 $999 price tag of MM's Flash Remoting gateway. Is there a third party 
 remoting solution like AMFPHP that I could use? Essentially I need to 
 read and write to an Access database on a Windows web host.

 Thanks for any suggestions and pointers to examples for this.

 Michael


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] flash and ASP.NET

2005-12-07 Thread hank williams
www.flashORB.com  has a free .NET remoting product.

Regards
Hank

On 12/7/05, Michael Appelmans [EMAIL PROTECTED] wrote:
 I need to create a Flash application for a small non-profit can't afford the
 $999 price tag of MM's Flash Remoting gateway. Is there a third party
 remoting solution like AMFPHP that I could use? Essentially I need to read
 and write to an Access database on a Windows web host.

 Thanks for any suggestions and pointers to examples for this.

 Michael
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders