Sridhar
Sridhar

Reputation: 15

Tell me jar files for weblogic

I'm getting errors in my IDE that there is no dependent jar file for importing

import weblogic.websocket.ClosingMessage;
import weblogic.websocket.WebSocketAdapter;
import weblogic.websocket.WebSocketConnection;
import weblogic.websocket.annotation.WebSocket;

all sites gave examples with the interfaces and classes in the jar, not available to download those jar. Help me here to identify jar file for this! Many thanks

Upvotes: 1

Views: 4281

Answers (2)

bhandari
bhandari

Reputation: 11

Manually install jar like

e.g: mvn install:install-file -DgroupId=weblogic -DartifactId=com.bea.core.weblogic.rmi.client -Dversion=1.4.0.0 -Dpackaging=jar -Dfile=C:\webservers\bea\modules\com.bea.core.weblogic.rmi.client_1.4.0.0.jar

Upvotes: 0

Samarjeet
Samarjeet

Reputation: 36

Please try to add weblogic server in eclispe server. Or you can add "wls-api.jar".

Path of jar: oracle/Middleware/Oracle_Home/wlserver/server/lib/wls-api.jar

Upvotes: 2

Related Questions