• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

java.rmi.ConnectException when updating the application

 
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have an application deployed on weblogic 9.2 server.But when i update the application from the console it is throwing the below error:-

java.rmi.ConnectException: Bootstrap to kbcs.rem.com:3550 failed. It is likely that the remote side declared peer gone on this JVM
at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:339)
at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:259)
at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:202)
at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:226)
at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:189)
at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:154)
at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:349)
at weblogic.jndi.Environment.getContext(Environment.java:307)
at weblogic.jndi.Environment.getContext(Environment.java:277)
at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
at javax.naming.InitialContext.init(InitialContext.java:223)
at javax.naming.InitialContext.<init>(InitialContext.java:175)
at weblogic.deployment.BaseEnvironmentBuilder.findObject(BaseEnvironmentBuilder.java:201)
at weblogic.deployment.BaseEnvironmentBuilder.findObjectOrCreateLinkRef(BaseEnvironmentBuilder.java:231)
at weblogic.deployment.BaseEnvironmentBuilder.addUserTransaction(BaseEnvironmentBuilder.java:290)
at weblogic.deployment.BaseEnvironmentBuilder.<init>(BaseEnvironmentBuilder.java:134)
at weblogic.deployment.BaseEnvironmentBuilder.<init>(BaseEnvironmentBuilder.java:154)
at weblogic.deployment.EnvironmentBuilder.<init>(EnvironmentBuilder.java:49)
at weblogic.servlet.internal.CompEnv.<init>(CompEnv.java:82)


Then after this i have to restart the server to successfully update the application from the console.In the above exception the machine name which is in BOLD part is where my database is hosted..i mean the one which i have mentioned in the datasource.

Any idea why this is happening ???
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It might be referring to a pooled connection that went bad after you did the restart. Do you see anything that hampers functionality ?
 
Hey, I'm supposed to be the guide! Wait up! No fair! You have the tiny ad!
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic