Well, here is what the WebLogic server console was giving me:
WLS Start Mode=ProductionThat's never going to start in debug mode, because Production mode precludes debug mode. I needed to get the server to start in Development mode first.
.
…
Starting WLS with line:
C:\bea\JROCKI~1\bin\java -jrockit [missing some parameters] -Xms256m -Xmx512m…
I ended up having to go through my server startup (*.cmd or *.sh) and config (*.xml) files looking for things like this:
set PRODUCTION_MODE=true...or this:
<setenv name="PRODUCTION_MODE">...and changing them from true to false. I had used a customized installer which probably had set them to true.
<value>true</value>
</setenv>
That finally did the trick; now when I started the server in debug mode in Eclipse, I got the following in the server console:
WLS Start Mode=DevelopmentAnd the Eclipse debugger can now talk to the server.
.
…
Starting WLS with line:
C:\bea\JROCKI~1\bin\java -jrockit -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socke
t,address=8453,server=y,suspend=n -Djava.compiler=NONE -Xms256m -Xmx512m…