Tagged Questions
The pyamf tag has no wiki summary.
4
votes
2answers
1k views
How can I use Flex to access foreign-keyed fields in Django?
I have the following Django and Flex code:
Django
class Author(models.Model):
name = models.CharField(max_length=30)
class Book(models.Model):
title = models.CharField(max_length=30)
author = ...
3
votes
1answer
301 views
Where (at which point in the code) does pyAMF client accept SSL certificate?
I've set up a server listening on an SSL port. I am able to connect to it and with proper credentials I am able to access the services (echo service in the example below)
The code below works fine, ...
2
votes
2answers
164 views
Can PyAMF support service deployment by way of the filesystem?
I'm evaluating PyAMF to replace our current PHP (ugh) AMF services framework, and I'm unable to find the one crucial piece of information that would allow me to provide a compelling use case for ...
2
votes
2answers
143 views
return a FaultObject on purpose from pyamf
I am currently migrating from RubyAMF to PyAMF. In RubyAMF you can return a FaultObject deliberately like so:
render :amf => FaultObject.new("Thats not your pie!")
Is there comparable ...
2
votes
1answer
444 views
Using mx:RemoteObject with web2py's @service.amfrpc decorator
I am using web2py (v1.63) and Flex 3. web2py v1.61 introduced the @service decorators, which allow you to tag a controller function with @service.amfrpc. You can then call that function remotely using ...
2
votes
1answer
546 views
File handling in Django when posting image from service call
I am using PyAMF to transfer a dynamically generated large image from Flex to Django.
On the Django side i receive the encodedb64 data as a parameter:
My Item model as an imagefield.
What i have ...
2
votes
2answers
566 views
Issue with PyAMF, Django, and Python's “property” feature
So far, I've had great success using PyAMF to communicate between my Flex front-end and my Django back-end. However, I believe I've encountered a bug. The following example (emphasis on the word ...
1
vote
1answer
89 views
PyAMF DatabaseError: 'This query is not supported by the database.' when returning the User object
This is the error I'm getting:
ERROR 2011-11-19 04:19:55,441 django.py:164] Error encoding AMF request
Traceback (most recent call last):
File ...
1
vote
0answers
130 views
httplib binary data and UnicodeDecodeError in python 2.7
I just discovered that starting with Python 2.7, the httplib doesn't work anymore with binary data, breaking modules that where sending binary data over HTTP, one example being [PyAMF]
Python bug: ...
1
vote
1answer
58 views
How can I convert a TypedObject to a nested dictionary in Python?
I am using pyAMF and I do receive a TypedObject that is in fact a nested dictionary. I want to convert this to a python dictionary.
1
vote
1answer
67 views
pyamf exclude property not working on db.ReferenceProperty
I am using pyamf with google app engine. I am trying to exclude a property from the pyamf encoding. This is the syntax I am using:
class Comment(db.Model):
class __amf__:
exclude = ...
1
vote
1answer
308 views
How to upload files in flex using PyAMF or PhpAMF? client side, and very little server side help needed
Hy!
I need to upload a group of images using flex with robotlegs.
I need a progress bar to work when image is uploading.
It might upload 1 image or more at the time.
I want to know if uploading ...
1
vote
1answer
400 views
i got this error: “ImportError: cannot import name python” How do I fix it?
File "G:\Python25\Lib\site-packages\PyAMF-0.6b2-py2.5-win32.egg\pyamf\util\__init__.py", line 15, in <module>
ImportError: cannot import name python
How do I fix it?
If you need any info to ...
1
vote
1answer
127 views
pyAMF for GAE (Google App Engine), little help needed:
# I need this behaviour:
# 1) check if the service from flash is included in the services array
# 2) if not, return false or an error | if yes, step 3
# 3) combine the rootPath('app.controllers') with ...
1
vote
2answers
126 views
I'm using pyAMF in my app, but I want to set smart service like explained here:
In a normal application i set services
services = {
'users.login': login,
'test': router
}
but I would like to do like this:
services = [
'users.login',
'test'
]
and every ...
1
vote
1answer
279 views
How can I map field names between Django/PyAMF and Flex?
For example, using my UserProfile model:
class UserProfile(models.Model):
user = models.ForeignKey( User, unique=True )
blurb = models.CharField( max_length=200, null=True, blank=True )
...
1
vote
2answers
184 views
Unexpected HTTP status 500 response
I have a simple python method that should be returned by Django/pyAMF but it's returning HTTP Status 500 instead (although I do pass through the method with no error and the Grupo object is created):
...
1
vote
1answer
288 views
GAE datastore eager loading in python api
I have two models in relation one-to-many:
class Question(db.Model):
questionText = db.StringProperty(multiline=False)
class Answer(db.Model):
answerText = ...
1
vote
2answers
314 views
kwargs sent over pyAMF channel
I'm using cherrypy server to receive requests over a pyAMF channel from a python client. I started with the mock up below and it works fine:
Server:
import cherrypy
from pyamf.remoting.gateway.wsgi ...
1
vote
1answer
354 views
Flex: AMF and Enum Singletons – can they play well together?
I'm using Python+PyAMF to talk back and forth with Flex clients, but I've run into a problem with the psudo-Enum-Singletons I'm using:
class Type {
public static const EMPTY:Type = new ...
1
vote
2answers
451 views
authenticate from Flex in Django with pyAMF
Maybe somebody can show an example of such a task, or specify where to look.
1
vote
2answers
1k views
PyAMF / Django - Flex class mapping errors
I'm using PyAmf to communicate with a Flex app. But I keep getting errors.
My model:
from django.contrib.auth.models import User
class Talent(User):
street = models.CharField(max_length=100)
...
0
votes
2answers
24 views
Pyamf register_class not mapping strongly typed objects as expected
I'm using Pyamf as my backend for my Flex app and I'm seeing some weird problems with the mapping of the stongly typed classes.
Here is the model that I'm returning
class ...
0
votes
1answer
44 views
500 error when returning Django object with Pyamf to Flex
I'm able to return django models that have only CharFields/Dates/Integers, but now I'm trying to return models that have ForeignKey properties and I'm getting this error in Flex in my ...
0
votes
1answer
142 views
How to deserialize and serialize AMF Packets in Python?
I am rewriting the following Perl code in Python:
my $data = Data::AMF::Packet->new->deserialize($packet);
$data->messages->[0]->{value}->[1] = ...
0
votes
1answer
59 views
PyAMF: How do you get the client's ip address?
Is there anyway to get the client's ip address when running PyAMF via the WSGI gateway interface (Apache)?
0
votes
1answer
88 views
Passing session info from python to flex
I have a simple site made with python (django). User registers, inputs some basic info and it stores it to mysql. User then is able to log in with his username/password which he created...
Now i ...
0
votes
1answer
102 views
Deploying PyAMF Django project on Apache with mod_wsgi
I have installed PyAMF, Django, Apache2, and mod_wsgi on a Mac OS X 10.6 machine. While developing the project I used Django development servier. I would like to continue to use ...
0
votes
1answer
187 views
data push using django
I'm interested in doing data-push from django to flex, can this be done using pyamf (tutorials or examples are highly appreciated)?
I would like to do it in such a way that when something is changed ...
0
votes
0answers
56 views
How to use services in the way I expose here? in pyamf
My app sets an array of strings that are the available services. Then when the app call "getServiceRequest" calls on my custom class, that must load the class that match the target in the available ...
0
votes
1answer
106 views
How should I jump into the Flex-Python Boat
http://www.artima.com/weblogs/viewpost.jsp?thread=208528
Bruce Eckel talked about using Flex and Python together. Since then, we have had PyAMF and the likes.
It has been almost three years, but ...
0
votes
1answer
109 views
google apps engine django form pyamf
My flash-pyamf-gae works nice.
Now I would like to create a classic Django form by following the google tutorial : http://code.google.com/appengine/articles/djangoforms.html
I did but when I post the ...
0
votes
2answers
461 views
Flash + pyAMF + Django session cookie security
First off, if there is a true, official way of having flash/flex's NetConnections usurp the session/cookie state of the surrounding web page, so that if the user has already logged in, they don't need ...
0
votes
1answer
244 views
Flex 4 + Django: Testing and Release Options
I am creating a django-based site that will serve flash apps that occasionally access data via pyamf. I need to be able to easily test the flash in the context of the django framework, i.e. with all ...
0
votes
1answer
188 views
How pyamf.amf3.ByteArray save to ImageField?
I'm getting object 'pyamf.amf3.ByteArray'
How can I save it to ImageField ?
0
votes
1answer
77 views
Passing in **kwargs from Flex over PyAMF
Anyone know if it is easily possible to send **kwargs over PyAMF from NetConnection.call()? I would like it.
I could write a wrapper around the actual function and expose that and perform some ...
0
votes
1answer
305 views
Limiting pyamf flex sessions or setting a timeout
How do I limit my amf sessions to flex over pyamf?
I have set up a pyamf gateway to that serves value objects that originate from a django admin panel, through sqlalchemy to my authenticated flex ...
0
votes
1answer
374 views
How to set up PyAMF Django gateway so it uses AMF3?
How to set up PyAMF Django gateway so it uses AMF3 instead of the default AMF0?
0
votes
1answer
340 views
Django + pyamf: Strange exception when calling the gateway from actionscript application
Could you please help.
I am using the django-amf-gateway application (http://bitbucket.org/wolever/django-amf-gateway).
I defined the gateway this way:
from django_amf_gateway import ...
0
votes
1answer
464 views
PyAMF backend choices!
I've been using PyAMF to write a backend for a flex app that will request different groups of hundreds of different images depending on what the client needs. I have been using the "simple_server" ...
0
votes
1answer
813 views
app-engine-patch with pyamf = No module named encoding
I'm trying to use app-engine-patch with pyamf by following this: http://pyamf.org/wiki/GoogleAppEngine because I want to migrate my Django <-> pyamf application to app-engine-patch <-> pyamf.
...
0
votes
1answer
799 views
BlazeDS - AMFConnection.call giving HTTP 400 status
I'm trying to use BlazeDS's AMFConnection class to connect to pyamf, but when I call AMFConnection.call(), I get HTTP status 400 (Bad Request - "The request body was unable to be successfully ...
0
votes
2answers
637 views
Hello world Pyamf small error message
Hi i am trying to link flex to django with Pyamf
As a first step i tried the basic Hello World
http://pyamf.org/wiki/DjangoHowto
But that results in an ErrorFault.
I use django 1.0.2
...