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('@')])
-- 
http://mail.python.org/mailman/listinfo/python-list


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. If
everything is Python, you may use Twisted.Spread. If you have to
communicate with different languages and plataforms, maybe CORBA
helps. Well, I'm sure a lot of people know more options than I do
here.

-- 
Felipe.
-- 
http://mail.python.org/mailman/listinfo/python-list


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.

-- 
http://mail.python.org/mailman/listinfo/python-list


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 going to be on the other sides. If
 everything is Python, you may use Twisted.Spread. If you have to
 communicate with different languages and plataforms, maybe CORBA
 helps. Well, I'm sure a lot of people know more options than I do
 here.
 
I have to support multiple applications using different schema and
databases.  Would like to present as much as a unified interface as
possible.
-- 
http://mail.python.org/mailman/listinfo/python-list


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 well, but I'm afraid performance can
be a problem if a lot of calls are made or big/complex objects are
transfered.

-- 
Felipe.
-- 
http://mail.python.org/mailman/listinfo/python-list


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 and
soap.  Are there other options?

Just curious for some opinions.

Thanks.
-- 
http://mail.python.org/mailman/listinfo/python-list