I have a test application that I created to start learn weblogic with Eclipse . yesterday the jsp page was working well when I run as / on server , I got the basic page that I created . but today I have an error message :
FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197) ERROR: transport error 202: bind failed: Address already in use ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510) JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../src/share/back/debugInit.c:750]
in the browser I got this :
Error 404--Not Found From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1: 10.4.5 404 Not Found The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
and an other time I got this on console :
weblogic.application.ModuleException: null null at weblogic.servlet.internal.WebAppModule.createModuleException(WebAppModule.java:1824) at weblogic.servlet.internal.WebAppModule.init(WebAppModule.java:270) at weblogic.servlet.internal.WebAppModule.init(WebAppModule.java:682) at weblogic.application.internal.flow.ScopedModuleDriver.init(ScopedModuleDriver.java:162) at weblogic.application.internal.ExtensibleModuleWrapper.init(ExtensibleModuleWrapper.java:98) Truncated. see log file for complete stacktrace
can you explain to me what I miss , when I start the server it has the status started . thank you I can add any information .
Address already in use ERROR
probably means the port is already opened. Add your debugging configuration to the question. – LMC-Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=9000, suspend=n
. Thataddress
defines the port the jvm will be listening for debug clients like Eclipse. – LMC