Problem when transplant to linux

originally developed in Windows 2000
now i'm trying to transplant to linux
error occured when build client using ant
error message is:
client-compile:
[mkdir] Created dir:
/home/zyc/SPI_TOOLKIT_DEV/build-examples/client/classes [javac]
Compiling 99 source files to
/home/zyc/SPI_TOOLKIT_DEV/build-examples/client/classes
[javac] error: error reading source file: sun.io.MalformedInputException
[javac] 1 error
any idea?
thanks

Isn't Java's Virtual Machine supposed to detect platform and take care of such details transparently, ie., be platform independent?

Similar Messages

  • I met problem when installing Oracle 8.1.6 on Turbo Linux 7.0

    I met problem when installing Oracle 8.1.6 on Turbo Linux 7.0.
    After setting up environment variables, and successfully
    accessed KDE interface, everything was going on well.
    The process of installation blocked at 80% in "Database Creation
    Process" dialog window.
    I have tried two times and got the same result.
    The error message is:
    Warning: Cannot convert string "-*-Kochi Gothic-medium-r-normal-
    *-*100...
    Help!

    I have done some oracle installations over RedHat 7.0 (not certificated):
    Let's check some things:
    1- You must have changed very few parameters on your shm.h sem.h files which are in /usr/include/linux directory.
    2- You need to upgrade the glibc and libstdc libraries (.rpm)
    3- You must have installed the jre116_v5 on /usr/jre and made a symbolic link like this
    ln -s /usr/jre/jre116_v5 /usr/local/jre
    4- You must include in the CLASSPATH parameter the jre116_v5 directory. It should look something like this
    CLASSPATH=/usr/jre/jre116_v5:$ORACLE_HOME/jlib
    5- Be sure to create and export all the parameters in your .bash_profile.
    6- Run the ./runInstaller.sh in a terminal window inside the Xwindow.
    You can find the jre116_v5 in www.backdown.org
    I hope these tips help you
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by xx:
    Hi every body
    when I run ./runInstaller from cdrom
    I get this messages :
    Initializing Java Virtual Machine from /usr/local/jre/bin/jre.Please wait ...
    Error in CreateOUIProcess ():-1
    : Bad Address
    I use JDK-1-1-6.
    Thx<HR></BLOCKQUOTE>
    null

  • Problem on installation of linux through the vmware software on compaq CQ60

    Problem on installation of linux through the vmware software on xp operating system. My laptop is Compac CQ60.
    The error message is no device found compatable for the installation.

    user12190571 wrote:
    The error message is no device found compatable for the installation.The question after this kind of information is usually : What is the exact error you got, from who and when you were doing what.

  • ORA-00600 problem when create XMLType table with registerd schema

    Hi,
    I am using Oracle9i Enterprise Edition Release 9.2.0.4.0 on RedHat Linux 7.2
    I found a problem when I create table with registered schema with follow content:
         <xs:element name="body">
              <xs:complexType>
                   <xs:sequence>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:ID"/>
                   <xs:attribute name="class" type="xs:NMTOKENS"/>
                   <xs:attribute name="style" type="xs:string"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="body.content">
              <xs:complexType>
                   <xs:choice minOccurs="0" maxOccurs="unbounded">
                        <xs:element ref="p"/>
                        <xs:element ref="hl2"/>
                        <xs:element ref="nitf-table"/>
                        <xs:element ref="ol"/>
                   </xs:choice>
                   <xs:attribute name="id" type="xs:ID"/>
              </xs:complexType>
         </xs:element>
    Does Oracle not support element reference to other element with dot?
    For instance, body -> body.content
    Thanks for your attention.

    Sorry, amendment on the schema
         <xs:element name="body">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="body.head" minOccurs="0"/>
                        <xs:element ref="body.content" minOccurs="0" maxOccurs="unbounded"/>
                        <xs:element ref="body.end" minOccurs="0"/>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:ID"/>
                   <xs:attribute name="class" type="xs:NMTOKENS"/>
                   <xs:attribute name="style" type="xs:string"/>
              </xs:complexType>
         </xs:element>

  • IO no longer works when running on Linux

    Hi everyone,
    I have some code which was originally developed and running on a Windows environment, now I am trying to get it working under Linux. Some of the JSP file which output data as text files do not display correctly, I assume that if I change the JSP files to the UNIX newline characters this will fix the problem?
    The other issue is that there is some code which saves data to a file, the directory given may be local or on a network. It worked fine under Windows, but throws an Exception below when running under Linux even when using the UNIX like path structure (/machinename/dir/dir/filename). The code is below:
              byte[] data = /*method that gets the data to save*/;
              String fileDir = this.addExtraBackslashes(config.getOutputDirectory()); // getOutputDirectory sets the directory String
              String filePath = fileDir + fileName; // String fileName is set elsewhere in this code
              FileOutputStream fos = null;
              try {
                   fos = new FileOutputStream(filePath);
                   fos.write(data);
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   throw new Exception("Error saving file:-" + filePath +", please check the output path in the configuration", e);
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   throw new Exception("Error saving file:-" + filePath+", please check the output path in the configuration", e);
              } finally {
                   if (fos != null) {
                        try {
                             fos.close();
                        } catch (IOException e) {
                             log.warn("error closing file stream:" + filePath);
         private String addExtraBackslashes(String s) {
              StringBuffer sbRet = new StringBuffer();
              for (int i = 0;i < s.length();i++) {
                   char ch = s.charAt(i);
                   switch (ch) {
                        case '\\':
                             sbRet.append('\\');
                             sbRet.append(ch);
                             break;
                        default:
                             sbRet.append(ch);
                             break;
              return sbRet.toString();
         }Anyone have any ideas of what could be the problem and possible solutions?
    Thanks,

    People would have more of an idea if you posted the full exception text and a clue as to which line it was thrown from.
    Also, WTF is with all the addExtraBackslashes stuff? It looks like it's going through and doubling-up each \ character. I'm guessing this won't do anything on Linux if you've configured your paths to use / instead, but even so, what did it do on Windows?!
    And what are the values of fileDir and filePath? Does fileDir end in a /? Instead of having to worry about that, you could use new File(fileDir, filePath) to construct an abstract path and pass that to your FileOutputStream.

  • I have a problem when installing the Developer Suite

    Hello,
    I'm new to Oracle and I'm having a problem when installing the Developer Suite 10g. I have the Oracle Database 11g installed, but when I try to istall the developer, it gives me this error: "Oracle Developer Suite 10g cannot be installed into an existing Oracle9i 9.2.0.1.0 oe higher Oracle Home", Although I have installed the same thing twice before and it was working.
    Please help me with this :(

    Hi user;
    I'm new to Oracle and I'm having a problem when installing the Developer Suite 10g. I have the Oracle Database 11g installed, but when I try to istall the developer, it gives me this error: "Oracle Developer Suite 10g cannot be installed into an existing Oracle9i 9.2.0.1.0 oe higher Oracle Home", Although I have installed the same thing twice before and it was working.What is your OS? If you are linux-unix level you are making installation wiht same user of Oracle Db11g? Did you try to create new Oracle_home and set it before start installation?
    Regard
    Helios

  • I have a problem when updating applications on iOS 7.0.2

    I have a problem when updating apps on iOS 7.0.2 to go to the appstore I get the update but only tells me open, not update, I have to uninstall and reinstall te app and gives me the option to update. Sorry my bad english

    I am in the process of installing 9i on SUSE Linux 7.2. The only Linux that is certified to run 9i. The machine is is a fresh install of SUSE. I am running into the same problem. I ran through the first make problem by going to a shell and invoking a make -f oemagent.mk. Built the library just fine. Got errors when trying to run make -f ins_rdbms.mk. Not sure why the installer or the command line is having problems.
    Not sure if I can just hit Ignore and go on????
    Any help would be appreciated. You would think 9i would spread like butter on their "Certified" platform.

  • Problem when running a lex/yacc parser

    All,
    I am currently seeing a problem when using lex/yacc to generate my parser (I suspect that gcc is the problem), I do not have the same result than the same one I use on my linux box. I am currently using XCode 2.4.
    I have attached below the lexer and yacc file. I use the command line below to generate the C sources from the lex and yacc file, same ones on my Mac and on my linux box:
    yacc -d problem.y
    lex problem.l
    gcc -o problem y.tab.c lex.yy.c
    Normaly, when executing the binary and typing 1minutes, I should have the output below (working on the linux machine) :
    1 seconds (0)
    60 seconds (0)
    ,but on the Mac I have the output shown below with inverted values :
    0 seconds (1)
    0 seconds (60)
    Could someone try to compile the sources on their Mac (I am quite currious to see the result with XCode 2.3).
    ---------------------- problem.l ------------------------
    #include <stdlib.h>
    #include <time.h>
    #include "y.tab.h"
    extern YYSTYPE yylval;
    minutes? { return MINUTE; }
    weeks? { return WEEK; }
    hours? { return HOUR; }
    days? { return DAY; }
    [0-9]+ { yylval.number=strtoull(yytext, NULL, 10); return NUMBER; }
    [ \t\n\r]+ { }
    ---------------------- problem.y ------------------------
    #include <stdio.h>
    #include <string.h>
    #include <time.h>
    int yyparse(void);
    %union
    unsigned long long number;
    %token MINUTE HOUR DAY WEEK MONTH YEAR
    %token <number> NUMBER
    %type <number> time_duration
    %start time_duration
    time_duration:
    NUMBER MINUTE
    /* Convert from minutes to seconds */
    printf("%d seconds (%d)\n\r", $$, $1);
    $$ = $1 * 60;
    printf("%d seconds (%d)\n\r", $$, $1);
    |
    NUMBER HOUR
    /* Convert from hours to seconds */
    $$ = $1 * 60 * 60;
    printf("%d seconds\n\r", $$);
    |
    NUMBER DAY
    /* Convert from days to seconds */
    $$ = $1 * 60 * 60 * 24;
    printf("%d seconds\n\r", $$);
    |
    NUMBER WEEK
    /* Convert from weeks to seconds */
    $$ = $1 * 60 * 60 * 24 * 7;
    printf("%d seconds\n\r", $$);
    void yyerror(const char *str)
    fprintf(stderr, "Error: %s\n", str);
    int yywrap()
    return 1;
    main()
    yyparse();
    PowerBook G4 Mac OS X (10.4.7) Affected with the faulty lower SODIMM (and not in the serial range of the ones recognized with a fau

    Hi,
    yes, you are right .... I have changed %d to %llu and did fix the problem.
    Thanks,
    Emmanuel

  • NLS support problems when using AL32UTF8 in dads.conf

    Hello,
    Following a post by Joel Kallman, in one of the forum threads, about the mandatory use of AL32UTF8 in dads.conf, when running HTML DB v2.0, I changed my PlsqlNLSLanguage parameter accordingly.
    Prior to the change, I experienced some problems when using non-English characters – some application items appeared as gibberish when contained non-English characters, and the LIKE operator didn't perform as expected. After the change, it all seems to work OK, but now I have a different problem.
    All the non-English characters in my HTML page source code appears as gibberish. On screen, at run time, everything display correctly, but the source code seems to be corrupted. It is very difficult, and very annoying to debug the pages that way. Is there a way to enjoy both worlds – Using AL32UTF8 in the dads.conf, as required, and still getting a coherent HTML source code, containing non-English characters?
    Thanks,
    Arie.

    Joel,
    I use the following settings and they work fine for me:
    Operating system:
    LANG=de_DE
    LANGVAR=de_DE.UTF-8
    NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
    daust:oracle[o1020]> uname -a
    Linux daust.opal-consulting.de 2.4.21-37.EL #1 Wed Sep 7 13:35:21 EDT 2005 i686 i686 i386 GNU/Linux
    daust:oracle[o1020]> cat /etc/redhat-release
    Red Hat Enterprise Linux ES release 3 (Taroon Update 6)
    daust:oracle[o1020]>
    marvel.conf:
    <Location /pls/htmldb>
        Order deny,allow
        PlsqlDocumentPath docs
        AllowOverride None
        PlsqlDocumentProcedure wwv_flow_file_manager.process_download
        PlsqlDatabaseConnectString localhost:1521:o1020
        PlsqlNLSLanguage AMERICAN_AMERICA.WE8ISO8859P1
        PlsqlAuthenticationMode Basic
        SetHandler pls_handler
        PlsqlDocumentTablename wwv_flow_file_objects$
        PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
        PlsqlDefaultPage htmldb
        PlsqlDatabasePassword @BZvJYqadreElOqj5poCB5gE=
        Allow from all
    </Location>
    Database:
    daust:oracle[o1020]> sqlplus "/ as sysdba"
    SQL> select * from nls_database_parameters;
    PARAMETER                      VALUE
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CURRENCY                   $
    NLS_ISO_CURRENCY               AMERICA
    NLS_NUMERIC_CHARACTERS         .,
    NLS_CHARACTERSET               WE8ISO8859P1
    NLS_CALENDAR                   GREGORIAN
    NLS_DATE_FORMAT                DD-MON-RR
    NLS_DATE_LANGUAGE              AMERICAN
    NLS_SORT                       BINARY
    NLS_TIME_FORMAT                HH.MI.SSXFF AM
    PARAMETER                      VALUE
    NLS_TIMESTAMP_FORMAT           DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT             HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT        DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY              $
    NLS_COMP                       BINARY
    NLS_LENGTH_SEMANTICS           BYTE
    NLS_NCHAR_CONV_EXCP            FALSE
    NLS_NCHAR_CHARACTERSET         AL16UTF16
    NLS_RDBMS_VERSION              10.2.0.1.0####################
    Using AL32UTF8 resulted in the same problem as described ( and fixed ) here: Re: Strange - HTML not written correctly
    So, what is the proper configuration of the DAD, perhaps there are different ones for Unicode instances and non-Unicode instances.
    ~Dietmar.

  • I am facing problem when configuring listener.ora and tnsnamess.ora in listener side it is showing The listener supports no services The command completed successfully  and in when i cross check with listener from tns it is showing the error

    i am facing problem when configuring listener.ora and tnsnamess.ora in listener side it is showing The listener supports no services The command completed successfully  and in when i cross check with listener from tns it is showing the error
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    here is my listener file
    lsn =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.125.128)(PORT = 1575))
    #ADR_BASE_LISTENER = /u01/app/oracle
    (SID_LIST_LISTENER=
    (SERVICE_NAME=kull)
    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1)
    tnsnames.ora
    to_lsn=
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = server1)(PORT = 1575))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = kull )
    my database name is kull
    please somebody help

    Biswaranjan wrote:
    i have two database one is kull and another is kk
    i configured listener.ora in kull
    and tnsnames.ora in kk
    when i am running lsnrctl start listener in database kull
    This makes no sense.  You don't configure a listener nor a tnsnames.ora "in a database".   I hope this is just a language issue and not reflective of a fundamental misunderstanding of how tns works.
    read: http://edstevensdba.wordpress.com/2011/02/09/sqlnet_overview/ Help! I can’t connect to my database 
    read: http://edstevensdba.wordpress.com/2011/02/16/sqlnet_client_cfg/ Help! I can’t connect to my database (part duex)
    it is showing the message
    Alias                     lsn
    Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date                05-JUL-2013 19:08:06
    Uptime                    0 days 0 hr. 0 min. 0 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/product/11.2.0/db_1/log/diag/tnslsnr/server1/lsn/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1575)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=server1)(PORT=1575)))
    The listener supports no services
    The command completed successfully
    and in another database in kk when i am giving the command tnsping to_lsn
    it is giving this message
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = server1)(PORT = 1575)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = kull)))
    OK (0 msec)
    but when i am cross check sqlplus system/manager@ to_lsn
    it is giving the following error
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor

  • Scarey problem when running anything in 3D mode

    Hi,
    I own a MSI KT4 Ultra motherboard, have done for years and it worked flawlessly with my Voodoo3 3000 PCI graphics card. However, a while ago I retired the old beast in favour of a (then new) Nvidia FX 5950 Ultra AGP card. After a while, I noticed a very scarey problem when running any 3D applications...
    The first time I noticed it happening, I was playing Max Payne 2. The game suddenly went very slow, then the machine suddenly powered off (as if I pulled the power plug). I was unable to get it to restart, and eventually traced the problem back to my PSU, or so I thought...
    So, with a new PSU, I was okay for about a month, when it happened again, different game this time. So I promptly brought yet another PSU.
    Now with this PSU, when the system powers off in that scarey fashion it does, the computer actually re-starts when I pull the power cable out, count to 30, and put it back in again. Yet this PSU is a mear 300w (the others were 400w and 550w).
    Now the really scarey thing is that it's happening a whole lot more now. Even in 3D screensavers! When I played UT2004 this morning, it happened before I could even start a game! It seems that *any* 3D app causes this problem. It's very scarey seeing your computer shut down in this way.
    I tried re-setting the BIOS to 'safe' settings. However, if anything, it made the problem worse!
    I've noticed this behaviour in both Windows XP and Linux.
    Specs I think would be usefull:
    Athlon XP 2600+
    NVidia FX 5950 Ultra
    2 HDs
    1 CD-Rom
    Lots of fans (still runs hotter than I'd like, but is stable).
    Any help would be appeciated
    -Ribs.

    Hi,
    Spoke too soon  , right after I made that post, my machine crashed and rebooted in the most awfull fashion whilst playing Enemy Territory.
    I have a feeling it could be to do with how hard the hardware is being pushed. As UT2004 nearly always breaks, and pushes the hardware a lot harder than Enemy Territory does (Enemy Territory worked on my old Voodoo3 3000 PCI!). I can usually play a good session of Enemy territory and get bored of the game so I quit without doing a restart.
    I've still yet to get a new PSU (money is tight at the moment). I'll be able to get a new one soon. Any suggestions on a uber-powerfull one that couldn't possibly be underpowered? Preferably with two fans (inside and out) with a passthrough for my monitor.
    Thanks.
    -Ribs.

  • Problem when trying to start Weblogic server

    Hi,
    I have a problem when in was trying to start the weblogic server from the
    Weblogic Console.It Loads all the necessary files and finally it comes out
    giving an error "Server start message not received in allotted time, server
    process killed.".
    But at the same time i can start the server cooly by running the
    "Wlserver.exe".Can any help me on this problem
    regards
    Ramesh
    Baan Company

    Hi!
    I'm quite sure that this is a time out problem. I need about 3 minutes to start
    up my weblogic server. It's no problem to start it from a command prompt
    (startWeblogic.cmd), but using weblogic console application I always got a time
    out after 120 seconds. On a faster computer, where the start up process can be
    finished in less then 120 seconds it was no problem to start the server with the
    same amount of EJBs.
    Does anyone know how to increase the time out parameter for the weblogic console
    application?
    Best reagards,
    Przemek
    Ramesh wrote:
    Yes Its resource problem i suppose..
    My friend who is working with WL advised me to us 128 MB RAM to work with
    Weblogic server.
    Justin i need one more help
    I registered my servlet in Weblogic.properties.But when i try to load
    it from the command tab says "Property change error on LOAD".I dont know
    what
    properties i have to change to load this.
    Even the existing example servlets i coundnt Load.!!!!
    Can any one help on this problem
    Justin Knowlden <[email protected]> wrote in message
    news:[email protected]...
    I actually got WL to work on my system yesterday. I found that it was aresource
    problem. I had to shut down my X Server; if you don't know what the XServer is,
    it's (basically) the app that runs a window manager. It was consuming toomuch
    of my processing time. WL is now the only thing running on that machine.
    Since you have NT, You may want to try shutting down all uneccesarydevices and
    app's.
    Ramesh wrote:
    My System is
    Win NT 4.00
    Pentium pro 199 mhz
    and 80 mb RAM
    Is that because of the Memory Problem?
    I dont know because i am able run it well when it trought command
    prompt.
    Justin Knowlden <[email protected]> wrote in message
    news:[email protected]...
    I posted a comment about this last week and have to receive a reply. Ialso saw
    a post from April about this and there were no replies to it, either.
    My problem exists on Linux whether I use the console or not. What are
    the
    specs
    for your machine?
    Mine:
    Linux 2.2.15
    P/Pro 199 MHx
    128 MB RAM
    Ramesh wrote:
    Hi,
    I have a problem when in was trying to start the weblogic server
    from
    the
    Weblogic Console.It Loads all the necessary files and finally it
    comes
    out
    giving an error "Server start message not received in allotted time,server
    process killed.".
    But at the same time i can start the server cooly by running the
    "Wlserver.exe".Can any help me on this problem
    regards
    Ramesh
    Baan Company--
    Justin Knowlden <[email protected]>
    Software Developer
    MyPoints.com, Inc.
    Justin Knowlden <[email protected]>
    Software Developer
    MyPoints.com, Inc.
    Przemyslaw Rychlewski Tech@Spree Software Technology GmbH
    mailto:[email protected] http://www.tech.spree.de
    Tel +49 (0)30 235 520-34 Bülowstrasse 66
    Fax +49 (0)30 217 520-12 10783 Berlin

  • Have a problem when accessing the firewall

    Hi,
    Could you pls see this problem?
    http://www.4shared.com/photo/Lc_pdye4/fig108.html
    It keeps on prompting me if I choose "Redo" above till I have chosen "quit".
    Best regards

    Please remember to always provide information about your OS and how to reproduce your problem when asking a question. There are fundamental differences between the various Linux distributions and access methods and there are no universal solutions.
    From what I can gather, the NX client should ask you for your SSH login. You need to specify your administrator account here. If you have terminal access, you can also try to type "sudo su -", which will prompt you for your current account password and then log you in as user root. This works provided your account has been given sudo access. Once you have root access, type "gnome-control-center" form the command prompt to open the YaST control center..

  • Problems using RMI between linux and windows.

    I have problems using RMI between linux and windows.
    This is my scenario:
    - Server running on linux pc
    - Clients running on linux and windows PCs
    When a linux client disconnect, first time that server try to call a method of this client, a rmi.ConnectException is generated so server can catch it, mark the client as disconnected and won't communicate with it anymore.
    When a windows client (tested on XP and Vista) disconnect, no exceptions are generated (I tryed to catch all the rmi exception), so server cannot know that client is disconnected and hangs trying to communicate with the windows client.
    Any ideas?
    Thanks in advance.
    cambieri

    Thanks for your reply.
    Yes, we are implementing a sort of callback using Publisher (remote Observable) and Subscribers (remote Observer). The pattern and relative code is very well described at this link: http://www2.sys-con.com/ITSG/virtualcd/java/archives/0210/schwell/index.html (look at the notifySubscribers(Object pub, Object code) function).
    Everything works great, the only problem is this: when a Publisher that reside on a Linux server try to notify something to a "dead" Subscriber that reside on a Windows PC it does't receive the usual ConnectException and so tends to hang.
    As a workaround we have solved now starting a new Thread for each update (notification), so only that Thread is blocked (until the timeout i guess) and not the entire "notifySubscribers" function (that contact all the Subscribers).
    Beside this, using the Thread seem to give us better performance.
    Is that missed ConnectException a bug? Or we are just making some mistake?
    We are using java 6 and when both client and server are Linux or Windows the ConnectException always happen and we don't have any problem.
    I hope that now this information are enough.
    Thanks again and greetings.
    O.C.

  • I have an Epson printer on a Wifi network. Windows 7 desktop and and HP Win 7 laptop (my wifes) print to it just fine. My MacBook Pro running Yosemite won't detect it, and I have the latest driver installed. No problem when I had a Canon...

    I have an Epson printer on a Wifi network. Windows 7 desktop is running the network, and my wife's HP Win 7 laptop prints to it just fine. My MacBook Pro running Yosemite won't detect it, and I do have the latest driver installed. I didn't have a problem when I had a Canon Pixma on the network, but when I replaced it with the Epson nothing seems to work. I go to add a printer to the queue and only the FAX function of the printer shows up - not the WS-4530 print function. Does anyone out there have any suggestions?  Please??? :-)

    Hi Kelly,
    As someone who has to print from my Mac to a networked printer at home all the time, I can certainly understand how frustrating it must be to have that fail to perform as expected. Let's see if we can get you up and running.
    I would suggest that you troubleshoot using the steps in this article -
    OS X Yosemite: Printing troubleshooting
    Start with the section titled Check the network.
    Thanks for using Apple Support Communities.
    Sincerely,
    Brett L 

Maybe you are looking for

  • MacBook Pro poor performance in relation to NVIDIA GeForce 9600M GT

    Hi All who may be having similar issues. I am now on my third replacement custom Macbook Pro 2.66GHz with 7200rpm hardrive and 4Gb of ram, and yes am so peeved that this has happened again. I am aware of the article in the 'Inquirer' about the 'bad b

  • Can't set Safari as true default browser in windows xp

    I'm running WindowsXP, and I installed the latest version of Safari. No matter what I do, it won't become the true default browser. I tried using the Safari preferences approach which only has one effect - it changes the icon at the top of the start

  • Cover art gets lost between 2 Macs

    Hi, I'm importing my whole CD collection to have it playable on iMac with FrontRow. Because of ergonomics and the fact that the iMac is not net connected I'm ripping my CD's on another Mac and then transfering them with USB memory card or with DVD-RW

  • Camtasia recording of Flash CS3

    I develop training tutorials for Flash and have run into a problem that I hope someone can help me with. I have not noticed this in previous versions of Flash but something is just not right and I cannot put my finger on it. I have tried different ve

  • IPod nano (1st Gen) won't sync with iTunes 7

    I upgraded iTunes to latest version and now when I connect my Nano it does not sync the music. I have 382 tunes on my Nano and it loaded only 25 into the Library - this were all Music Store purchases strangely. Any ideas? I'm on XP by they way iPod N