serving SOAP service with soaplib, consuming with suds

2010-10-19 Thread Ricko
Hi all, I am trying to make a SOAP service in Django via soaplib(1.0.0 - beta 8) and consume the same service for testing purposes with SUDS (0.4). I can consume external SOAP services with SUDS no problem, but am running into problems when trying to consume my own service. My service is as foll

Re: Error with passing 'form_class' arg in urls.py for Django Profiles app

2010-07-15 Thread Ricko
I've got the reason, so I thought I'd post it here, and I'll raise a ticket with the Debug app. It's an error with the Debug app I use for developing. If you switch it off with Local_Dev = False, everything works. On Jul 15, 9:24 am, Ricko wrote: > Yep, here is the Pro

Re: Error with passing 'form_class' arg in urls.py for Django Profiles app

2010-07-15 Thread Ricko
rm_class':ProfileForm}, name='profiles_edit_profile'), url(r'^(?P\w+)/$', login_required(views.profile_detail), name='profiles_profile_detail'), )

Error with passing 'form_class' arg in urls.py for Django Profiles app

2010-07-14 Thread Ricko
Using ubernostroms Django Registration app coupled with his Profile app, both highly recommended, got the default app up and running no problems at all. I'm unable to override any default behaviour the proper way, as I can't seem to pass any extra parameters through the urls.py file. Here is my url

Error with passing 'form_class' arg with Django Contact Form

2010-05-06 Thread Ricko
1, in force_unicode s = unicode(s) TypeError: unbound method __unicode__() must be called with EnhancedContactForm instance as first argument (got nothing instead) If you substitute the standard ContactForm in urls.py, it fails the same way. Anyone seen this before? What am I doing wrong? Che