I must be doing something wrong here. I am new to intellij. Making switch from eclipse. I have a JAX WS application that runs on weblogic. The artifact to deploy is an ear f
To setup WebLogic debugging on IntelliJ:
Find the WebLogic Debug Port: this is the port on WebLogic exposed for debugging. The default debug port is 8453 but if it was changed you can find it in the config.xml (under the config folder in your domain home) or the setDomainEnv.sh look for DEBUG_PORT (I assume it is .sh and not .bat as you appear to be using Mac OS X).
Remote Debugger Configuration: go to the configuration and choose new, then select "Remote" ,type in any name that is sensible and under the port (orange block in image) type in the value you found in 1. For host (the green block) type localhost [a side note: you can connect to a remote server by typing that servers host name or IP if the debug port is exposed].
--Edit 1--
Read your question again missed the part about you already having setup the remote config.
It may be missing the breakpoint if your program is multi-threaded the breakpoint may not be hit on the current thread you are on.
There is a drop down in the debugger when you have the remote configuration working where you should be able to select the thread to debug on.
-- Edit 2 --
Added the image for the remote debugger settings