Sudarson Roy Pratihar <[EMAIL PROTECTED]> on 07/07/2000
05:21:57 AM

Please respond to A mailing list for Enterprise JavaBeans development
      <[EMAIL PROTECTED]>

To:   [EMAIL PROTECTED]
cc:    (bcc: Ramanand Komarraju/NYDEV/NYC/INSTINET)
Fax to:
Subject:  hot-deployment weblogic 5.1.0



Hi all,
I'm using thw weblogic 5.1.o beta version. While using and developing
beans and deploying the same I came accross the followings:

1. is it possible to run the weblogic server where oracle client(i.e. any
database client from the database vendor) is not installed ? because I
found in your documentation, weblogic is providing the jDriver which is in
mycase at \weblogic\bin\oci805_8 (for my oracle server version 8.0.5 and
is on remote machine). if possible, what should I mention as "server" in
the weblogic.property file ?


You cannot run Weblogic's driver with installing Oracle's client on your machine
since it uses OCI DLLs to communicate with Oracle server.  However, you can
obtain Oracle's thin driver (pure Java, so you don't need Oracle Client) from
Oracle's website to connect to the database.

2.Is it possible to hot-deploy some bean on some computer on the lan from
the same computer to the server on different computer ? if possible, what
should write as the jar files path in the deployment command ?

You can deploy to any machine that's on your network.  Here are some commands
(usually embedded in some script) that I use:

To deploy:
java weblogic.deploy -port 7001 -host localhost deploy  password mytest
c:\weblogic\myserver\myejb.jar

Where:
7001 is the port number.
localhost can be replaced with any host name/IP address
password (can be found in weblogic.properties file on the server machine.
Entered it by default during installation) is to make sure you are authorized to
 adm. stuff.
mytest is the name that you can identify your hot deployment with.  For example,
 you can undeploy the beans by specifying the same name (mytest).
the last parameter is the full path of the EJB jar file.

To undeploy:

java weblogic.deploy -port 7001 -host localhost undeploy  password mytest

To redeploy:

java weblogic.deploy -port 7001 -host localhost update  password mytest

For more information, read:  C:\weblogic\techdeploy\hotdeploy.html  (or the
corresponding URL on your installation).

Cheers,
Ram.





My opearting system id Windows 95, Oracle sever is ver 8.0.5 and I'm
interested in using the scripts for deployment.

regards,
------------------------------------------------------------------------------

sudarson

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to