Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Weblogic 6.1 and Eclipse2.1.3 integration

Status
Not open for further replies.

dandymandy

Programmer
Dec 13, 2004
1
US
I have integrated Weblogic6.1 the Admin and Manage Servers with eclipse 2.1.3 as a Java Application. Though the Admin Server starts up properly the Manage Server has certain errors.

My Admin and Manage server Arguments in Eclipse are as -

Admiin Args -
-Dnohup -Xnoclassgc -Xms64m -Xmx128m -Dweblogic.system.home=C:/app/weblogic6/wlserver6.1 -Dweblogic.RootDirectory=C:/app/weblogic6/wlserver6.1 -Dbea.home=C:/app/weblogic6 -Djava.security.policy=C:/app/weblogic6/wlserver6.1/lib/weblogic.policy -Dweblogic.Domain=mydomain -Dweblogic.Name=myserver -Dweblogic.management.password=1password -Dweblogic.management.discover=false


Manage Args -
-Deapi.propdir=config/ -Xnoclassgc -Xms256m -Xmx256m -Dweblogic.jsp.windows.caseSensitive=true -Dweblogic.ProductionModeEnabled=true -Dweblogic.J2EE12OnlyModeEnabled=true -Dweblogic.management.discover=false -Dweblogic.Domain=bluemartini -Dweblogic.Name=WebConnect "-Djava.security.policy==C:\app\weblogic6\wlserver6.1\lib\weblogic.policy" "-Dbea.home=C:\app\weblogic6" -Dweblogic.management.password=1password -Dweblogic.management.server= "-DBMS_APPCONFIG=C:\app\bmapps50\config\webconnect.appconfig.dna"

The Errors with the manage server is as follows -

Starting WebLogic Server ....
Connecting to ***************************************************************************
The WebLogic Server did not start up properly.
Exception raised: weblogic.management.configuration.ConfigurationException: connecting to - with nested exception:
[java.net.ConnectException: Tried all: '1' addresses, but could not connect over HTTP to server: 'localhost', port: '7001']
java.net.ConnectException: Tried all: '1' addresses, but could not connect over HTTP to server: 'localhost', port: '7001'
at weblogic.net.http.HttpClient.openServer(HttpClient.java:203)
at weblogic.net.http.HttpClient.openServer(HttpClient.java:254)
at weblogic.net.http.HttpClient.<init>(HttpClient.java:117)
at weblogic.net.http.HttpClient.New(HttpClient.java:149)
at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:109)
at weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:279)
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:230)
at weblogic.management.Admin.getBootstrapLocalServer(Admin.java:983)
at weblogic.management.Admin.initialize(Admin.java:311)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:354)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:197)
at weblogic.Server.main(Server.java:35)
--------------- nested within: ------------------
weblogic.management.configuration.ConfigurationException: connecting to - with nested exception:
[java.net.ConnectException: Tried all: '1' addresses, but could not connect over HTTP to server: 'localhost', port: '7001']
at weblogic.management.Admin.getBootstrapLocalServer(Admin.java:1068)
at weblogic.management.Admin.initialize(Admin.java:311)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:354)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:197)
at weblogic.Server.main(Server.java:35)
Reason: Fatal initialization exception
***************************************************************************
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top