Windows Vista Forums

WCF+Adobe Flash

  1. #1


    Yevgeniy Guest

    WCF+Adobe Flash

    Hi, I'm new to WCF ,coming with asp.net background and would
    appreciate help with WCF usage guidelines for fallowing :
    My challenge is to design and build web based system on 2
    technologies :
    Clients are adobe Flash applications
    And server side implemented with WCF
    Main limitation is that I cant use .net based wcf clients, my consumer
    is flash app that send-recieves soap messages, please share your
    thoughts :
    1) what is better option for wcf services hosting ? IIS+ASMX / windows
    service ?
    2) how WCF can help to implement clients session ? basically what I
    need is that only authenticated clients can access wcf services.
    (Asp.net way is to create authentication cookie and validate that
    cookie automatically on each page load)
    3) how can enforce each wcf request in client session to be processed
    in order of arrival

    thanks much for any help



      My System SpecsSystem Spec

  2. #2


    Vadym Stetsiak Guest

    Re: WCF+Adobe Flash

    Hello, Yevgeniy!

    Y> 1) what is better option for wcf services hosting ? IIS+ASMX /
    Y> windows service ?

    If you want additional logging and more flexible control over WCF Windows
    service can be an option.

    Y> 2) how WCF can help to implement clients session ? basically what I
    Y> need is that only authenticated clients can access wcf services.
    Y> (Asp.net way is to create authentication cookie and validate that
    Y> cookie automatically on each page load)


    WCF supports authentication
    ( http://msdn2.microsoft.com/en-us/library/ms733775.aspx )


    Y> 3) how can enforce each wcf request in client session to be processed
    Y> in order of arrival

    WCF service will process SOAP requests from the client in order of arrival.
    --
    With best regards, Vadym Stetsiak.
    Blog: http://vadmyst.blogspot.com

    You wrote on Mon, 03 Sep 2007 13:11:44 -0700:

    Y> Hi, I'm new to WCF ,coming with asp.net background and would
    Y> appreciate help with WCF usage guidelines for fallowing :
    Y> My challenge is to design and build web based system on 2
    Y> technologies :
    Y> Clients are adobe Flash applications
    Y> And server side implemented with WCF
    Y> Main limitation is that I cant use .net based wcf clients, my
    Y> consumer is flash app that send-recieves soap messages, please share
    Y> your thoughts :


    Y> thanks much for any help



      My System SpecsSystem Spec

  3. #3


    Yevgeniy Guest

    Re: WCF+Adobe Flash

    hi Vadim, thanks for response.
    maybe i need to be more specific with my questions :
    1) from performance point of view and authentication/authorisation
    support, witch hosting option is better for services exposed for web
    clients
    2) when service consumer is flash client, how authorisation could be
    implemented ( for example implementing some Login function that will
    create a token and pass it to client and client will send it with
    every service call via SOAP headers)
    On Sep 4, 11:21 am, "Vadym Stetsiak" <vadm...@xxxxxx> wrote:

    > Hello, Yevgeniy!
    >
    > Y> 1) what is better option for wcf services hosting ? IIS+ASMX /
    > Y> windows service ?
    >
    > If you want additional logging and more flexible control over WCF Windows
    > service can be an option.
    >
    > Y> 2) how WCF can help to implement clients session ? basically what I
    > Y> need is that only authenticated clients can access wcf services.
    > Y> (Asp.net way is to create authentication cookie and validate that
    > Y> cookie automatically on each page load)
    >
    > WCF supports authentication
    > (http://msdn2.microsoft.com/en-us/library/ms733775.aspx)
    >
    > Y> 3) how can enforce each wcf request in client session to be processed
    > Y> in order of arrival
    >
    > WCF service will process SOAP requests from the client in order of arrival.
    > --
    > With best regards, Vadym Stetsiak.
    > Blog:http://vadmyst.blogspot.com
    >
    > You wrote on Mon, 03 Sep 2007 13:11:44 -0700:
    >
    > Y> Hi, I'm new to WCF ,coming with asp.net background and would
    > Y> appreciate help with WCF usage guidelines for fallowing :
    > Y> My challenge is to design and build web based system on 2
    > Y> technologies :
    > Y> Clients are adobe Flash applications
    > Y> And server side implemented with WCF
    > Y> Main limitation is that I cant use .net based wcf clients, my
    > Y> consumer is flash app that send-recieves soap messages, please share
    > Y> your thoughts :
    >
    > Y> thanks much for any help

      My System SpecsSystem Spec

  4. #4


    Vadym Stetsiak Guest

    Re: WCF+Adobe Flash

    Hello, Yevgeniy!

    1. IIS hosting model provides fail protection, activation etc.
    However, if you need your service up and running before the first
    request comes in - IIS won't suit you.
    If only HTTP endpoints will be used performance can be litterally equal,
    since both IIS and self-hosted service use http.sys.

    2. Good description of WCF security is given here
    http://go.microsoft.com/?linkid=5008388

    You wrote on Tue, 04 Sep 2007 10:58:07 -0000:

    Y> hi Vadim, thanks for response.
    Y> maybe i need to be more specific with my questions :
    Y> 1) from performance point of view and authentication/authorisation
    Y> support, witch hosting option is better for services exposed for web
    Y> clients
    Y> 2) when service consumer is flash client, how authorisation could be
    Y> implemented ( for example implementing some Login function that will
    Y> create a token and pass it to client and client will send it with
    Y> every service call via SOAP headers)
    Y> On Sep 4, 11:21 am, "Vadym Stetsiak" <vadm...@xxxxxx> wrote:

    >> Hello, Yevgeniy!
    Y>>> 1) what is better option for wcf services hosting ? IIS+ASMX /
    Y>>> windows service ?

    >> If you want additional logging and more flexible control over WCF
    >> Windows service can be an option.
    Y>>> 2) how WCF can help to implement clients session ? basically what I
    Y>>> need is that only authenticated clients can access wcf services.
    Y>>> (Asp.net way is to create authentication cookie and validate that
    Y>>> cookie automatically on each page load)

    >> WCF supports authentication
    >> (http://msdn2.microsoft.com/en-us/library/ms733775.aspx)
    Y>>> 3) how can enforce each wcf request in client session to be
    Y>>> processed in order of arrival

    >> WCF service will process SOAP requests from the client in order of
    >> arrival.
    >> --
    >> With best regards, Vadym Stetsiak.
    >> Blog:http://vadmyst.blogspot.com

    >> You wrote on Mon, 03 Sep 2007 13:11:44 -0700:
    Y>>> Hi, I'm new to WCF ,coming with asp.net background and would
    Y>>> appreciate help with WCF usage guidelines for fallowing :
    Y>>> My challenge is to design and build web based system on 2
    Y>>> technologies :
    Y>>> Clients are adobe Flash applications
    Y>>> And server side implemented with WCF
    Y>>> Main limitation is that I cant use .net based wcf clients, my
    Y>>> consumer is flash app that send-recieves soap messages, please
    Y>>> share your thoughts :

    Y>>> thanks much for any help


    --
    With best regards, Vadym Stetsiak.
    Blog: http://vadmyst.blogspot.com


      My System SpecsSystem Spec

  5. #5



    Newbie
    Join Date : Mar 2008
    Posts : 1
    xp
    Local Time: 12:43 PM


     

    Re: WCF+Adobe Flash

    Hi Yevgeniy,

    You wrote:

    "Main limitation is that I cant use .net based wcf clients, my consumer is flash app that send-recieves soap messages..."

    I'm trying to use wcf with flash but get 'Unable to connect to endpoint error'.

    Is wcf not compatible with flash?

    Thanks,

    EricTile
      My System SpecsSystem Spec

  6. #6


    Yevgeniy Guest

    Re: WCF+Adobe Flash

    On Mar 4, 12:02 am, EricTile <EricTile.35p...@xxxxxx-mx.forums.net> wrote:

    > Hi Yevgeniy,
    >
    > You wrote:
    >
    > "Main limitation is that I cant use .net based wcf clients, my consumer
    > is flash app that send-recieves soap messages..."
    >
    > I'm trying to use wcf with flash but get 'Unable to connect to endpoint
    > error'.
    >
    > Is wcf not compatible with flash?
    >
    > Thanks,
    >
    > EricTile
    >
    > --
    > EricTile
    hi Eric,
    we successfully used Flax clients with WCF (basicHTTPBinding)
    can you access same service from native client ? generate C# client
    with visual studio and see if it works
    it seems like server side problem according to your error
      My System SpecsSystem Spec

WCF+Adobe Flash

Similar Threads
Thread Thread Starter Forum Replies Last Post
adobe flash 10 James Vista performance & maintenance 0 06 Aug 2009
adobe flash player doctorj Vista music pictures video 4 15 Feb 2009
ADOBE FLASH 64 bit GINTER Vista General 0 18 Feb 2008
Adobe Flash Player IE7 Crash neither Adobe or MSFT can fix Chad Harris Vista General 2 09 Jun 2007
Adobe Flash... gingerman59 Vista security 4 25 Feb 2007