Java 32 bit 1.6

Hi,
I must have on my Air under Mavericks,  java 1.6_0.35 32 bits (application support only this version), is-it possible ?

terry,
I've been trying to fix the same "internet check deposit" problem since getting my iMac last month.
I verified all my MAc and Scanner software is up to date.
I changed to 32 bit Java. Tried running US Bank app with the Chrome browser.
I contacted Apple, HP (envy100), and US Bank tech support.
HP doesn't want to talk to me because my scanner is over a year old.
Apple says since my iMac works with the scanner (true I can scan docs) the problem is not Apples.
US Bank tech support eventually said something to the effect that internet check deposits don't work with iMac at this time. It's not clear what they are doing about it, if anything.
Which bank are you using?  
Ron

Similar Messages

  • Addition in Java bits, bytes and shift

    Hi,
    I have a byte array consisting of 8 bit values in each cell.
    When I do an addition of two cells - which gives me a 16 bit result I use the following:
    Integer a = (int) (arr[value] & 0xff);
    a = a << 8;
    Integer b = (int) (arr[secondValue] & 0xff);
    Integer c = a + b;This seems to work fine. My question is how would I add 3 (24 bit result) or 4 (32 bit result) cells.
    Would the following work: 24 bit result
    Integer a = (int) (arr[value] & 0xff);
    a = a << 16;
    Integer b = (int) (arr[secondValue] & 0xff);
    Integer c = (int) (arr[thirdValue] & 0xff);
    Integer d = a + b + c;I am not sure if I have got the shift (<<16) usage correct or if it should be used in order to obtain the variables b or c.
    All help appreciated.

    khublaikhan wrote:
    Just to confirm for 32 bit it would be:
    // 32-bit
    int a = (int)(arr[value] & 0xff);
    int b = (int)(arr[secondValue] & 0xff);
    int c = (int)(arr[thirdValue] & 0xff);
    int d = (int)(arr[fourthValue] & 0xff);
    int e = (a<<24) + (b<<16) + (c<<8) + d;
    Integer eInt = new Integer(e);
    Actually, the more I think about it, you may need to use longs instead of ints for 32-bit (not 16- or 24-bit though). It depends on what your data actually is. If you're expecting your 32-bit number to be an unsigned integer, then you'd better go with long. This is because in Java, ints utilize two's complement, so if the high-order byte you read in for a 32-bit value is very large, the resulting int will be interpreted by Java as a negative number instead of the large positive value you expect.
    I'm probably not being very clear. Check out http://en.wikipedia.org/wiki/Two's_complement for the details.
    In other words, if you wanted to get 32-bit values in this way, and the computed values are expected to be non-negative integers, use this:
    // 32-bit
    int a = (int)(arr[value] & 0xff);
    int b = (int)(arr[secondValue] & 0xff);
    int c = (int)(arr[thirdValue] & 0xff);
    int d = (int)(arr[fourthValue] & 0xff);
    long e = (a<<24) + (b<<16) + (c<<8) + d;
    Long l = new Long(e);If you're actually reading in a 32-bit, two's complement value, then keep using int like you originally posted.

  • Custom Classpath when launching Workflow Designer (and other Java bits)

    Hello - I thought this tid-bit might come in handy (if it's not already mentioned anywhere else)
    If you want to add additional classpath entries to Workflow Designer you can do so in the following way:
    1) find the adobe_workflow_designer.exe that the installer created
    2) Create a file with a .cp extention in the same folder. MyJars.cp is an example
    3) put one line in this file for each jar file to load. Example:
    The Designer executable is generated from InstallShield - there are other ways to change the java startup parameters (like memory options, garabage collection, etc.) documented here: http://helpnet.installshield.com/robo/projects/isxuniversalhelplibrary/topics/native_laun cher_modifying.htm#CP
    Have Fun!
    Will@Adobe

    How do you create a custom bulk action such as "CreateOrUpdate"?
    I'd really like to be able to do this...

  • Java Bit arithmatic support?

    Does java provide support for bitwise operation as does C++ and many other languages?
    It seems tht as a fully OO language, it should implement some very powerfull classes for bit manipulation and such. If you could point me in the right direction for learning the support, it would be great.
    ~Andy

    Besides the BitSet class that was already provided in another answer, java also has the bitwise operators:
    Bitwise and: &
    Bitwise or: |
    Bitwise complement: ~
    Bitwise xor: ^
    Bitwise left shift: <<
    Bitwise signed right shift: >>
    Bitwise unsigned right shift: >>>
    tajenkins

  • Bits are not matching

    i was reading a post of DrLaszloJamf.....
    link http://forum.java.sun.com/thread.jspa?threadID=656462&tstart=90
    what is "0x96" ?..this is in the HEX notation. in decimal value it is 150.
    i run this code....
    public class U {
        public static void main(String[] args) {
            f((byte)0x96);
        static void f(byte b) {
            for(int i=0; i<8; ++i) {
                int bit = 1 & b>>i;
                System.out.println("bit " + i + " = " + bit);
    }and got output....
    ---------- Run java ----------
    bit 0 = 0
    bit 1 = 1
    bit 2 = 1
    bit 3 = 0
    bit 4 = 1
    bit 5 = 0
    bit 6 = 0
    bit 7 = 1
    Output completed (0 sec consumed) - Normal Termination
    then i manually calculated taking these bits like this
    2^6+2^5+2^3+2^0=105
    buit the result should have been 150..is not it ? why the math and program output did not coincide ? it should have matched .

    Something's wrong with your math
    2^7 + 2^4 + 2^2 + 2^1 = 150
    bit 0 = 0
    bit 1 = 1 = 2
    bit 2 = 1 = 4
    bit 3 = 0
    bit 4 = 1 = 16
    bit 5 = 0
    bit 6 = 0
    bit 7 = 1 = 128             ------
                    150

  • Anyone familiar with the Java Service Wrapper?

    I'm getting errors when trying to use the Java Service Wrapper. My wrapper.conf file looks like this:
    # Wrapper License Properties (Ignored by Community Edition)
    # Include file problems can be debugged by removing the first '#'
    #  from the following line:
    ##include.debug
    #include ../conf/wrapper-license.conf
    #include ../conf/wrapper-license-%WRAPPER_HOST_NAME%.conf
    # Wrapper Java Properties
    # Java Application
    wrapper.java.command=%JAVA_HOME%\bin\java.exe
    # Tell the Wrapper to log the full generated Java command line.
    wrapper.java.command.loglevel=INFO
    # Java Main class.  This class must implement the WrapperListener interface
    #  or guarantee that the WrapperManager class is initialized.  Helper
    #  classes are provided to do this for you.  See the Integration section
    #  of the documentation for details.
    wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
    # Java Classpath (include wrapper.jar)  Add class path elements as
    #  needed starting from 1
    wrapper.java.classpath.1=C:\dbbackup\lib\wrapper.jar
    wrapper.java.classpath.2=%JAVA_HOME%\lib\tools.jar
    wrapper.java.classpath.3=C:\dbbackup\apps\JavaApplication110.jar
    # Java Library Path (location of Wrapper.DLL or libwrapper.so)
    wrapper.java.library.path.1=C:\dbbackup\lib
    # Java Bits.  On applicable platforms, tells the JVM to run in 32 or 64-bit mode.
    wrapper.java.additional.auto_bits=TRUE
    # Java Additional Parameters
    #wrapper.java.additional.1=
    # Initial Java Heap Size (in MB)
    #wrapper.java.initmemory=3
    # Maximum Java Heap Size (in MB)
    #wrapper.java.maxmemory=64
    # Application parameters.  Add parameters as needed starting from 1
    wrapper.app.parameter.1=JavaApplication110.Main
    # Wrapper Logging Properties
    # Enables Debug output from the Wrapper.
    # wrapper.debug=TRUE
    # Format of output for the console.  (See docs for formats)
    wrapper.console.format=PM
    # Log Level for console output.  (See docs for log levels)
    wrapper.console.loglevel=INFO
    # Log file to use for wrapper output logging.
    wrapper.logfile=../logs/wrapper.log
    # Format of output for the log file.  (See docs for formats)
    wrapper.logfile.format=LPTM
    # Log Level for log file output.  (See docs for log levels)
    wrapper.logfile.loglevel=INFO
    # Maximum size that the log file will be allowed to grow to before
    #  the log is rolled. Size is specified in bytes.  The default value
    #  of 0, disables log rolling.  May abbreviate with the 'k' (kb) or
    #  'm' (mb) suffix.  For example: 10m = 10 megabytes.
    wrapper.logfile.maxsize=0
    # Maximum number of rolled log files which will be allowed before old
    #  files are deleted.  The default value of 0 implies no limit.
    wrapper.logfile.maxfiles=0
    # Log Level for sys/event log output.  (See docs for log levels)
    wrapper.syslog.loglevel=NONE
    # Wrapper General Properties
    # Allow for the use of non-contiguous numbered properties
    wrapper.ignore_sequence_gaps=TRUE
    # Title to use when running as a console
    wrapper.console.title=Test Wrapper Sample Application
    # Wrapper Windows NT/2000/XP Service Properties
    # WARNING - Do not modify any of these properties when an application
    #  using this configuration file has been installed as a service.
    #  Please uninstall the service before modifying this section.  The
    #  service can then be reinstalled.
    # Name of the service
    wrapper.name=dbbackup
    # Display name of the service
    wrapper.displayname=dbbackup
    # Description of the service
    wrapper.description=Test Wrapper Sample Application Description
    # Service dependencies.  Add dependencies as needed starting from 1
    wrapper.ntservice.dependency.1=
    # Mode in which the service is installed.  AUTO_START, DELAY_START or DEMAND_START
    wrapper.ntservice.starttype=AUTO_START
    # Allow the service to interact with the desktop.
    wrapper.ntservice.interactive=false
    STATUS | wrapper  | 2010/04/05 19:56:22 |
    STATUS | wrapper  | 2010/04/05 19:56:22 | Launching a JVM...
    INFO   | wrapper  | 2010/04/05 19:56:22 | command: "C:\Program Files\Java\jdk1.5.0_11\bin\java.exe" -Djava.library.path="C:\dbbackup\lib" -classpath "C:\dbbackup\lib\wrapper.jar;C:\Program Files\Java\jdk1.5.0_11\lib\tools.jar;C:\dbbackup\apps\JavaApplication110.jar" -Dwrapper.key="uDobXEdkbmmNM22u" -Dwrapper.port=32000 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.pid=584 -Dwrapper.version="3.4.0" -Dwrapper.native_library="wrapper" -Dwrapper.cpu.timeout="10" -Dwrapper.jvmid=1 org.tanukisoftware.wrapper.WrapperSimpleApp
    INFO   | jvm 1    | 2010/04/05 19:56:23 | WrapperManager: Initializing...
    INFO   | jvm 1    | 2010/04/05 19:56:23 |
    INFO   | jvm 1    | 2010/04/05 19:56:23 | WrapperSimpleApp Usage:
    INFO   | jvm 1    | 2010/04/05 19:56:23 |   java org.tanukisoftware.wrapper.WrapperSimpleApp {app_class} [app_arguments]
    INFO   | jvm 1    | 2010/04/05 19:56:23 |
    INFO   | jvm 1    | 2010/04/05 19:56:23 | Where:
    INFO   | jvm 1    | 2010/04/05 19:56:23 |   app_class:      The fully qualified class name of the application to run.
    INFO   | jvm 1    | 2010/04/05 19:56:23 |   app_arguments:  The arguments that would normally be passed to the
    INFO   | jvm 1    | 2010/04/05 19:56:23 |                   application.
    ERROR  | wrapper  | 2010/04/05 19:56:24 | JVM exited while loading the application.
    STATUS | wrapper  | 2010/04/05 19:56:28 | CTRL-C trapped.  Shutting down.
    STATUS | wrapper  | 2010/04/05 19:56:28 | <-- Wrapper Stopped

    I got it to work. Still not sure what I was doing wrong. I just copied a wrapper config I had for launching JBoss and implemented it into my application.
    wrapper.java.command=%JAVA_HOME%/bin/java
    wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
    wrapper.java.classpath.1=C:/dbbackup/lib/wrapper.jar
    wrapper.java.classpath.2=%JAVA_HOME%/lib/tools.jar
    wrapper.java.classpath.3=C:/dbbackup/bin/JavaApplication110.jar
    wrapper.java.library.path.1=C:/dbbackup/lib
    # these are the JAVA_OPTS
    wrapper.java.additional.1=-Dprogram.name=%PROGNAME%
    wrapper.java.additional.2=-server
    wrapper.java.additional.3=-Xms128m
    wrapper.java.additional.4=-Xmx512m
    wrapper.java.additional.5=-Dsun.rmi.dgc.client.gcInterval=3600000
    wrapper.java.additional.6=-Dsun.rmi.dgc.server.gcInterval=3600000
    wrapper.app.parameter.1=javaapplication110.Main
    wrapper.logfile=C:/dbbackup/logs/wrapper.log
    wrapper.ntservice.name=DBbackup
    wrapper.ntservice.displayname=DBbackup
    wrapper.ntservice.description=Starts and stops
    wrapper.ntservice.starttype=AUTO_START

  • Problem installing Java

    Hey im having a problem with Java, tried to install the latest version and i get this message saying i already have it installed and do i want carry on the installation which i do ... then i get a message saying
    'windows installer' "this action is only valid for products which are installed"
    I have no java icon in my control panel, im thinking i may have got rid of java somehow but my pc thinks i have it but i have no java or update in my add remove programs and again no icon in my control panel at the bottom ..
    Is there anyway i can get a fresh install of java ?
    and sorry if this message is slightly confusing,im not the best at these things ! If you need any screen shots or other imformation then just ask ..
    Thanks if anyone can help !
    Edited by: robmatthews on Nov 30, 2008 1:44 PM

    No thats not worked either .. basically my pc is sayin i already have it installed,but i can assure u it isnt workin, is there any way to completey remove all java bits and install from stratch ? i keep tryin the java 6 update 10 version but sayin i already have it !

  • Java elements get munged in FF, not IE

    Hi there - I frequently use a "Scrabble" site where the tile rack is provided in the form of an embedded Java applet, allowing you to slide your letters back and forth to change the order they appear on the screen.
    The problem comes if you scroll the page - the Java bits are replaced by some of the text and / or frame lines that appeared in that position during the scrolling. You can force the letter tiles to be redrawn by sliding them as intended, but this refreshes only the tiles, not their frame lines. Overall quite an ugly result.
    I wish I could provide screen clips to illustrate this behaviour because the above explanation is at best awkward, and the URL below requires a logon and other procedures (join a game) before you can see anything of value. Isn't there any way to attach JPGs to these posts?

    Thanks! Worked.
    I should have mentioned that Video drivers was the first thing I suspected, and updated to latest available. It made no discernible difference. Anyway I can live with this workaround, since running FF with HW acceleration off doesn't make any discernible difference to performance. Many thanks.

  • P2P using Java

    Hello..
    I am developing a P2P application in java.i would like to know what file transfer protocol can be used to download a file from multiple users like in gnutella or bittorrent .
    Thank you

    JoachimSauer wrote:
    JusteUneQuestion wrote:
    Err, Azureus is based on Eclipse, so its using SWT and doesnt work out of the box on solaris OS, so i wouldnt call it a real java Bit Torrent client. One of the benefit of using java is that it should work on all OS.That doesn't change the fact that it's a Java Bittorrent client. And aside from the SWT dependency, it's pure Java.
    Also, I'd be very surprised if there is no SWT implementation for Solaris (since it would be pretty much identical to that of any other Unix).There is one but it is an old version of SWT, and anyway i dont think it is convenient for a java software that should be ready to use to not be fully portable without having to change something. But that is only for users of solaris OS anyway. It's working perfectly for other Linux distribution and on Windows.

  • Java 8u45 x86 Image build produces virus detection

    Hi
    Since Java 8u40 and 8u45 every native build in 32bit as Image with netbeans(32bit) or Intellij produces an as virus detected .exe.
    I did some tests on a fesh Windows 7/8.1 Pro 64bit with a JavaFX sample project from netbeans.
                     | Netbeans + Project = Virus detection
    Java bit      |    64          +      64     =    NO
                     |    64          +      32     =    NO
                     |    32          +      32     =    YES
                     |    32          +      64     =    YES
    The result shows, that if Netbeans is started in 32bit, every build (.exe) is detected as a virus by some popular virus scanners! The same result with Intellij.
    Here a summary from virustotal.com:
    AVware                           Trojan.Win32.Generic!BT
    Agnitum                          Trojan.Kazy!jVWQz3HkaN0
    Avira                               TR/Kazy.15872.8
    Ikarus                             Win32.SuspectCrc
    McAfee                           Artemis!D4746025B56B
    Qihoo-360                       Win32/Trojan.19a
    Symantec                       WS.Reputation.1
    Tencent                          Win32.Trojan.Kazy.Wqmm
    TrendMicro-HouseCall      TROJ_GEN.R047H09DM15
    VIPRE                            Trojan.Win32.Generic!BT
    Going back to an older Java version (8u25) would cause a lot of work, because of the new JavaFX Windows and security risks.
    Can somebody give me hint for resolving this problem?
    Greets, phil

    Hi
    Since Java 8u40 and 8u45 every native build in 32bit as Image with netbeans(32bit) or Intellij produces an as virus detected .exe.
    I did some tests on a fesh Windows 7/8.1 Pro 64bit with a JavaFX sample project from netbeans.
                     | Netbeans + Project = Virus detection
    Java bit      |    64          +      64     =    NO
                     |    64          +      32     =    NO
                     |    32          +      32     =    YES
                     |    32          +      64     =    YES
    The result shows, that if Netbeans is started in 32bit, every build (.exe) is detected as a virus by some popular virus scanners! The same result with Intellij.
    Here a summary from virustotal.com:
    AVware                           Trojan.Win32.Generic!BT
    Agnitum                          Trojan.Kazy!jVWQz3HkaN0
    Avira                               TR/Kazy.15872.8
    Ikarus                             Win32.SuspectCrc
    McAfee                           Artemis!D4746025B56B
    Qihoo-360                       Win32/Trojan.19a
    Symantec                       WS.Reputation.1
    Tencent                          Win32.Trojan.Kazy.Wqmm
    TrendMicro-HouseCall      TROJ_GEN.R047H09DM15
    VIPRE                            Trojan.Win32.Generic!BT
    Going back to an older Java version (8u25) would cause a lot of work, because of the new JavaFX Windows and security risks.
    Can somebody give me hint for resolving this problem?
    Greets, phil

  • After the update before last (6.0.1 I think) Firefox crashed on resart and failed to send in the error report; I've had to roll back to V4 to use Firefox - any clues?

    The update to 6.0, 6.0.1 or 6.0.2 will not run on my system. Th einstall goes ok, the restart starts, throws up a bunch of Java incompatabilities then crashes with the apology screen offering to send in a report if I hit restart or quit. No matter how many times I hit restart, the report submission fails and Firefox stays crashed. Looking at my crash reports, the problem seems to start on or around August 18th 2011 - the crash ID below is the last generated (not found at your end obviously, as it never reached you)

    Thanks for the suggestion;
    Complete uninstall (Bookmarks saved to X-Marks), re-install, same problem (minus the imcompatible Jave bits & bobs, 'cos they weren't there to be objected to).
    So I'm back to V4 (might try hunting down a newer (pre V6) version)

  • Counting Rows in a Table

    I'm new at this mysql stuff and can't seem to figure out how to write the code for querying the database for the number of rows in a table. I can get a connection to the database and have done some basic commands like SELECT * FROM TABLE using rs.next().
    Can somebody help me out with the java bit for this..?
    select (count*) from myTable;
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT COUNT(*) FROM myTable);
    Thanks,
    amy

    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT COUNT(*) FROM myTable");
    while( rs.next() )
    // Should run 1 time only
    System.out.println( "count of rows: " + rs.getInt( 1 ) );
    rs.close();Try out, if I haven't overseen something.
    The trick is: your query brings you a resultset containing 1 row with 1 column: the int value.

  • Win XP Pro + Airport Extreme + 56k Modem

    Hi,
    I just recently bought an Airport Extreme Base Station with the 56k modem with the intents of connecting my 12" G4 PowerBook and 12" G4 iBook (both 2005) to the internet via the 56k modem. For the record, both connect perfectly, always, no hassle. (Albeit a bit slow at 48000, and it takes 60 seconds to logon and 60 to logoff)
    The catch here, is I have an IBM T42 ThinkPad (2005) that can see this Airport too. But I have not been able to find a way to turn the modem on and/or off using the IBM. I do know about the Jon Sevy java bit, I do have it downloaded -- BUT -- how does one go about installing this thing? It's a .JAR file.
    I also saw a better 'dialer' here by a person posting as 'KewlDawg'(?) that also may have worked, but the link is dead.
    I did manage to find a dialer called 'InModem 0.1.0' by Jason Barry Morley, but it often doesn't want to hang-up after a session.
    So as you can see, I have trying to resolve this myself, but not very successfully. Anyone have a better solution for the WinXP world?
    I'm so upset Apple didn't see fit to provide this themselves. What an undersight. I wanted to buy one of these for my Brother as he is a Windows only person and heavily uses dialup. Oh well, no sale there.
    I look forward to all and any suggestions. Thanx in advance!

    Bottom line? No! The standard for Gigabit Ethernet was set to work with CAT-5 cabling. CAT-5e, especially at the length you plan on using, will show no improvement. CAT-6 is designed for 10 GBps networking.

  • VPN Plug-in issue with BM 3.9 SP1 and iManager 2.7

    Hi,
    We have a Netware v6.5 SP7 server with iManager 2.7 . We have just installed
    BorderManager v3.9 SP1 and have configured in iManager and have running
    ACL's/Proxy. This is working as designed.
    We now wish to setup VPN for the first time but each time we select VPN
    Services in iManager we get returned "System Error - unknown error" and when
    we look in details the following is displayed:
    java.lang.IncompatibleClassChangeError\r\n at
    com.novell.imanage.vpn.VpnMemberTask.execute(VpnMe mberTask.java:215)\r\n at
    com.novell.emframe.dev.Task.execute(Task.java:505) \r\n at
    com.novell.nps.gadgetManager.BaseGadgetInstance.pr ocessRequest(BaseGadgetIns
    tance.java:849)\r\n at
    com.novell.nps.gadgetManager.GadgetManager.delegat eToGadget(GadgetManager.ja
    va:4253)\r\n at
    com.novell.nps.gadgetManager.LaunchService.onDeleg ateAction(LaunchService.ja
    va:86)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e
    Method)\r\n at
    sun.reflect.NativeMethodAccessorImpl.invoke(Native MethodAccessorImpl.java:39
    )\r\n at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(De legatingMethodAccessorImpl
    ..java:25)\r\n at java.lang.reflect.Method.invoke(Method.java:324)\r \n at
    com.novell.nps.gadgetManager.BaseGadgetInstance.ha ndleAction(BaseGadgetInsta
    nce.java:2362)\r\n at
    com.novell.nps.gadgetManager.GadgetManager.process InstanceRequest(GadgetMana
    ger.java:1606)\r\n at
    com.novell.nps.gadgetManager.GadgetManager.process ServiceRequest(GadgetManag
    er.java:1062)\r\n at
    com.novell.nps.PortalServlet.handleFrameService(Po rtalServlet.java:505)\r\n
    at com.novell.nps.PortalServlet.processRequest(Portal Servlet.java:373)\r\n
    at com.novell.nps.PortalServlet.doPost(PortalServlet. java:279)\r\n at
    com.novell.nps.PortalServlet.doGet(PortalServlet.j ava:262)\r\n at
    javax.servlet.http.HttpServlet.service(HttpServlet .java:689)\r\n at
    com.novell.emframe.fw.servlet.AuthenticatorServlet .service(AuthenticatorServ
    let.java:322)\r\n at
    javax.servlet.http.HttpServlet.service(HttpServlet .java:802)\r\n at
    org.apache.catalina.core.ApplicationFilterChain.in ternalDoFilter(Application
    FilterChain.java:252)\r\n at
    org.apache.catalina.core.ApplicationFilterChain.do Filter(ApplicationFilterCh
    ain.java:173)\r\n at
    org.apache.catalina.core.StandardWrapperValve.invo ke(StandardWrapperValve.ja
    va:214)\r\n at
    org.apache.catalina.core.StandardValveContext.invo keNext(StandardValveContex
    t.java:104)\r\n at
    org.apache.catalina.core.StandardPipeline.invoke(S tandardPipeline.java:520)\
    r\n at
    org.apache.catalina.core.StandardContextValve.invo keInternal(StandardContext
    Valve.java:198)\r\n at
    org.apache.catalina.core.StandardContextValve.invo ke(StandardContextValve.ja
    va:152)\r\n at
    org.apache.catalina.core.StandardValveContext.invo keNext(StandardValveContex
    t.java:104)\r\n at
    org.apache.catalina.authenticator.AuthenticatorBas e.invoke(AuthenticatorBase
    ..java:540)\r\n at
    org.apache.catalina.core.StandardValveContext.invo keNext(StandardValveContex
    t.java:102)\r\n at
    org.apache.catalina.core.StandardPipeline.invoke(S tandardPipeline.java:520)\
    r\n at
    org.apache.catalina.core.StandardHostValve.invoke( StandardHostValve.java:137
    )\r\n at
    org.apache.catalina.core.StandardValveContext.invo keNext(StandardValveContex
    t.java:104)\r\n at
    org.apache.catalina.valves.ErrorReportValve.invoke (ErrorReportValve.java:118
    )\r\n at
    org.apache.catalina.core.StandardValveContext.invo keNext(StandardValveContex
    t.java:102)\r\n at
    org.apache.catalina.core.StandardPipeline.invoke(S tandardPipeline.java:520)\
    r\n at
    org.apache.catalina.core.StandardEngineValve.invok e(StandardEngineValve.java
    :109)\r\n at
    org.apache.catalina.core.StandardValveContext.invo keNext(StandardValveContex
    t.java:104)\r\n at
    org.apache.catalina.core.StandardPipeline.invoke(S tandardPipeline.java:520)\
    r\n at
    org.apache.catalina.core.ContainerBase.invoke(Cont ainerBase.java:929)\r\n at
    org.apache.coyote.tomcat5.CoyoteAdapter.service(Co yoteAdapter.java:160)\r\n
    at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyo teHandler.java:300)\r\n
    at org.apache.jk.common.HandlerRequest.invoke(Handler Request.java:374)\r\n
    at org.apache.jk.common.ChannelSocket.invoke(ChannelS ocket.java:743)\r\n at
    org.apache.jk.common.ChannelSocket.processConnecti on(ChannelSocket.java:675)
    \r\n at
    org.apache.jk.common.SocketConnection.runIt(Channe lSocket.java:866)\r\n at
    org.apache.tomcat.util.threads.ThreadPool$ControlR unnable.run(ThreadPool.jav
    a:684)\r\n at java.lang.Thread.run(Thread.java:534)\r\n
    Upon looking on the logger screen of the server the following is displayed
    when VPN Services is selected in iManager: Task 514 ....
    java.lang.incompatibleclasschangeerror
    I reapplied the VPN schema extensions also uninstalled and installed the
    VPN.NPM from BroderManager v3.9 SP1 plus restarted Tomcat - same error
    occurs. Nothing shows up in the forums or the Novell site regarding this
    error.
    Does anyone know what might cause this and how it can be rectified. Until we
    correct this we cannot configure VPN Services at all.
    Cheers,
    Dale.
    Kind Regards,
    Dale Bentley
    Network Help

    Craig,
    Thanks for the feedback ... much appreciated.
    Yes the standalone version works fine and we can configure VPN. However that server version we would like to run still throws that error - not sure what I can do to fix that one.
    Regards,
    Dale.
    Kind Regards,
    Dale Bentley
    Network Help
    >>> Craig Johnson<[email protected]> 29/08/2008 4:03 pm >>>
    In article <[email protected]>, Dale wrote:
    > Does anyone know what might cause this and how it can be rectified. Until we
    > correct this we cannot configure VPN Services at all.
    >
    I hate those sorts of errors.... Gonzalo told me java errors are easy to
    figure out, but not for me. I usually find the clue in the first line or two,
    while the rest of the error message is just a reaction to the first problem.
    That said, what I THINK is happening is that you are either missing a needed
    java bit, or are using an incorrect version. (When you track down the fix,
    they usually end up being simple, like copying a file to some location, or a
    subdirectory of files).
    I would try downloading and setting up iManager 2.7 mobile on a PC, and
    installing the BM 3.9sp1 iMan 2.7 plugins. Bypass any tomcat issues on the
    server that way. If it still fails, then there may be some NDS issue, but
    let's start with a different iManager installation.
    Craig Johnson
    Novell Support Connection SysOp
    *** For a current patch list, tips, handy files and books on
    BorderManager, go to http://www.craigjconsulting.com ***

  • Where to find topics on unsigned variables?

    One example is this type ones:
    byte etyb = -1 ;
    int johns = 255& etyb ;
    int skirt = etyb &255 ;
    long trousers = johns != skirt ? (short) skirt ++ : (long) johns | --etyb << 1;
    \r\n\r\n :)

    Java has a single unsigned primitive type, char.
    The two uses for unsigned types (AFAIK) are to store larger numbers without incurring storage overheads, or to perform bit operations on.
    As for the former, there are very few situtations nowadays in which storing an extra 4 bytes for a value is unacceptable.
    As for the latter, it can be seen from the example given that bit operations can be performed normally with signed primitives if you are careful. Know the difference between >> and >>> before proceeding.
    is an interesting operator... rather than create unsigned types, Java has chosen to introduce an unsigned operator :-)Having said all that, I don't actually know any topics on unsigned variable types. Perhaps searching the forums for 'unsigned', or the internet for 'java unsigned' or 'java bit operations'. Then ignore hits for unsigned applets :-)
    -T

  • Discoverer and WebCenter

    Hi all
    I would like to know how is possible to integrate Discoverer portlets with WebCenter 3.0 with full functionality. I have been doing some tests taking Discoverer portlet provider, registering those portlets and displaying them on WebCenter, but they seem stalled, like pictures, with no further functionality like in OAS.
    Hope you can help me soon.
    Best regards!

    Hi,
    Webcenter supports Portal Development Kit (PDK) portlets which is currently how Discoverer 11g publishes portlets; therefore, you should be able to deploy native Discoverer 11g portlets in Webcenter.
    Oracle® Fusion Middleware Guide to Publishing Oracle Business Intelligence Discoverer Portlets11g Release 1 (11.1.1)
    http://download.oracle.com/docs/cd/E12839_01/bi.1111/b40110/webcenter.htm#sthref95
    Per the Discoverer Statement of Direction on OTN, JSR-168 Discoverer portlets are a planned 11g enhancement.
    http://www.oracle.com/technetwork/developer-tools/discoverer/overview/discoverer-sod-jan2009-132849.pdf
    For Discoverer 11g, WebLogic server is the default application server for the java bits, Oracle HTTP Server is the default web server.
    Hope that helps.
    Regards,
    Steve

Maybe you are looking for