Link to home
Start Free TrialLog in
Avatar of arcarson
arcarson

asked on

CORBA Messaging Client/Server Application

We have this messaging application that clients subscribe to. Right now it's just a asp page that the browser refreshes ever 5 seconds or so and it pulls the updates from a SQL Server 7 database. We tried moving the client part of that to a Java applet but that was a no go.

We are going to move it to a client/server application architecture where the client applications (Java Applications) logon to the server and the server pushes the data to the clients.

The first thought was to just use a Multicast Socket. But not all networks support that. The second thought was that we could just open a socket connection to every client out there(a suggestion by the boss that I quickly shot down. Correct me if I'm wrong here but I'm looking to make one server support at least 9000 clients. That number can come down but a server has to at least support 1500). So reading Professional Linux programming Chapter 20 and 21 they started an application that uses corba. I have corba books I think I can pick it up easily the idl looks like Microsoft IDL which I know (but have never had to use).

So here's the architecture:

The server is going to be running Red Hat Linux v7.3
There is a PostgreSQL server running on that same machine.
The client application will be written in Java(application).
The clients are all over the world on different types of connections(if behind a firewall and CORBA goes through a certain port it will be the clients responsibility to get that port opened for now)

Since I've never made a client/server app like this before here are my questions:

The client apps are going to be in Java: How does the Java application know where the server is. I'm assuming if I compile the IDL on the server it generate proxy/stubs and headers that I include in the application. Which is how the client will know where the server is. If I'm wrong please tell.

I've seen between 800 - 900 clients on at any given time. And this number is expect to increase. I want to support at least 1500 preferablly 9000 (that could be asking alot but we have another service that we charge for that has over 7000 users and we are thinking about giving them trial memberships to this). So can something like this support that number of clients and how do I throw in another server and have the clients reconize it. Kind of like Win Amp or the old Morepheus where it tries to connect to different servers.

I picked java because of the different number of platforms that we want the client application to run on. Is that the best language to use. And can I write the server in C++ (SPEED) and have the client written in Java.

Thank you..



Avatar of arcarson
arcarson

ASKER

Another question on distribution. What do I have to do to deploy the application.

And looking at one of my books they talk about an IOR distribution problem if the client and server aren't on the same machine what are they talking about.
As far as budgets are concerned. I'm limited to the ORBit for the CORBA ORB or any other free one out there.

I don't have the money to buy any other commercial products. It sucks to be me.
Avatar of girionis
 With regards to money. Why use CORBA and and J2EE? JBoss is completely free and it is a serious application server, several companies use it and you do not need to pay a single penny. Besides your application would be far more portable than by using CORBA. And if you think J2EE's specification is big and complicated wait till tyou see CORBA's.

  If you still want to go on with CORBA bare in mind that there are several products out there for locating CORBA objects but only one works with all Internet Inter-ORB Protocol compliant CORBA implementations. The Interoperable Object Reference (IOR) that provides means to obtain initial references to an object.

  You use the classes in the CosNaming package (Common Object Service - allows an object to be published under s symbolic name and then the client can use this symbolic name to find the object) to obtain a reference to an object. The objects you are trying to obtain do not have to reside in the same physical machine but they can be scattered around your enterprise network.

  With regards to C++ and Java I would say that if you are not willing to move the server to another platform then C++ is a good choice for the server side, even though Java would do as well. At the end of the day it all comes down to personal preferences and how confident you are in a programming language. As for the client Java is the best choice.

  For more information on this and sample code you can read here:

http://www.javaworld.com/javaworld/jw-02-1999/jw-02-enterprise.html and here: http://developer.java.sun.com/developer/technicalArticles/Servlets/corba/

  Hope it helps.
I tried to award you points on 08/16/2002

it gives me an error when I do
 Just try to accept my comment as an answer. If this does not work we can let an administator know about the problem and he can sort it out.

  Please let me know if you still have problems and I can talk to an admin.

  Thank you.
ASKER CERTIFIED SOLUTION
Avatar of girionis
girionis
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial