based on the error:
weblogic.management.configuration.ConfigurationException: XmlRepository directory C:\bea\wlserver6.1″ -Dweblogic.Domain=EaaDevP3 -Dweblogic.Name=EAADevServer \config does not exist
at weblogic.management.internal.xml.XmlFileRepository.setDirectories(XmlFileRepository.java:88)
at weblogic.management.AdminServer.initializeRepositories(AdminServer.java:208)
at weblogic.management.AdminServer.configureFromRepository(AdminServer.java:183)
at weblogic.management.AdminServer.configure(AdminServer.java:173)
at weblogic.management.Admin.initialize(Admin.java:257)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:365)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:212)
at weblogic.Server.main(Server.java:35)
Reason: Fatal initialization exception
it seems that somehow the plugin is feeding the entire path C:\bea\wlserver6.1″ -Dweblogic.Domain=EaaDevP3 -Dweblogic.Name=EAADevServer \config into the weblogic server. It should be
C:\bea\wlserver6.1\config
somehow myeclipse appended (incorrect truncation?) the weblogic runtime parameters into the path and evaluated the “wlserver6.1” directory into
wlserver6.1" -Dweblogic.Domain=EaaDevP3 -Dweblogic.Name=EAADevServer
This should be the problem. Only thing is, I don’t know where myeclipse is feeding this path to weblogic.
-James