Did anyone try to upgrade the java compiler to jdk1.4?

Hi All,
Maybe I'm just too hurry to try new things off. With only changing the compiler
to version 1.4.0 I got the attached error message. It would very kind of you to
give me advices.
Thanks,
YH

JDK 1.4 is not yet supported with WLS 6.1.
YH Cheng wrote:
The error message returned from startWebLogic.sh
LD_LIBRARY_PATH=/local/ldap/bea/wlserver6.1/lib/solaris:/local/ldap/bea/wlserver6.1/lib/solaris/oci816_8
java.lang.SecurityException: Unable to locate a login configuration
at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:97)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
at java.lang.Class.newInstance0(Class.java:296)
at java.lang.Class.newInstance(Class.java:249)
at javax.security.auth.login.Configuration$3.run(Configuration.java:221)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.login.Configuration.getConfiguration(Configuration.java:215)
at javax.security.auth.login.LoginContext$1.run(LoginContext.java:170)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.login.LoginContext.init(LoginContext.java:167)
at javax.security.auth.login.LoginContext.<init>(LoginContext.java:393)
at weblogic.security.internal.ServerAuthenticate.main(ServerAuthenticate.java:81)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:200)
at weblogic.Server.main(Server.java:35)
Caused by: java.io.IOException: Unable to locate a login configuration
at com.sun.security.auth.login.ConfigFile.init(ConfigFile.java:206)
at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:95)--
Rajesh Mirchandani
Developer Relations Engineer
BEA Support

Similar Messages

  • Did anyone try Ipad2 with another SIM ?

    hi,
    did anyone try Ipad 2 With another Carrier ? Anyone bought 3G ipad with at&t plan and use it with another carrier ?
    i need to make sure before i buy it.

    05-May-2007 07:32 PM
    nboy wrote:
    I try to installed Text-To-Speech program into my N70 but it show "File Corrupted" what wrong with it? I wanted to know it's because the program or my phone.
    not all phones support Text to Speech...
    1st, you can not install "Text to Speech", this is built-in to the system the only thing you can add are the the different "voices", hence if your phone does not originally support Nokia's Text to Speech, you will not be able to install it, however if i am not mistaken there are 3rd party software that does "text to speech"... goggle nokia mobility for more info...

  • Trying to connect my iPhone6 with my old iMac with 10.6.8 MacOS. It says I need a new version of iTunes. When I try to upgrade the iTunes (11.3.1), it says, it is already the latest version. What do I do now?

    Trying to connect my iPhone6 to my old iMac with 10.6.8 MacOS, and synch up the music. It says I need a new version of iTunes. When I try to upgrade the iTunes on my iMac, it says, it is already the latest version. What do I do now?

    The current version of iTunes is 12.x.x and requires OS X later than Snow Leopard.

  • When I try to upgrade the ios software on my ipod touch 4 g flashes Apple . Heip me please!

    when I try to upgrade the ios software on my ipod touch 4 g flashes Apple . Heip me please!

    Next try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • Why does my cellphone keep saying that estimating time remaining when I try to upgrade the system?

    Why does my cellphone keep saying that "estimating time remaining" when I try to upgrade the system?
    Is there anyway to fix this situation?

    Hi Eric_Sun,
    Thanks for visiting Apple Support Communities.
    You may want to update your iPhone using iTunes on a computer if your device only shows "estimating time remaining" when you try to update wirelessly:
    If you can’t update wirelessly, or if you want to update with iTunes, follow these steps:
    If you use your device's Personal Hotspot for your computer's Internet connection, update your device wirelessly or connect your computer to another network.
    Install the latest version of iTunes on your computer.
    Plug in your device to your computer.
    In iTunes, select your device.
    In the Summary pane, click Check for Update.
    Click Download and Update.
    If you see an error message while updating your device, you can learn how to resolve iOS update errors in iTunes.
    You can find these steps here:
    Update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/ht4623
    If you are still not able to update, I recommend the steps in this article next:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    Best Regards,
    Jeremy

  • Did anyone have success applying the invisible shield to their ipad?

    Did anyone have success applying the Invisible Shield to their Ipad?

    Yes.  Make sure any iPad Cover that you have for it is removed first.  Then, start at the bottom where the On/Off button is.  Peel off only a small section of the bottom of the invisible layer and attached the small exposed sticky side to the bottom of the iPad.
    Line it up as best as you can.  Placing the edge of the iPad against a flat surface like a wall or backsplash on a kitchen counter can help you to keep the invisible sheet "square" with the iPad surface.
    Was that a confusing answer?

  • Invoking the java compiler from programs

    HI, I'm a high school java student in the AP Java course. A project that I have been interested in for a while is making a simple IDE, but to do this I need to compile and run programs from within my program.
    What I have tried:
    The method Compiler.compileClasses("name of file i wanted to compile");
    The method System.loadLibrary(System.getProperty("java.compiler"));
    The JavaCompiler class in javax.tools. this is my source code.
    import javax.tools.*;
    public class CompileTest
         public static void main(String[] args)
              String fileToCompile ="Test.java";
              JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
              int compilationResult =     compiler.run(null, null, null, fileToCompile);
              if(compilationResult == 0)
                   System.out.println("Compilation is successful");
              else
                   System.out.println("Compilation Failed");
    After this threw NullPointerExceptions I put the line System.out.println(ToolProvider.getSystemJavaCompiler()); and the output was null.
    Any help would be appreciated.
    Also, if anyone knows how to run the subsequent class file, that would also be a big help

    To run the program, load the class file with a classloader, which will give you a Class object. You then use reflection to find the public static void main(String[] args) Method object, then use Method's invoke method to call main.
    You should deal with any exceptions from the program so that it doesn't break your IDE.
    It would probably be a good idea to run the program in its own classloader which you could trash after it finishes running so you don't leave resources hanging around.
    And finally you probably need to deal with the case where the program calls System.exit(). That could be tricky. (translation, I haven't the foggiest idea how to handle it but I'm sure its possible).
    Also there is the issue of background threads (non daemon and daemon) running after main completes. What ya gonna do?
    Runtime.exec() is looking mighty attractive right now.
    Bruce

  • Couldnt upgrade the  java stack  after upgrading the abap to ehp1

    Hi
    I have upgarded the  system to ehp1 but i couldnt continue to upgarde the java stack  to 18th patch.The reason is it coudlnt find the  file JSPM02P-2-20002796.SCA. I couldnt find this file .   i couldnt find only this file   JSPM02P_4-20002796.SCA . I tried to put this file in inbox and tried to run the jspm but it is not recognizing this as a valid file and its expecting   JSPM02P-2-20002796.SCA. I couldnt find this file can anyone suggest me where i could find this file.
    Thanks and Regards
    MA.Sreenivasan

    When you download the files, be sure to select "Save As File", which next to the "Add to Download Basket" button. Copy that SPStab.xml file to your EPS/in directory. Without that, it won't recognize the files even if they are there.

  • Compiling code using an older version of the java compiler

    I'm trying to make some very simple applets. I thought I compiled them using the command prompt: javac -source 1.1 *.java
    However now the same computer does not recognize 1.1 as a valid source. It does recognize 1.2 as a valid source but I need a version before 1.2 as I can view the applets that I compiled previously in an older browser than I can the most recently compiled applets. is there any way to get a list of valid compiler versions? I've found some listings but they are usually talking about the Java Virtual machine, not the compiler, and the ones that I have found about the compiler don't work. Or where can I find links to download outdated compilers?

    The documentation for the javac tool (compiler) tells what values of -source and -target are valid for each version (it changes by version). Note that the libraries used for compiling should also match the source version.
    Earlier versions of Java are archived at http://java.sun.com/products/archive/index.html

  • Did anyone have luck getting the $200 SMARTPHONE recycling credit promo?

    I purchased 4 smart phones on Black Friday and was promised by the Verizon store rep that I would receive $200 for every smart phone turned in to the recycle program through a promo code that would be emailed to me in a "few days" but then never received the codes. I have visited the store where I purchased the phones and received more promises but.... so far all I've gotten is the run around and confusion by Verizon. Has anyone made it through the gauntlet to receive the codes?  Bait and switch?

    Been on the phone twice over the last two days with the recycle folks but they know nothing about the $200 smart phone turn-in promotion.  They did give me some promo codes that were good to bring the value of the phones I am turning in up to $100 but still not the $200 I was promised at the dealer.  I did finally reach someone at a "no kidding" Verizon owned store (some stores say Verizon on them but are actually just "authorized dealers") who told me that she would personally handle the phone turn ins if I bring the phones in to her.  I'll do that on Monday and post the results afterwards.

  • Does anyone try JWRAPI on the 802.11 device?

    I want to use this to build a apllication. But I cannot contact to the author to get the API.
    Does anyone try this? Is this good to use and how to get the source in other way?

    i have the same problem, if you had resolve it, can you help me???
    please;

  • Did anyone try to cluster BEA Portal 7.0 sp1

    Hi,
    Am trying to cluster BEA Portal sp1 ,everything goes fine but when i try to
    access the portal on both the servers on the second server i get a Portal Null
    State Exception .The App works fine on the Primary Server ,but shows bizarre behaviour
    on the secondary.Have configured session replicaton,replication groups etc
    Would appreciate any help.
    Regards
    Parikshit

    Hi Parikshit,
    First of all make sure to deploy the PortalApp to the cluster. The best way to
    make sure is to open config.xml file and see the entry for PortalApp. Also make
    you the PortalApp is sync to both the server. Follow the datasync-cluster setup
    guideline which is in dev2dev.
    Regards
    Syed
    "Parikshit" <[email protected]> wrote:
    >
    Hi,
    Am trying to cluster BEA Portal sp1 ,everything goes fine but when
    i try to
    access the portal on both the servers on the second server i get a Portal
    Null
    State Exception .The App works fine on the Primary Server ,but shows
    bizarre behaviour
    on the secondary.Have configured session replicaton,replication groups
    etc
    Would appreciate any help.
    Regards
    Parikshit

  • Can you upgrade the Java JDK that is shipped with ES3 to a more current version

    We have installed ES3 within out environment. However there appears to be some security issues with the JDK (1.6.0_26) that is shipped with ES3. We can't find any documentation on how to upgrade the JDK to a newer version that will work with ES3.

    These computers usually use Xandros, which is a version of linux that is no longer actively developed. Unfortunately I don't think there is a good way to update Firefox on these machines. I'd suggest you install a new version of linux (Ubuntu is a very popular and easy to use one). This is a bit beyond the scope of this forum however, I'd suggest looking on a few linux forums. They can help you find a version of linux that is more modern, faster and more secure, and then help you with installing it and setting it up. You'll be able to use the newest Firefox at that point, plus your operating system will be updated and faster.

  • Did anyone have trouble getting the Upgrade to a 6 Rebate?

    I upgrade my Iphone 4 for the Iphone 6 promotion and as of today have not yet received my Rebate. I had to call again today and the guy told me it would be another 15 days for a response to see if I was even going to receive! Not sure what's going on but I sure could use that rebate to pay my bill.

        Ensuring you receive your mail in rebate is very important Vince-jessie. Congrats on your recent upgrade to the iPhone 6. Did you mail in your rebate? For faster process you may also submit your mail in rebate and check the status online at www.verizonwireless.com/rebates. What was the reason you may not receive your mail in rebate?
    Thank You,
    MichelleL_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • Did anyone try to restore after the ios4 update?

    on 2gt or 3gt restore then add all your stuff back in? did it fix the ios4 problems?? the guy at apple told me to do so but i dont want to lose all my game progress.

    When you choose to restore it will go ahead and reset your iPod and then it will ask you if you want to set it up as new or restore your settings from your backup. If you do this, and there are no errors, you won't lose your data. I've done it a dozen times since iOS 4 and it has not resolved any of the issues at all.

Maybe you are looking for

  • Problem with "share" in FCP7

    With a sequence completed, I click on File and then Share, give it a Destination and a Title and then click on Export. The Export button pulsates  but nothing else happens.  If I send it to Compressor, the Submit button is grayed out. What is going o

  • Regarding ESOA - Hype or Reality w.r.t PI

    Hello Friends,   Im working in Process Integration area.And heard abt the ESOA. My Queries are 1.How the ESOA will enrich Netweaver Process Integration. 2.I have seen in a SAP blog the definition of SOA as "Loose Coupling, Open-Closed or Interface Se

  • Additional 2 zeroes appear after flat file upload for New Taiwan Dollar

    Hi, Appreciate if anyone has encountered this issue when loading up flat file for New Taiwan Dollar currency. Example. Flat File Data 0CHRT_ACCTS - SSG1 0COMP_CODE - TW80 0FISCYEAR - 2007 0FISCPER      0FISCPER3      0VERSION - 1 0VTYPE - 10 0CURTYPE

  • Button - Print an external PDF file

    Hi all... I am trying to have a Button on my PDF to be able to PRINT and external PDF file from off of my site. any thoughts? Many thanks., Dave

  • Airport Extreme Card Gone????

    I have used WiFi before and all before at friends house and coffee houses. So it has worked before. I removed the Airport Icon from the task bar, and turned it off to save any battery life I could. I have been able to find it and turn it on and put i