Best Middle Tier Architechure?

  • Thread starter Butternut Squash
  • Start date
B

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.
 
F

Felipe Almeida Lessa

2006/9/7 said:
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.
 
B

Butternut Squash

Felipe said:
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.
 
F

Felipe Almeida Lessa

2006/9/8 said:
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,682
Members
48,796
Latest member
Greg L.

Latest Threads

Top