Django AMF3 support

View: New views
4 Messages — Rating Filter:   Alert me  

Parent Message unknown Django AMF3 support

by Krzysztof Ciesielski-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
I'm a developer from Poland and I use django in my work. Right now I'm working over a project invloving use of Django with Flex. I've inspected the code of PyAMF and I noticed that there's no support for AMF3 for djangogateway. Were there any problems connecting django via AMF3 or there was just not enough time to implement that? I think I could help a bit in development.
Greets
Chris Ciesielski


Re: Django AMF3 support

by Nick Joyce :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Chris,

AMF3 (or RemoteObject) is supported in all the implementing gateways (Django, Twisted and WSGI). The request type (RemoteObject or the default) is decided in pyamf.remoting.gateway.BaseGateway.getProcessor (of which DjangoGateway subclasses). The returned processor handles the request and calculates the response.

Hth,

Nick

On Thu, 2008-02-07 at 17:47 +0100, Krzysztof Ciesielski wrote:
Hi,
I'm a developer from Poland and I use django in my work. Right now I'm working over a project invloving use of Django with Flex. I've inspected the code of PyAMF and I noticed that there's no support for AMF3 for djangogateway. Were there any problems connecting django via AMF3 or there was just not enough time to implement that? I think I could help a bit in development.
Greets
Chris Ciesielski

_______________________________________________
PyAMF dev mailing list - dev@...
http://lists.pyamf.org/mailman/listinfo/dev

Re: Django AMF3 support

by lists-144 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

SeeĀ http://pyamf.org/wiki/ByteArrayExample for an Django AMF3 example using a Flex client.

Cheers,

Thijs

On Feb 7, 2008, at 6:19 PM, Nick Joyce wrote:

Hi Chris,

AMF3 (or RemoteObject) is supported in all the implementing gateways (Django, Twisted and WSGI). The request type (RemoteObject or the default) is decided in pyamf.remoting.gateway.BaseGateway.getProcessor (of which DjangoGateway subclasses). The returned processor handles the request and calculates the response.

Hth,

Nick

On Thu, 2008-02-07 at 17:47 +0100, Krzysztof Ciesielski wrote:
Hi,
I'm a developer from Poland and I use django in my work. Right now I'm working over a project invloving use of Django with Flex. I've inspected the code of PyAMF and I noticed that there's no support for AMF3 for djangogateway. Were there any problems connecting django via AMF3 or there was just not enough time to implement that? I think I could help a bit in development.
Greets
Chris Ciesielski

_______________________________________________
PyAMF dev mailing list - dev@...
http://lists.pyamf.org/mailman/listinfo/dev
_______________________________________________
PyAMF dev mailing list - dev@...


Re: Django AMF3 support

by Krzysztof Ciesielski-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.


2008/2/7, Thijs Triemstra | Collab <lists@...>:
See http://pyamf.org/wiki/ByteArrayExample for an Django AMF3 example using a Flex client.

Cheers,

Thijs

On Feb 7, 2008, at 6:19 PM, Nick Joyce wrote:

Hi Chris,

AMF3 (or RemoteObject) is supported in all the implementing gateways (Django, Twisted and WSGI). The request type (RemoteObject or the default) is decided in pyamf.remoting.gateway.BaseGateway.getProcessor (of which DjangoGateway subclasses). The returned processor handles the request and calculates the response.

Hth,

Nick

On Thu, 2008-02-07 at 17:47 +0100, Krzysztof Ciesielski wrote:
Hi,
I'm a developer from Poland and I use django in my work. Right now I'm working over a project invloving use of Django with Flex. I've inspected the code of PyAMF and I noticed that there's no support for AMF3 for djangogateway. Were there any problems connecting django via AMF3 or there was just not enough time to implement that? I think I could help a bit in development.
Greets
Chris Ciesielski

_______________________________________________
PyAMF dev mailing list - dev@...
http://lists.pyamf.org/mailman/listinfo/dev
_______________________________________________
PyAMF dev mailing list - dev@...
http://lists.pyamf.org/mailman/listinfo/dev_______________________________________________
PyAMF dev mailing list - dev@...
http://lists.pyamf.org/mailman/listinfo/dev


Sorry for bothering :D I didn't notice that and thanks for help
Chris