Workshop missing WebLogic jar files

Hello,
I am new to WebLogic and Workshop (version 8.1.4). We are taking over a production code base from a vendor and have attempted to do a build of the .ear file. The build fails with errors. Looking into this, it appears the IDE does not know about the quoted portion of the following import lines:
Package com.bea contains no member package or type of this name. “com.bea.wli”
import com.bea.wli.control.dynamicProperties.DynamicPropertiesDocument.DynamicProperties;
import com.bea.wli.control.dynamicProperties.EmailControlPropertiesDocument;
import com.bea.wli.control.dynamicProperties.EmailControlPropertiesDocument.EmailControlProperties;
import com.bea.wli.control.dynamicProperties.FileControlPropertiesDocument;
Package com.bea contains no member package or type of this name. “com.bea.data”
import com.bea.data.RawData;
The vendor stated that the .jar files might be located on the actual licensed WebLogic server? To reduce the time of this effort, could someone tell me the specific .jar files to go after?
Thank you very much
Robert

I should clarify further that the copy of Workshop we are using was pulled down from the archive of BEA downloads. We do not have access to a copy of Workshop as configured by the vendor. Additionally, looking at the *.work file for the Application and comparing the .jar files to my Weblogic (local) install the following are missing:
../../../../bea/weblogic81/server/lib/wli.jar;
../../../../bea/weblogic81/portal/lib/wps_system.jar;
../../../../bea/weblogic81/p13n/lib/p13n_system.jar;
../../../../bea/weblogic81/portal/lib/netuix/system/netuix_system.jar;
My assumption is the issue has to do with the wli.jar above. Can someone tel me where a copy can be obtained?
thank you,
Robert

Similar Messages

  • Weblogic.jar file location in  CC&B Media

    Hi Guys
    Can anyone let me know the weblogic.jar file location in CC&B 2.2 media.
    Thanks
    Aleem

    vinod hadlee wrote:
    Hi,
    We use weblogic 8.1 for our development purpose... and mostly work on ejb's. Every time a new ear file is created and deployed we need to specify the jar files needed to run that application in server classpath.... is there any alternate way so that v can avoid specifying these jar files in server classpath...One alternative is you could bundle the jars in the EAR itself in APP-INF/lib.
    Gerald

  • Missing webservices jar files in 9.0.2

    Hi,
    I am trying to deploy webserivces using stateless java class on oc4j version 9.0.2 but i do not have appropriate jar files. Only following jars are installed.
    %OC4J_INSTALL%\j2ee\home\WebServicesAssembler.jar
    %OC4J_INSTALL%\j2ee\home\WebServicesHtmlXmlWizard.jar
    %OC4J_INSTALL%\j2ee\home\wsdl2ejb.jar
    %OC4J_INSTALL%\soap\lib\wsdl.jar
    The environment is windows 2000.
    How can I get appropriate jar files to enable webservices on my installation of oc4j version 9.0.2.0.1
    Thanks
    Salman

    Could you elaborate on what you are missing? On a default OC4J install, downloadable here on OTN, everything is there ... I can point out what you need to locate but am not sure what you see missing or what error messages are leading you to not find classes.
    For example, the soap.jar is normally in the <oc4j_home>\soap\lib\ directory. In the <oc4j_home>\lib and <oc4j_home>\jlib there are also other supporting jars.
    Thanks.
    Mike.

  • Creating a weblogic.jar file?

    I am looking to minimize my client size java app, which makes use of EJBs.
    I am using the verboseToZip utility that is described at:
    http://www.weblogic.com/docs51/techdeploy/verbosetozip.html
    It has reduced the size of the jar from 35MB to about 700K. The application
    has problems starting up, however. I get the exception shown below. Any
    idea what this means? I looked in the jar file, and sure enough there are
    classes in a directory named: com/rsa/jsafe. The error occurs when getting
    the EJB home object (at the start of the application).
    Thanks,
    Mike
    ------------------------------------------Exception-------------------------
    Exception in thread "main" java.lang.NoClassDefFoundError:
    COM/rsa/jsafe/JSAFE_InvalidUseException
    at
    weblogic.security.WLMessageDigest.getInstance(WLMessageDigest.java:53)
    at
    weblogic.security.MD5RandomBitsSource.seed(MD5RandomBitsSource.java:56)
    at weblogic.rjvm.LocalRJVM.<init>(LocalRJVM.java:108)
    at weblogic.rjvm.LocalRJVM.getLocalRJVM(LocalRJVM.java:85)
    at weblogic.rjvm.RJVMManager.getLocalRJVM(RJVMManager.java:89)
    at weblogic.rjvm.RJVMManager.initialize(RJVMManager.java:78)
    at weblogic.kernel.Kernel.ensureInitialized(Kernel.java:137)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:182)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:195)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:148)
    at
    weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFact
    ory.java:123)
    at
    javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
    at
    javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at javax.naming.InitialContext.init(InitialContext.java:222)
    at javax.naming.InitialContext.<init>(InitialContext.java:198)
    at
    com.ecocap.daemon2.dbthread.setupContextAndObjects(dbthread.java:1064)
    at com.ecocap.daemon2.dbthread.<init>(dbthread.java:48)
    at com.ecocap.daemon2.DaemonFrame.<init>(DaemonFrame.java:45)
    at com.ecocap.daemon2.daemon.<init>(daemon.java:27)
    at com.ecocap.daemon2.daemon.main(daemon.java:184)

    Don,
    Thanks for responding so quickly. You are correct - I am on Windows. I
    didn't realize it was a case sensitivity problem. Anyway, I took your third
    option, since it was the least painful for me and everything worked.
    Thanks,
    Mike
    "Don Ferguson" <[email protected]> wrote in message
    news:[email protected]...
    Let me guess: this is on Windows. I bet the problem concernscase-insensitive
    file names. When creating the client jar, a "com" directory was created.When
    it came time for the COM directory, Windows just treated it as equivalentto
    "com". However java does not. There are a variety of solutions:
    a) use Unix to build the client jar
    b) use ant to extract the appropriate subset of classes from weblogic.jarwhen
    creating the client.jar (bypassing the filesystem).
    c) move the COM stuff to a separate directory tree, and use somecombination of
    jar -C or jar -u to create the client.jar.
    Don
    Michael DiChiappari wrote:
    I am looking to minimize my client size java app, which makes use of
    EJBs.
    I am using the verboseToZip utility that is described at:
    http://www.weblogic.com/docs51/techdeploy/verbosetozip.html
    It has reduced the size of the jar from 35MB to about 700K. Theapplication
    has problems starting up, however. I get the exception shown below.Any
    idea what this means? I looked in the jar file, and sure enough thereare
    classes in a directory named: com/rsa/jsafe. The error occurs whengetting
    the EJB home object (at the start of the application).
    Thanks,
    Mike
    ------------------------------------------Exception-------------------------
    Exception in thread "main" java.lang.NoClassDefFoundError:
    COM/rsa/jsafe/JSAFE_InvalidUseException
    at
    weblogic.security.WLMessageDigest.getInstance(WLMessageDigest.java:53)
    at
    weblogic.security.MD5RandomBitsSource.seed(MD5RandomBitsSource.java:56)
    at weblogic.rjvm.LocalRJVM.<init>(LocalRJVM.java:108)
    at weblogic.rjvm.LocalRJVM.getLocalRJVM(LocalRJVM.java:85)
    at weblogic.rjvm.RJVMManager.getLocalRJVM(RJVMManager.java:89)
    at weblogic.rjvm.RJVMManager.initialize(RJVMManager.java:78)
    at weblogic.kernel.Kernel.ensureInitialized(Kernel.java:137)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:182)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:195)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:148)
    at
    weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFact
    ory.java:123)
    at
    javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
    at
    javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at javax.naming.InitialContext.init(InitialContext.java:222)
    at javax.naming.InitialContext.<init>(InitialContext.java:198)
    at
    com.ecocap.daemon2.dbthread.setupContextAndObjects(dbthread.java:1064)
    at com.ecocap.daemon2.dbthread.<init>(dbthread.java:48)
    at com.ecocap.daemon2.DaemonFrame.<init>(DaemonFrame.java:45)
    at com.ecocap.daemon2.daemon.<init>(daemon.java:27)
    at com.ecocap.daemon2.daemon.main(daemon.java:184)

  • WEBLOGIC Jar Files

    Dear Friends,
    1) What all jar  files  required in XI Server to Connect  for  WEBLOGIC  Server  (  The Queue is in Weblogic Server..From SAP XI  we are connecting  with the help of JMS Adapter using  JNDI )
    2) Should  we deploy  any JAR file  in WEBLOGIC  server  side
    3) Should we deploy  any Jar files  related to JMS in our  XI Server.
    Thanks for your time and effort.
    Regards
    Agasthuri Doss

    Thanks Shabarish,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bf4b1055-0d01-0010-32a3-b3848d77a6b9
    We have did  it  and crossed  checked twice.
    Any Comments  Shabarish
    Regards
    Agasthuri Doss

  • Missing EUS_EDir.jar file

    Hello
    I have installed the following components:
    Component
    Version
    Oracle WebLogic Server
    11gR1 (10.3.6)
    Oracle Identity Management
    11g Patch Set 6 (11.1.1.7.0) for Linux x86-64
    I am now trying to integrate OVD with EUS for users stored in Novell eDirectory. Whilst configuring OVD for the Integration, I am getting the following error when I am trying to deploy the EUS_EDir Mapping Template.
    Directory Service Manager > Advanced > Mapping Templates > EUS_EDir
    Click on Apply
    I then get the following error:
    jar file /appl/iam/Oracle/Middleware/user_projects/domains/IDMDomain/servers/wls_ods1/tmp/_WL_user/odsm_11.1.1.2.0/z5xils/war/conf//ovdmapping/jars/EUS_EDir.jar does not exist !
    Can someone please help.
    Thanks

    All source and class files are exported into 1 folder (src). I enabled the "use output
    folders src/bin" option in Java > Build path. And tried a lot of the options provided
    during the exporting of a JAR.This is an Eclipse, rather than an Omondo, problem. And not really a "Java Programming" problem. My intent in saying this is not to put you off, but to suggest that Eclipse may have forums that provide better advice, faster.
    Work through any simple, tutorial type, examples that came with Eclipse if you are unfamiliar with it - to see what the options are, and how you would use them.
    Check that your project really is using separate src/bin directories, either by checking for the physical files, or from the "Package Explorer" pane. Right click on the project icon and select "Properties". Check under the "Java Build Path" settings that the "Source" tab shows <project name>/src and the default output folder is listed as <project name>/bin.
    Check that when you export the jar file, in the "Jar File Specification" pane, that the "Export Java source files and resources" check box is as you want it.

  • Disable workshop polling of jar files

    Hi folks,
    We currently build our application outside of workshop through a customised exported_build.xml
    file. The build process works fine, however, as soon as we have done a build,
    and deployed, workshop notices that the files have changed, and decides to redeploy
    them again. This is the case in both development mode and production mode. Is
    there anyway to disable this polling?
    Cheers
    Dennis

    "Dennis" <[email protected]> wrote:
    >
    Hi folks,
    We currently build our application outside of workshop through a customised
    exported_build.xml
    file. The build process works fine, however, as soon as we have done
    a build,
    and deployed, workshop notices that the files have changed, and decides
    to redeploy
    them again. This is the case in both development mode and production
    mode. Is
    there anyway to disable this polling?We were able to fool workshop by using the touch task to set an old date on the
    jar as soon as it has been build.
    >
    Cheers
    Dennis

  • Missing Orion.jar file when running bc4j-ojsp.zip installation

    Hi
    I've run into a problem with installing the BC4J runtime kit
    once it's unpact and I try to run the bat file it's complaing
    that it cannot find the orion.jar file, when i search the c
    drive there is no orion.jar file either
    anyone got any ideas and or the orion.jar file and some
    instructions about where it needs to go ?
    regards
    Malcolm

    The orion.jar file is placed in the ?\j2ee\home directory. If it
    is not there reinstall and/or re-download the oc4j.zip file and
    unzip again.

  • Error while compiling Web Dynpro program due to missing JAR files

    Hi Experts,
    I am getting error message while compiling Web Dynpro program. The erring lines are as below:
              Message message = new MimeMessage(session);
              try {
                   message.setFrom(new InternetAddress(fromMailId));
                   message.addRecipient(
                        Message.RecipientType.TO,
                        new InternetAddress(toMailId));
                   message.setSubject(mailSubject);
                   message.setText(mailBody);
                   message.setHeader("X-Mailer", "E-Mail");
                   message.setSentDate(new Date());
                   Transport.send(message);
    The error messages are:
    Message.ReceipientType can not be resolved
    The method send(Message) is undefined for the type Transport
    The method setFrom(InternetAddress) is undefined for the type Message
    The method setHeader(String, String) is undefined for the type MessageThe method setSentDate(Date) is undefined for the type Message
    The method setSubject(String) is undefined for the type Message
    The method setText(String) is undefined for the type Message
    Type mismatch: cannot convert from MimeMessage to Message
    Can you please help me in resolving the issue. It seems that some API is missing. I believe if some one can tell me the name of JAR file / API then I will be able to sort out the issue. I will add these JAR file in my program.
    Thanks,
    S

    HI Stuart,
    you are missing the jar files required for sending mail in java
    Installing JavaMail
    You will need the latest version of JavaMail (Version 1.2) available here:
    http://java.sun.com/products/javamail/
    Download and unzip the file, in the newly created top level JavaMail directory you will find a number of jar files,
    these need adding to your classpath.
    To do this in Eclipse, right click on your project in the tree view, select properties, select the libraries tab.
    Now click the 'Add external jars' button, navigate to your JavaMail directory and click on the jars.
    The tutorial also makes use of the Java Activation Framework, which is available here:
    http://java.sun.com/products/javabeans/glasgow/jaf.html
    Instalation of JAF is identical to JavaMail
    activation.jar / mail.jar are 2 distinct names i remember rest you will get above
    P.S: close the question to assist other users narrow the search and find solutions
    Message was edited by:
            Armin Reichert

  • Weblogic Classes / Jar files

    Is there place that list the classes for a particular weblogic jar file? Right now a developer asked me what .jar file does this class, weblogic.logging.NonCatalogLogger, live in. The only way I know how to find out is to unjar each jar file until I find it. Is there an easier way?
    Thanks.

    you can use jarscan tool
    http://it.cybergav.in/2009/09/30/scanning-jars-with-jarscan/

  • Can not find weblogic_sp.jar file after installed weblogic

    I just installed weblogic server (using weblogic610sp2_win.exe file) on my windows
    2000 pro box. Everything looks fine but I can not find the < weblogic_sp.jar >
    file. I noticed some guys met same problem but no answer.
    can you help me ?

    Hi.
    Don't worry about it.
    The reference to weblogic_sp.jar is a leftover from previous methods for updating
    service packs. Nowadays when you install a service pack it is integrated into the
    weblogic.jar file. If you have any doubts about your server version after installing
    or applying a service pack you should check the server version via the console
    (Servers|<server name>|Monitoring|Versions). Your version string should look
    something like: "WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529"
    Regards,
    Michael
    Leo wrote:
    I just installed weblogic server (using weblogic610sp2_win.exe file) on my windows
    2000 pro box. Everything looks fine but I can not find the < weblogic_sp.jar >
    file. I noticed some guys met same problem but no answer.
    can you help me ?--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Can't find jar-file in DC

    Hello,
    I'm developing a JSPDynpage with beans.
    These beans connect to an R/3-system.
    I want to make use of the Connector Framework.
    I added the needed used DC's to my development component, but I'm still missing 1 jar-file with the IConnectorGateService-class (i think its the connectorserviceapi.jar) wich DC do I have to add to my used DC's?
    Thanks for help,
    Joachim
    Message was edited by: Joachim Van Praet

    Hello,
    Ok, Then you have to create a seperate DC if type "<b>EXTERNAL Library</b>" , And then make it as a public part for use by other DC's. For more information you can try do like this.
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2361">Add External Jar to DC</a>
    I hope this will solve your problem.
    Regards
    Pravesh

  • Jar files for TinyMCE editor

    Hello friends,
    I'm trying to integrate TinyMCE editor in our new 7.3 Portal WPC. As part of process, I downloaded the 'How To Integrate the TinyMCE JavaScript Content Editor in Web Page Composer_Code.zip' file and followed instructions. However, my NWDS project is missing following JAR files and I can't find them anywhere.
    tc.km.frwk.jar
    com.sap.nw.pcc.xmleditor.jar
    I checked with my Basis team and they are clueless as well. Could you help me find these jar files? Appreciate your timely help.
    Thanks,
    Vishwas.

    Hi
    Open the .zip file you downloaded (How To Integrate the TinyMCE JavaScript Content Editor in Web Page Composer_Code.zip or sth like that) with your zip software.
    - Chose the Folder: TinyMCEEditorComponent
    - Here you find a file called .classpath
    - Open this file with your texteditor and delete the following  two lines towards the end with:
    <classpathentry exported="true" kind="lib" path="//production2.....com.sap.nw.pcc.xmleditor.jar"/>
    <classpathentry exported="true" kind="lib" path="//production2...../_kmfrwk/tc~km~frwk.jar"/>
    - close the file and save your changes
    - now you can import the .zip into your NWDS, make changes when needed  and deploy it to your portal
    BR
    Christophe

  • Adding weblogic.jar in BPM enterprise 10.3.1

    Hi I am loking to add weblogic.jar file into enterprise I have added jar file in enterprise_home/lib folder but it is not recognizing from there can anybody suggest where is the exact place.
    If I am adding as an external resource in studio and trying deploy the exp file it is saying The attachment size exceeds the allowable limit of 10000000 bytes.
    in the process admistrator.
    Please help me it is urgent.
    Thanks

    Hi YE,
    If you are deploying BPM on a Weblogic Server you'll find your workspace on the following url
    http://localhost:7001/workspace
    This is because the all the jar services are deployed to the WLS. You can monitor if it is installed by going into the Process administrator -> Engines -> J2EE jar deployment (or something)
    There you'll find all the jars that are/can be deployed. If you make any changes using the BPM admin center configuration don't forget to recreate and redeploy the jar file.
    Hope this helps.
    Kind regards
    Nils

  • RMI problem with weblogic.jar

    We have a pure Java client that connects to the Weblogic server.
    While trying to connect we receive the error message below.
    I have unjarred the weblogic.jar file and discovered that the
    Stub.class is actually in weblogic/rmi/extensions/server/
    while it expects it to be in weblogic/rmi/extensions .
    Is there a fix for this as we are trying to upgrade from a previous version of weblogic and go live in Jan.
    Thanks
    Dave F
    java.lang.NoClassDefFoundError: weblogic/rmi/extensions/Stub(

    I'd suggest that you run the vm with the debug flag (-verbose) and see where the classes are being loaded; and examine the classpath to determine where the old jar or classes are occurring.
    Rita wrote:
    We have re-jarred the Stub.class and put it under weblogic/rmi/extensions, but when the java app runs, it still tries to look in weblogic/rmi/extensions/server. So, I think somewhere in the weblogic.jar, the path specified is still weblogic/rmi/extensions. Do you know what need to be done?
    Thanks,
    Rita
    Eduardo Ceballos <[email protected]> wrote:
    Yes, please regenerate your stub classes. That is, re-run rmic or ejbc.
    David Furlong wrote:
    We have a pure Java client that connects to the Weblogic server.
    While trying to connect we receive the error message below.
    I have unjarred the weblogic.jar file and discovered that the
    Stub.class is actually in weblogic/rmi/extensions/server/
    while it expects it to be in weblogic/rmi/extensions .
    Is there a fix for this as we are trying to upgrade from a previous version of weblogic and go live in Jan.
    Thanks
    Dave F
    java.lang.NoClassDefFoundError: weblogic/rmi/extensions/Stub(

Maybe you are looking for

  • Recommendation for storing/archiving AVCHD material

    I'm sure this isn't a new question but after a bit of searching I still wasn't able to find it on this forum. I have one of the newish Sony consumer cameras with flash memory. I use Log and Transfer in FCE to import the footage and that's all good. H

  • Computer Issues

    Advice or direction for questions is needed. Start up is altered. System Configuration always loads a Selective. Applying to revert to Normal and restarting is never successful. Delayed load seems antagonized and characteristic of spam. Subsystem see

  • Photosmart 6510 I want to scan multiple photos then separate them into albums

    Photosmart 6510 ,can I scan multiple pictures then create albums from the files I scanned into IPhoto.? I tried but could not download individual pictures off the photo I scanned. This question was solved. View Solution.

  • HT3302 Does the extended apple care cover water damage to the iphone?

    Does the extended apple care cover water damage to the iphone?

  • Modifying Daqmx Function Generator

    hi everyone, I found an example from ni and I want to have it modified a little bit. I need to add delay before and after generating the sinewave in 1 channel, how to do that? Just simply delay, sinus, delay. Then I need to have range of control for