Login with jdk1.3 works,, but jdk1.2.2 doesn't work

i'm using ifs1.0.8.1.0 with oracle 8.1.6.0.0
i've written a standalone java code which connects to ifs and forms a librarysession..
i was tryin with jdk1.2.2 , it doesn't work at all. it's givin an invalidname/credential error.
i tried the same code with jdk1.3 it works..
is ther any way of makin it work with jdk1.2.2??
null

iFS 1.0.x does NOT support JDK 1.2.2 or JDK 1.3 -- I'm surprized that it worked with JDK 1.3 at all.
Please upgrade to iFS 1.1 where you will find full support for JDK 1.2.2 (which we have certified). It should work with JDK 1.3 as well, but we haven't certified with it.

Similar Messages

  • I've purchased the Creative Cloud and the payment was pending. I log out and log in with a diferent PC, but now my account doesn't have any payment pending and it's all trial. What happend? Thks

    I've purchased the Creative Cloud and the payment was pending. I log out and log in with a diferent PC, but now my account doesn't have any payment pending and it's all trial. What happend? Thks

    I am not doing it in ITunes, but i did down load the song from ITunes.  I loaded the song on to my Nano, but in my menu selections it doesn't show the song or the artist in any search format.  However, when i plug in my nano to my PC I see the Nano library on my PC drive listings and that song and artist are there.  I can click on the song and it will play in Windows media on my work PC.  I did notice that the format for most all the songs in my library on my Nano are MPEG - 4 audio Files. 
    Thanks for your help, Mel

  • Oracle Login with sysdba not working

    Hi All,
    I have oracle datatbase version 9.2.0.4 on solaris 9.
    I have assigned sysdba to a user with grant command.
    when i am trying to login with as sysdba option from a remote system running windows 2000 server, its giving error as follows.
    ORA-01031: insufficient privileges
    I can connect to the database without sysdba option.
    Kindly let me know what could the issue in this.
    thanks

    Only granting is not enough, the user also need the proper connection.You should read up on admn type authentication methods and specifically using a password file.

  • Login with facebook not working

    Unable to login to spotify desktop app (windows 7) with facebook login credentials.

    I am having the same issue...  I have even tried that cool trick where you use your facebook email and your facebook password and that does not work. I have uninstalled, re-installed, restarted, Tried to click on music to play in spotify, nothing. I am running the current version since I downloaded it again about 15 minutes ago.  I have premium, and I am using windows 7 os.  When I try to log in the non facebook way it says "service is temporarily unvailable, please try again later."  When I try to use the 'log on with facebook, it opens a window in my chrome browser and that line says 'logging in to spotify' and it closes the window and makes the login to facebook button unclickable.   All my updates are current on my computer.  My antivirus does not see spotify as a threat.  IE does not work either.  I have tried pretty much everything.  I am frustrated and really would like to have my music back.

  • I live in a mobile home in Torrance, CA which gets good reception with my LG phone, but my Iphone 4 doesn't get good service, any ideas ?

    Hi and thanks for any enlightment on this subject in advance! I recently purchased a iphone4 and it doesn't get as good as reception as my LG old phone does in my mobile home in Torrance, CA . I turned the phone on and off and also removed and reinstalled the sim card. Of course both phones were operating with the same carrier which is at&t. Any other Ideas I might try?

    This is vewry interesting ... I have the exact same problem (distorition with high frequencies when playing ipod music @ 320mbps) with my wife's iphone 4 using bluetooth through the  JVC KWXR816 but not through my iphone 4. Mine plays perfect. 

  • EA1 EA2 EA3 don't start on linux with jdk1.7 but work with jdk1.6!!!

    I install SQLDeveloper EA1 then EA2 and now EA3 on my Linux (Fedora 19), but the result is the same.
    If i start SQLDeveloper with root it work, but if i start with my user the application crash. I tested to change owner of all component, but the result is the same.
    Then because I started the application with jdk1.6 (I used the EA1 who did not warning about the java version) and it work fine!!!
    I opened two "Report a HotSpot Crash", but I never received a response.
    No one any idea? Nobody has ever happened? 
    Thanks,
    Enrico

    This sounds like
    Re: 4EA1: Not starting on Ubuntu. Unkown protocol sqldev.temp

  • JAXP: code works with JDK1.3.1/Xerces but not JDK1.4.1

    Switching from JDK 1.3.1 with the Xerces XML parser to JDK 1.4.1 with its
    bundled XML parser breaks my code. Here is the exception I am
    seeing:
    Exception in thread "main" com.post.bean.BeanException com.post.bean.Bea
    nException: Relative URI "bean.dtd"; can not be resolved without a base URI.
    at com.post.bean.BeanSerializer.deserialize(BeanSerializer.java:176)
    at com.post.BeanSerializer1.deserialize(BeanSerializer1.java:38)
    at com.post.BeanSerializer1.main(BeanSerializer1.java:17)
    Here is a code fragment that worked fine with JDK1.3.1 and xerces but
    not with JDK1.4.1:
    public static Object deserialize(InputStream input, EntityResolver
    resolver)
    throws BeanException
    Object bean = null;
    try
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setValidating(true);
    factory.setNamespaceAware(false);
    DocumentBuilder builder = factory.newDocumentBuilder();
    if (resolver != null)
    builder.setEntityResolver(resolver);
    Document doc = builder.parse(input); // exception thrown here
    Element root = doc.getDocumentElement();
    The entity resolver I'm using searches for dtds in
    a certain directory. Again this works fine with JDK1.3.1
    and Xerces but not with JDK1.4.1.
    Any ideas on how to remedy this situation?
    Thanks

    this generally happens when two similar libs conflict with each other. Try any of theses quick fixes: (Remember, 90% of probs in java are Classpath, packages and directory structure issues)
    1. remove completely your previous version of JDK and Xerces.
    2. Remove your classpath variable from system path.
    3. Have "only the required" jar files during compilation. For this use the -D option.
    4. If everything fails, download ANT. Write a simple build.xml file. This is a good replacement to the -D option. But make sure, you are working in a clean JDK environment. Try to monitor your classpaths at run time, and get rid of all the unnecessary once.
    5. MAke sure that Xerces libs bundled with 1.4 are in your classpath at runtime.
    Finally All the best, and happy XMLing+Javing !!
    Rakesh

  • How does xalan.jar work with jdk1.3.1 and not work with jdk1.4.1

    Hi,
    i am using java, xalan, xerces for web development. The environment is jdk1.4.1, xerces.jar, xalan.jar. i am facing problem while transforming xml, xsl. Its giving the following error
    java.lang.NoSuchMethodError: org.apache.xalan.xslt.Process.getDefaultLiaison()Ljava/lang/String;
         at org.apache.xalan.xslt.XSLTEngineImpl.(XSLTEngineImpl.java:367)
         at org.apache.xalan.xslt.XSLTProcessorFactory.getProcessor(XSLTProcessorFactory.java:79)
    I tried with jdk1.3.1, xalan.jar, xerces.jar. Its working fine. Can anyone tell me what is the problem with jdk1.4.1 ?
    Regards
    Ashok

    I have the same problem, but the version within SUN seems imcomplete,what version is ?
    For example I am using the xsl tag library provided by Apache (I know this now deprecated). In its ApplyTag.java it uses XSLTDataSource this is not in the SUN 1.4 distribution so it falls over. If I add XALAN 1.0.1 it falls over because it on getDefaultLiason() because it starts loading somne classes from rt.jar and some from xalan.jar, how are you meant to override this.

  • Key backspace and delete work with JDK1.3.1 and not with JDK1.4

    In JCTable, keys backspace and delete are not working with JDK1.4. It works with JDK1.3.1.

    I have the same problem, but the version within SUN seems imcomplete,what version is ?
    For example I am using the xsl tag library provided by Apache (I know this now deprecated). In its ApplyTag.java it uses XSLTDataSource this is not in the SUN 1.4 distribution so it falls over. If I add XALAN 1.0.1 it falls over because it on getDefaultLiason() because it starts loading somne classes from rt.jar and some from xalan.jar, how are you meant to override this.

  • Jazn.jar not working with jdk1.4

    I am getting the following error messages when connecting to bc4j application modules with jdk1.4. Works fine with jdk1.3.
    Please help!!!
    Thanks,
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught:
    oracle.jbo.common.ampool.ApplicationPoolException, msg=JBO-30003: The application pool (F5DC5BA84A) failed to checkout an application module due to the following exception:
         at oracle.jbo.client.Configuration.createRootApplicationModuleFromConfig(Configuration.java:1144)
         at oracle.jbo.jbotester.ConnectionInfo.useApplicationModule(ConnectionInfo.java:129)
         at oracle.jbo.jbotester.MainFrame.init(MainFrame.java:351)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:340)
    ## Detail 0 ##
    JBO-30003: The application pool (F5DC5BA84A) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-25222: Unable to create application module.
    Caused by: java.lang.IllegalArgumentException: wrong number of arguments
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
         at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
         at oracle.jbo.common.UserAznUtil.authenticate(UserAznUtil.java:115)
         at oracle.jbo.common.UserAznUtil.authenticateUser(UserAznUtil.java:49)
         at oracle.jbo.common.JboInitialContext.<init>(JboInitialContext.java:63)
         at oracle.jbo.server.InitialContextImpl.<init>(InitialContextImpl.java:36)
         ... 22 more

    Jason -- please post BC4J messages to the JDeveloper forum. The BC4J folks monitor that area.
    cheers
    -steve-

  • InetAddress.getLocalHost works differently with jdk1.4.0 beta65 and rc

    I am using jdk1.4.0 on Linux with two network interfaces, one of them with a private IP.
    When using jdk1.4.0beta65
    InetAddress.getLocalHost seems to return the IP of the first entry in /etc/hosts corresponding to my machine's hostname.
    With jdk1.4.0 rc I get the last entry in /etc/hosts.
    I changed the order of these entries in /etc/hosts to check if it is really the reason.
    I had problems with an application when getLocalHost returned the private IP.
    Of course changing the order would solve my problem.
    Is there any reason why this changed?
    cu
    Achim

    I don't have the answer for you but why don't you try the following trick and see if you get a more consistent result:
    try {
        Socket socket=new Socket("java.sun.com",80);
        InetAddress addr=socket.getLocalAddress();
        String HostName=addr.getHostName();
        String HostAddr=addr.getHostAddress();
    } catch (Throwable e) {}
    V.V.

  • Demo code works with Jdk1.2?

    Can EJB/CORBA demo code shipped with Oracle8i CD work with Jdk 1.2?
    null

    For details on what JDKs on client vs JDKs on server across versions 8.1.5, 8.1.6 and 8.1.7, see FAQ:
    http://technet.oracle.com/products/oracle8i/htdocs/jserver_faq/index.html#_62_
    take care
    John.
    Oracle JServer Development Team

  • Atan in jdk1.1.8 doesn't work. help

    I am creating a program which simulate the effect of gravity on a object (for a game). For this I am working with jdk1.1.8. (not by choice). But for some reason the movement of the object just turns around. I believed that de method Math.atan2 was wrong so i have rewritten it and it worked better. But the method atan most likely doesn't work either because it is not perfect yet. Does anyone know or have an implementation of de atan method in java that works so i can use it? Because I don't know how the method works.
    maybe i am wrong here but it is basicly the only solution to my problem. if give the code of the bullet class with it. maybe anyone sees the problem there:
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class Bullet extends Thread
         public static boolean running = false;
         private double x, y;
         private double width=10, height=10;
         private double weight=10;
         private double travelAngle = toRadians(45);
         private double speed=5;
         private Attraction hello;
         private Planet[] planets;
         private int planetCount=0;
         Bullet(Attraction hello, int x, int y, int angle, Planet[] planets)
              this.hello = hello;
              this.x = x;
              this.y = y;
              this.travelAngle = toRadians(angle);
              this.planets = planets;
              this.planetCount = planets.length;
              running = true;
         public void run()
              double px=0, py=0, g=0;//comes from the planet
              //variable for the calculation
              Planet p = null;
              double dx=0, dy=0, dx2=0, dy2=0, fdx=0, fdy=0, totalfdx=0, totalfdy=0;
              double forceAngle=0;
              double d=0, gd=0, force=0;
              double oldx = 0;
              double oldy = 0;
              int drawSteps = 0; //for smooth drawing
              double dxSteps=0, dySteps=0;
              double oldspeed = speed;
              while(running)
                   oldspeed = speed;
                   totalfdx=0;
                   totalfdy=0;
                   oldx = x;
                   oldy = y;
                   dx = Math.cos(travelAngle)*speed;//the normal translation for x without the gravity effect
                   dy = Math.sin(travelAngle)*speed;//the normal translation for y without the gravity effect
                   x+=dx;//new x from the normal translation
                   y+=dy;//new y from the normal translation
                   for(int i = 0; i<planetCount; i++)
                        p = planets;
                        px = p.getX();//x coordinate of the planet
                        py = p.getY();//y coordinate of the planet
                        g = p.getGravity();//gravity of the planet
                        dx2 = px - x; //the x-difference between the bullet and the planet
                        dy2 = py - y; //the y-difference between the bullet and the planet
                        //System.out.println(dx2 + " "+ dy2);
                        d = Math.sqrt(dx2*dx2+dy2*dy2); //the direct distance between the bullet and the planet
                        //System.out.println("distance " + d);
                        gd = g/d; //the effect of the gravity at the distance of the bullet
                        //System.out.println("gravitydistance" + gd);
                        force = gd*weight; //the forcepull on the object from the planet
                        forceAngle = atan2(dy2,dx2);//the angle of the force with the y-axis
                        //System.out.println("force " + force + " distance " + d);
                        fdx = force * Math.sin(forceAngle);//the force pull distance for x
                        fdy = force * Math.cos(forceAngle);//the force pull distance for y
                        //System.out.println(fdx + " " + fdy);
                        totalfdx += fdx;
                        totalfdy += fdy;
                   x = x+totalfdx;//new x
                   y = y+totalfdy;//new y
                   //System.out.println("Angle" + toDegrees(travelAngle));
                   travelAngle = atan2( (x-oldx), (y-oldy) );
                   speed = Math.sqrt((x-oldx)*(x-oldx) + (y-oldy)*(y-oldy));
                   if(oldx>x)
                        System.out.println("Turning point");
                   System.out.println(oldspeed + " " + speed);
                   //System.out.println("x=> " + x + " y=> " + y);
                   drawSteps = (int)(speed+1);
                   dxSteps = (x-oldx)/drawSteps;
                   dySteps = (y-oldy)/drawSteps;
                   x = oldx + dxSteps;
                   y = oldy + dySteps;
                   hello.repaint((int)x,(int)y, (int)width, (int)height);
                   for(int i = 0; i<drawSteps; i++)
                        x+=dxSteps;
                        y+=dySteps;
                        hello.repaint((int)(x-dxSteps), (int)(y-dySteps), (int)(width+width), (int)(height+height));
                        try
                             sleep(30);
                        catch(Exception e){}
                   hello.repaint((int)x,(int)y, (int)width, (int)height);
                   //hello.repaint();
                   try
                        sleep(100);
                   catch(Exception e){}
                   System.out.flush();
                   for(int i = 0; i<planetCount; i++)
                        p = planets[i];
                        if(p.contains(x,y))
                             System.out.println("Boom");
                             running = false;
              System.out.println("Bullet Stopped");
         public void draw(Graphics g)
         g.setColor(Color.cyan);
              g.fillRect((int)Math.round(x-width/2), (int)Math.round(y-height/2), (int)width, (int)height);
         public void move(boolean left, boolean right)
              if(left)
                   x--;
                   hello.repaint(x, y-2, width+5, height+5);
              if(right)
                   x++;
                   hello.repaint(x+1, y-2, width+5, height+5);
         public double toRadians(double angle)
              return (angle/180*Math.PI);
         private double toDegrees(double angle)
              return (angle/Math.PI*180);
         private double atan2(double a, double b)
              if(a>0)
                   if(b<0)
                        return (Math.atan(b/a)+(2*Math.PI));
                   return Math.atan(b/a);
              else if(a<0)
                   return (Math.atan(b/a)+Math.PI);
              else if(a==0 && b>0)
                   return ((Math.PI)/2);
              else if(a==0 && b<0)
                   return ((3*Math.PI)/2);
              else
                   return 0;

    I have allready tested my code to the max en I have redone the calculations about 4 times, because I couldn't believe the fault was in the method atan or atan2 from sun. But since my calculations should work in theorie (worked it out with a math teacher) it's the only options I could think of.
    [qoute]
    I haven't looked up in the API docs how atan2 is supposed to work, but I noticed these two lines in your code:
    forceAngle = atan2(dy2,dx2);//the angle of the force with the y-axis
    travelAngle = atan2( (x-oldx), (y-oldy) );
    In one place you use Y and X as the parameters and in the other case you use X and Y. They can't both be right.
    [qoute]
    In this case it is. because the forceangle is opposite the x-axis and thus the two must be reversed. (travelangle is opposite the y-axis).
    I have also tried to reverse them (for both) but the effect got worse :)
    Thanks anyway.

  • Weblogic 10.0 Comatability with JDK1.6

    I have installed weblogic 10.0 on unix machine. And when i istalled it JDK1.5 will automatically installed with it inside weblogic folder.
    And when i create a new instance of weblogic with existing JDK1.5 the instace will start properly and application executes also.
    But when i point the weblogic to JDK1.6 at the time of instace creting. it will not work properly. When i stop the server below error is display.
    javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
            java.io.StreamCorruptedException: invalid type code: 88]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:74)
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:32)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:773)
    org.python.pycode._pyx18.f$0(/newpluto/weblogic10/bea/citiSchedPayliteDomain/vb2java/shutdown.py:1)
    at org.python.pycode._pyx18.call_function(/newpluto/weblogic10/bea/citiSchedPayliteDomain/vb2java/shutdown.py)
    at org.python.core.PyTableCode.call(PyTableCode.java:208)
    at org.python.core.PyCode.call(PyCode.java:14)
    at org.python.core.Py.runCode(Py.java:1135)
    at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:167)
    at weblogic.management.scripting.WLST.main(WLST.java:106)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.WLST.main(WLST.java:29)
    Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.io.StreamCorruptedException: invalid type code: 88
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:222)
    at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:224)
    at weblogic.common.internal.RMIBootServiceImpl_1002_WLStub.authenticate(Unknown Source)
    at weblogic.security.acl.internal.Security$1.run(Security.java:185)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.security.acl.internal.Security.authenticate(Security.java:181)
    My question is that Weblogic 10.0 is only comapatable with jdk1.5 only or either any way so we can point it to JDK1.6

    WLS 10.0 is not supported for JDK 6.
    This is strict violation that you need to use only JDK 5

  • Java webdynpro development with jdk1.5.7

    hi,
    I have installed the CE server and the Netweaver Developer Studio, to try some java developments.
    I was working with jdk1.5.7, but the server has only version 1.5.017.
    Is it possible to upgrade the java in the server, so it can work with the current jdk version?
    thx,
    Erik

    hi again,
    I could solve the problem:
    in the developer studio you can chose to compile for lower versions.
    To do so, go to windows>preferences>java-->compiler and chose compliance level 5 or 1.4(it was on 6), and now the development works fine.

Maybe you are looking for