Where can i get  WLInitialContextFactory  classes

Hello all.
I am making a JMS application , however i am getting the error
Could not create JNDI API context: javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
Can anyone tell me where can i get the WLInitialContextFactory in weblogic server classses .

Hi,
WebLogic Server 10.0 and higher releases, client applications should use the wlfullclient.jar file to provide the WebLogic Server specific functionary previously provided in the weblogic.jar file. You can generate the wlfullclient.jar file for client applications using the JarBuilder tool.
This is a very powerful Jar file...which can be build using a Simple ANt Script: http://weblogic-wonders.com/weblogic/2010/02/03/building-wlfullclient-jar/
After making this Jar...Please add this Jar file on clients Classpath.
Thanks
Jay SenSharma

Similar Messages

  • Where can i get free class to learn my iPad mini?

    I thought i could get free class on my new mini at local store, but when i try to register for class there aren't any.  where can i go to learn how to use my mini? i am a first time user of any apple product.

    Read your manual
    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf

  • JSPSmartUpload -- Where can i get mySmartUpload class

    Everything references mySmartUpload yet it didnt come with the download. Does anyone know where I can get this from. I search jspsmart.com for quite a while and cannot seem to find it.
    Does anyone out there have a copy or know what i did wrong?
    Thanks for your time!
    Adam

    I realize this is an old message, but I'm just answering for anyone who might peruse this later and need an answer...
    mySmartUpload is the name of the bean instance being used in the application. In the jsp, there should be a line to use the bean like:
    <jsp:useBean id="mySmartUpload" scope="page" class="com.jspsmart.upload.SmartUpload" />
    Then, mySmartUpload is the bean id to use through out the page, such as mySmartUpload.upload(), etc.

  • Where can I get a compiler?

    Where can I get a compiler that I can use that is like sun's but doesnt use an IDE?

    This may duplicate some of what you've already done, if so fine. But please verify you've done exactly what is written or know why you shouldn't before proceeding. You may want to print these instructions before continuing.
    To download the current version of Java, go here:
    http://java.sun.com/j2se/1.4.1/download.html
    and click on the word DOWNLOAD in the column labeled SDK in this line:
    Windows (all languages, including English)
    After downloading, click on this page of installation instructions and read through #6:
    http://java.sun.com/j2se/1.4.1/install-windows.html
    NOTE: If you are installing on other than a standard 32-bit Windows system, go to this page
    http://java.sun.com/j2se/1.4.1/install.html and choose the installation instructions for your system.
    Install the software according to the preceeding instructions
    Below is a Helloworld program, copy and paste it into your editor and save it as "HelloWorld.java" Use capitalization, Java is case-sensitive. If you're using Notepad, quote the name when saving, otherwise Notepad adds ".txt" to the name. Go to DOS/command window and check that you've got the file where you want it and that it's named correctly.
    -------program HelloWorld.java--------
    public class HelloWorld {
    public static void main (String[] args) {
    System.out.println("Hello World!");
    In the same directory as HelloWorld.java, enter "javac" - the program should print out a list of options, if not, set your PATH - see below.
    In the same directory as HelloWorld.java, enter "javac HelloWorld.java" and the javac compiler will create HelloWorld.class. If it was successful it will not give any messages. Check that the file is created.
    In the same directory as HelloWorld.java, enter "java -classpath . HelloWorld" with the spaces and the period. The program will run.
    Here is additional information:
    The Windows path is a set of pointers that Windows uses to locate programs that you execute, like javac.exe and java.exe. This setting is explained here:
    http://java.sun.com/j2se/1.4.1/install-windows.html
    Scroll down to: 5. Update the PATH variable
    (you should have already done this as part of the Java installation)
    The CLASSPATH is another set of pointers that is used by Java to find the files that you create and want compiled and/or run. This setting is explained here:
    Setting the Classpath:
    http://java.sun.com/j2se/1.4.1/docs/tooldocs/windows/classpath.html
    [NOTE: always start your classpath with ".;" which means the current directory. See my classpath, below]
    How Classes are Found:
    http://java.sun.com/j2se/1.4.1/docs/tooldocs/findingclasses.html
    Examples:
    This is my path
    PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\BATCH;C:\J2SDK1.4.1\BIN;C:\PROGRA~1\UTILIT~1;C:\PROGRA~1\WIN98RK
    This is my classpath
    CLASSPATH=.;C:\mjava;C:\mnrx;C:\NetRexx\lib\NetRexxC.jar;C:\j2sdk1.4.1\lib\tools.jar;C:\NetRexx\NrxRedBk

  • Where can I get a java API specification for jdk 6 update 7?

    Where can I get a java API specification for jdk 6 update 7?
    About jdk-6u7-windows-i586-p.exe

    Flying_eagle wrote:
    I don't know what is it called. I think maybe it's a specification about api that lists java api and explains how to use them.
    Such as a html file just like a dictionary.Well, the API documentation I posted a link of in reply #1 is not an explanation of how to use the Java classes. It is more a reference. When you need a thorough explanation, I recommend doing some tutorials, or buying a book.

  • Where can I get Jaws.jar from Sun?

    Where can I get Jaws.jar from Sun?
    thank you.
    while I use seach in download I do not find it.

    // new class for jsObject!!!! since 1.4.2 compile this:
    // javac -classpath "C:\Program Files\Java\j2re1.4.2_01\lib\plugin.jar" test.java
    // since jaws.jar does not exsist anymore
    // to compile with jaws: javac -classpath "C:\j2sdk1.4.0_03\jre\lib\jaws.jar" test.java
    http://www.tek-tips.com/faqs.cfm?fid=5101

  • Where can i get infor about system.property

    hi there
    where can i get infor about the key words to find system property.

    If you mean the properties returned by System.getProperties(), then the API lists the keys. Here's the 1.4 list:
    java.version                        Java Runtime Environment version
    java.vendor                         Java Runtime Environment vendor
    java.vendor.url                     Java vendor URL
    java.home                           Java installation directory
    java.vm.specification.version       Java Virtual Machine specification version
    java.vm.specification.vendor        Java Virtual Machine specification vendor
    java.vm.specification.name          Java Virtual Machine specification name
    java.vm.version                     Java Virtual Machine implementation version
    java.vm.vendor                      Java Virtual Machine implementation vendor
    java.vm.name                        Java Virtual Machine implementation name
    java.specification.version          Java Runtime Environment specification version
    java.specification.vendor           Java Runtime Environment specification vendor
    java.specification.name             Java Runtime Environment specification name
    java.class.version                  Java class format version number
    java.class.path                     Java class path
    java.library.path                   List of paths to search when loading libraries
    java.io.tmpdir                      Default temp file path
    java.compiler                       Name of JIT compiler to use
    java.ext.dirs                       Path of extension directory or directories
    os.name                             Operating system name
    os.arch                             Operating system architecture
    os.version                          Operating system version
    file.separator                      File separator ("/" on UNIX)
    path.separator                      Path separator (":" on UNIX)
    line.separator                      Line separator ("\n" on UNIX)
    user.name                           User's account name
    user.home                           User's home directory
    user.dir                            User's current working directory

  • HT201318 i've paid for my icloud storage but now need a vat receipt, where can i get one?

    i've paid for my icloud storage but now need a vat receipt, where can i get one?

    Usually Apple sends an invoice to your mail 1-2 days after your purchase.
    You may even search the invoice yourself, but I'm not sure if you will find it before 1-2 days.
    More info here  https://discussions.apple.com/message/12360444#12360444

  • Where can I get a new hard drive for my intel imac?  **** thing dumped, less than 3 years old.

    This is my first mac and the **** hard drive crashed in only 2+ years and of course the waranty is expired.  Can I replace the hard drive with any 3.5" replacement or do I need something special.  And if I do where can I get it?  I didn't see anything specifically for an intel imac at apple store.  I don't want to pay apple to install it, already spent enough money on this disappointing purchase.

    any 3.5" Sata drive will do.  I recommend http://www.macsales.com/, or http://www.newegg.com/

  • PI 7.11 - Where can I get the NEW java API's

    Hi,
    We use PI 7.0 in productive environment, but we plan a release update to PI 7.11. We have several Java Mappings for PI 7.0 with Java 1.4. So we have to upgrade this also to Java 1.5.
    We are using following SAP Java libs:
    - aii_map_api.jar
    - aii_mt_rt.jar
    - guidgenerator.jar
    - sapxmltoolkit.jar
    Where can we get the equivalent libraries of the PI 7.11 system. Are there new API's? Is there a documentation where to get this?
    Thx in advance
    Michael

    Thx !!!
    Quick answer )

  • I need to connect my iPad to a projector and USB ports. What do I need to do this and where can I get the suitable fittings? I really need to have more than one USB connection port. Help

    I need to connect my iPad to a projector and have USB ports. What do I need to do this and where can I get the suitable fittings? I really need to have more than one USB connection port. Help

    You can connect via a cable or wireless using an Apple TV.
    http://ipad.about.com/od/iPad_Guide/a/How-To-Connect-Your-Ipad-To-Your-Tv.htm
    Connect an iPad to a Television or Projector
    http://www.everymac.com/systems/apple/ipad/ipad-faq/how-to-connect-ipad-to-tv-te levision-projector.html
    Connecting iPad iPhone or iPod to TV or Projector
    http://www.disabled-world.com/assistivedevices/computer/ipad-tv.php
    iPad Accessories: Connections for a TV or Projector
    http://www.dummies.com/how-to/content/ipad-accessories-connections-for-a-tv-or-p rojector.html
    You may be interested in AirPlay on the Apple TV:
    http://www.apple.com/airplay/
    Alternately, there are Apple Digital AV Adapters for hardwired connections:
    http://support.apple.com/kb/ht4108
    If your location does’t have wifi to use with the Apple TV, use a portable router.
    Portable routers http://compnetworking.about.com/od/routers/tp/travel_routers.htm
     Cheers, Tom

  • Where can I get an additional power source for my MacBook Pro?

    I am travelling to Europe next week and will be travelling on the road quite often. I would like to get some work done during that time. My laptop battery will inevitably run out of power during that time and I would like to carry an additional power source with me so I can get some extra juice when I am nowhere near an outlet.
    I have the latest MacBook Pro where the battery is not removable.
    Where can I get an additional power source for my MacBook Pro? I don't mind if it is a 3rd party product.

    you could get something like this: http://www.amazon.com/Energizer-XP18000-Universal-External-Netbooks/dp/B002K8M9H C
    it's about the same cost as an extra battery used to be. there's a range of similiar products at Amazon, i'd check reviews.

  • I'm going next week to the usa(I'm from Brazil) and i need the logic board for Apple MacBook Pro 15" A1286 where can i get it?, I'm going next week to the usa(I'm from Brazil) and i need the logic board for Apple MacBook Pro 15" A1286 where can i get it?

    I need to buy a logic board for 
    Apple MacBook Pro 15" A1286, but i couldn´t find online to buy it where can i get one and if it´s possible if i can have it delivered to my hotel

    There are a lot of MacBook Pros with the model # A1286 - which year is your model (e.g., "15-inch Late 2011")?
    The only place that I know that you might could score a specific logic board is www.ifixit.com. They may be able to ship to your hotel.
    Clinton

  • I am trying to install windows 7 on my macbook pro 13", when i run bootcamp it tells me that there is not a windows support software available for my computer. Where can i get the windows support software for my macbook?

    I am trying to install windows 7 on my macbook pro 13", when i run bootcamp it tells me that there is not a windows support software available for my computer. Where can i get the windows support software for my macbook?

    Apple only supports Windows on certain hardware.
    http://www.apple.com/support/bootcamp/
    Apple provides their framework for Windows to run on a Mac, a piece of software called a Hybrid MBR that bridges the gap between how Windows reads the drive partition table (MBR) and EFI/GUID partition table that Mac's use.
    It doesn't mean Windows can't run on your Mac, a third party solution called rEFIt will also bridge the gap and allow booting of more that just Windows, Linux as well for a triple booting computer.
    Your hardware has to meet the other requirements the second and third operating system needs as as being able to install drivers that will work for your hardware, especially the fans or they will run loud and fast by default.
    http://refit.sourceforge.net/
    This above is a advanced procedure which requires knowledge how computers and various operating systems, drive formats and so forth work.
    I even admit I don't know everything myself, but I experiment on a separate piece of Mac hardware (out of warranty/AppleCare) designed for this purpose so in case something screws up I'm not taking down my only machine and can use the other to get online and find solutions.
    There is a very high potential for losing your data if your using advanced/non-Apple methods to install Windows on your only Mac where Apple doesn't support it. Also one shouldn't be doing this on Mac hardware that is under AppleCare or warranty as it might be voided. Proceed at your own risk and education.

  • Where can i get   SALES  ORGANIZATION    FIELD and TABLE

    Can anybody tell me   where can i get   FIELD  and   TABLE  Name   OF  " sales organization    "

    Dear Sandeep,
    u will find VKORG is the Sales Organisation .
    u will find this Field in every related SD Module Table...
    Like ...VBAP,BKPF ..etc..
    Hope it helps...!!!
    Pls reward if Helpful...!!!

Maybe you are looking for