Re: Best Middle Tier Architechure?

2006-09-08 Thread Bruno Desthuilliers
Butternut Squash wrote: What do you guys recommend for doing middle tier in python. I want to hide the database from the application Why ? -- bruno desthuilliers python -c print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for p in '[EMAIL PROTECTED]'.split('@')]) --

Re: Best Middle Tier Architechure?

2006-09-08 Thread Felipe Almeida Lessa
2006/9/7, Butternut Squash [EMAIL PROTECTED]: right now we are using c# and .net remoting in a way that just is not efficient. I want to rewrite a lot of what we do in python. I have seen XML-RPC and soap. Are there other options? It surely depends on what's going to be on the other sides.

Re: Best Middle Tier Architechure?

2006-09-08 Thread Wolfgang Keller
On Fri, 8 Sep 2006 03:59:46 +0200, Butternut Squash wrote (in article [EMAIL PROTECTED]): I have seen XML-RPC and soap. Are there other options? OmniORBpy Sincerely, Wolfgang Keller -- My email-address is correct. Do NOT remove .nospam to reply. --

Re: Best Middle Tier Architechure?

2006-09-08 Thread Butternut Squash
Felipe Almeida Lessa wrote: 2006/9/7, Butternut Squash [EMAIL PROTECTED]: right now we are using c# and .net remoting in a way that just is not efficient. I want to rewrite a lot of what we do in python. I have seen XML-RPC and soap. Are there other options? It surely depends on what's

Re: Best Middle Tier Architechure?

2006-09-08 Thread Felipe Almeida Lessa
2006/9/8, Butternut Squash [EMAIL PROTECTED]: I have to support multiple applications using different schema and databases. Would like to present as much as a unified interface as possible. I'd recomend CORBA as it supports multiple platforms and languages. SOAP and XML-RPC can be used as

Best Middle Tier Architechure?

2006-09-07 Thread Butternut Squash
What do you guys recommend for doing middle tier in python. I want to hide the database from the application and have it just use business logic. right now we are using c# and .net remoting in a way that just is not efficient. I want to rewrite a lot of what we do in python. I have seen XML-RPC