Re: Django - Java RPC?

2010-04-20 Thread jani.mono...@gmail.com
> > >http://code.google.com/p/modwsgi/wiki/IssuesWithPickleModule > > You are misunderstanding the mod_wsgi documentation. That only applies > to data types specified inside the actual WSGI script file. It doesn't > apply to data types specified elsewhere in standard Python modules. > > In particul

Django - Java RPC?

2010-04-19 Thread jani.mono...@gmail.com
What is the most straightforward way of inspecting/scripting a headless Java application from Django? I run Jython embedded in the Java app already so this may or may not make things easier than plain Java on one side. Instead of writing my custom wire format I'd like to reuse existing serializati

Re: inner join operation on legacy tables?

2010-04-06 Thread jani.mono...@gmail.com
I have eventually made a MySQL view combining the two tables and then used a simple Django queryset on it, but I'd still be curios if there's a Django way of addressing this and similar issues. On Apr 6, 9:26 pm, "jani.mono...@gmail.com" wrote: > > The generated mode

Re: inner join operation on legacy tables?

2010-04-06 Thread jani.mono...@gmail.com
> The generated model from inspectdb is only a best guess, but there's > nothing to stop you editing it. If your field really is a foreign key, Not really a foreign key,both tables have a string field ID which is the same, and unique in one table. So it could be a foreign key except it is not expl