Thomas:
  Thanks for the reply.  I think I understand now. See below.

On Mar 6, 12:13 am, Thomas Mueller <[email protected]>
wrote:

>
> You wrote "I am starting up in mixed mode". How did you start up? Did
> you open a database connection? Why do you expect a web page should
> come up?
>
I am starting up using a jdbc connection url of:  jdbc:h2:db/
dbname;AUTO_SERVER=TRUE; in process A on server X.
I want to connect another process in a different JVM to the database
in process A using JDBC so the URL I need to use is:

   jdbc:h2:db/dbname;AUTO_SERVER=TRUE;

or

 jdbc:h2:db/dbname

per your comments below:

> All clients that want to connect to the
> database (no matter if it's an embedded or remote connection) can do
> so using the exact same database URL."

So, I do not need and can NOT  use the URL of the format: "Remote
using TCP/IP  jdbc:h2:tcp://<server>[:<port>]/<databaseName> "

Is this correct?

This is why I am asking about the port number.  In other words the
Mixed Mode capability only works on the same server, it does not
support remote TCP connections?
If I am wrong, then I would need to know the port number for remote
server applications to allow it to connect.

My goal is to run Mixed Mode (embedded) in process A on server X but
have an application on server Y access the database in process A on
server X.
It this possible? I still want to use the embedded feature because of
the speed.

Thanks,

Dave

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to