Really annoying RMI-related error

Hi,
I'm attempting to write a Message-Passing system so that two people can play chess against each other remotely. On each player's host computer, a ChessPlayer object keeps track of the current board layout and comes up with the player's next move. A ChessServer object handles all of the communication with the remote opponent; it packages up moves from the local player into messages, and ships them off to the opponent's ChessServer. (It also takes messages from the remote opponent and calls the required methods on the local ChessPlayer.)
I have a ChessMove object interface class and a ChessMove implementation class as follows
~~~~~~~~~~~~~~~~~~~
RMIChessMove.java :
package RMI;
import java.rmi.RemoteException;
// Interface for RMI-based chess move
public interface RMIChessMove {
public int sourceRow() throws RemoteException;
public int sourceCol() throws RemoteException;
public int destRow() throws RemoteException;
public int destCol() throws RemoteException;
public int checkFlag() throws RemoteException;
public void setSourceRow(int sr) throws RemoteException;
public void setSourceCol(int sc) throws RemoteException;
public void setDestRow(int dr) throws RemoteException;
public void setDestCol(int dc) throws RemoteException;
public void setCheckFlag (int cf) throws RemoteException;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RMIChessMoveImpl.java :
package RMI;
import java.rmi.*;
public class RMIChessMoveImpl implements RMIChessMove extends Remote {
String fromPos;
String toPos;
int sourceRow;
int sourceCol;
int destRow;
int destCol;
int checkFlag;
public RMIChessMoveImpl(int sr, int sc, int dr, int dc, int cf) {
int sourceRow=sr;
int sourceCol=sc;
int destRow=dr;
int destCol=dc;
int checkFlag=cf;
public int sourceRow() throws RemoteException {
return sourceRow;
public int sourceCol() throws RemoteException {
return sourceCol;
public int destRow() throws RemoteException {
return destRow;
public int destCol() throws RemoteException {
return destCol;
public int checkFlag() throws RemoteException {
return checkFlag;
public void setSourceRow(int sr) throws RemoteException {
sourceRow=sr;
public void setSourceCol(int sc) throws RemoteException {
sourceCol=sc;
public void setDestRow(int dr) throws RemoteException {
destRow=dr;
public void setDestCol(int dc) throws RemoteException {
destCol=dc;
public void setCheckFlag (int cf) throws RemoteException {
checkFlag=cf;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The RMIChessMove class compiles without any errors, but the compiler comes up with a weird error when i try to compile RMIChessMoveImpl.java which is as follow:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RMI/RMIChessMoveImpl.java [5:1] '{' expected
public class RMIChessMoveImpl implements RMIChessMove extends Remote {
^
RMI/RMIChessMoveImpl.java [51:1] '}' expected
^
2 errors
Errors compiling RMIChessMoveImpl.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I've tried switching round the "implements RMIChessMove" and "extends Remote" things but then I get this error message:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RMI/RMIChessMoveImpl.java [5:1] no interface expected here
public class RMIChessMoveImpl extends Remote implements RMIChessMove {
^
1 error
Errors compiling RMIChessMoveImpl.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I'm convinced this should compile because it's based on O'Reilly's "Java Distributed Computing" textbook.
I'll happily give all my duke dollars to anyone who can solve this problem for me asap.
Cheers.

When I create an RMI application I use the following structure:
MyInterface extends Remote
MyInterfaceImpl extends UnicastRemoteObject implements MyInterface
Your code would then look like this:
public interface RMIChessMove extends Remote {
  // ALL methods should throw RemoteException
public class RMIChessMoveImpl extends UnicastRemoteObject implements RMIChessMove {
// implemented methods from RMIChessMove interface + your setters and manipulators
}If you do not do it like this, your RMI will not work. Note that every implementation of your interface (in this case, ít's RMIChessMoveImpl) should extend UnicastRemoteObject. Then you will have to let the rmic compiler loose on that class to compile the skels and stubs.
Also note that interfaces extend eachother, classes extend eachother, but classes implement interfaces.

Similar Messages

  • Seriously, this issue is really annoying. why wont my songs download? it wont stop saying there is an error. this needs to be fixed. refund or apple needs to put these songs in my itunes manually if that can be done.

    seriously, this issue is really annoying. why wont my songs download? it wont stop saying there is an error. this needs to be fixed. refund or apple needs to put these songs in my itunes manually if that can be done.

    seriously, this issue is really annoying. why wont my songs download? it wont stop saying there is an error. this needs to be fixed. refund or apple needs to put these songs in my itunes manually if that can be done.

  • SIGSEGV in socket accept native code (possibly RMI related)

    Hi,
    We've been having this problem for a while on a 1.4.2 VM (don't recall the exact version), so we upgraded to 1.5.0_03 and it got slightly worse... so we upgraded to 1.5.0_09 and it got much worse. Unfortunately, this is the latest version of the JVM that's packaged/authorised in my organisation so trying later versions isn't possible.
    The problem is a Signal 11 (SIGSEGV) fault during JVM shutdown which appears to be caused by a bug in the native socket accept code. The problem seems to be exhibited by some RMI related code. This client uses RMI to talk to a server, but (as far as I know - it's using a third party closed-source library) it doesn't export any RMI objects of its own, so I'm a bit baffled why there's an RMI TCP Accept thread at all.
    We've googled every conceivable combination of useful-looking terms (including Java_java_net_PlainSocketImpl_socketAccept (with and without the offset), bits of the stack trace, PC addresses, thread names, etc.) and we can turn up one or two things that look like they're related, but really nothing that appears hugely significant.
    Basically, we're really stuck with this and it's a production problem so it's causing us a lot of pain. If anybody out there has the faintest clue, we'd really appreciate it.
    Thanks.
    ====uname -a=====
    (Hostname changed)
    Linux host.domain.blah.com 2.6.9-22.0.2.ELsmp #1 SMP Thu Jan 5 17:13:01 EST 2006 i686 athlon i386 GNU/Linux
    ====hs thing log file====
    (NOTE: Some of the information in here has been obfuscated for commercial sensitivity, but I don't think any of it is relevant)
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xb789bb79, pid=30978, tid=2638416816
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_09-b01 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x284b79]
    --------------- T H R E A D ---------------
    Current thread (0x08ae81a0): JavaThread "RMI TCP Accept-0" daemon [_thread_in_vm, id=14935]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000
    Registers:
    EAX=0x00000000, EBX=0xb7bcfe50, ECX=0x00000002, EDX=0x00000ffc
    ESP=0x9d42ff2c, EBP=0x9d42ff64, ESI=0x08ae81a0, EDI=0x00000008
    EIP=0xb789bb79, CR2=0x00000000, EFLAGS=0x00010213
    Top of Stack: (sp=0x9d42ff2c)
    0x9d42ff2c: 08ae81a0 08ae8260 9d42ff64 9e4e04af
    0x9d42ff3c: 08ae81a0 0a5eec84 00000052 00000001
    0x9d42ff4c: 00000001 9d42ffb4 9e4e02bb 9e4e5184
    0x9d42ff5c: 0a5eec84 0000000b 9d42ffe4 9e4df306
    0x9d42ff6c: 08ae8260 00000000 00000022 0000000b
    0x9d42ff7c: 08ae81a0 afde6cb8 9d42ffc4 9d42ffac
    0x9d42ff8c: 9d42ffa8 00000010 00000000 00000000
    0x9d42ff9c: b7a3f669 00000000 0000c2ff 0000001c
    Instructions: (pc=0xb789bb79)
    0xb789bb69: 00 00 00 06 00 00 00 8b 45 0c 8b 7d 10 c1 ef 02
    0xb789bb79: 8b 10 8b 83 5c 13 00 00 8b 00 8b 4a 04 85 c0 0f
    Stack: [0x9d3b0000,0x9d431000), sp=0x9d42ff2c, free space=511k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x284b79]
    C [libnet.so+0xb306] Java_java_net_PlainSocketImpl_socketAccept+0x276
    j java.net.PlainSocketImpl.socketAccept(Ljava/net/SocketImpl;)V+0
    j java.net.PlainSocketImpl.accept(Ljava/net/SocketImpl;)V+7
    j java.net.ServerSocket.implAccept(Ljava/net/Socket;)V+50
    j java.net.ServerSocket.accept()Ljava/net/Socket;+48
    j sun.rmi.transport.tcp.TCPTransport.run()V+59
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [libjvm.so+0x266eec]
    V [libjvm.so+0x42da88]
    V [libjvm.so+0x266745]
    V [libjvm.so+0x2667de]
    V [libjvm.so+0x2ddf75]
    V [libjvm.so+0x4cdb13]
    V [libjvm.so+0x42e698]
    C [libpthread.so.0+0x5341]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j java.net.PlainSocketImpl.socketAccept(Ljava/net/SocketImpl;)V+0
    j java.net.PlainSocketImpl.accept(Ljava/net/SocketImpl;)V+7
    j java.net.ServerSocket.implAccept(Ljava/net/Socket;)V+50
    j java.net.ServerSocket.accept()Ljava/net/Socket;+48
    j sun.rmi.transport.tcp.TCPTransport.run()V+59
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x09274f88 JavaThread "RMI ConnectionExpiration-[10.72.14.39:40107]" daemon [_thread_blocked, id=11989]
    0x08c9cc20 JavaThread "RMI ConnectionExpiration-[10.72.14.40:40107]" daemon [_thread_blocked, id=11983]
    0x0903aec8 JavaThread "RMI ConnectionExpiration-[10.72.14.40:40112]" daemon [_thread_blocked, id=11982]
    0x08fbc518 JavaThread "RMI ConnectionExpiration-[10.72.14.44:40113]" daemon [_thread_blocked, id=11981]
    0x0813ceb8 JavaThread "RMI ConnectionExpiration-[10.72.13.183:40113]" daemon [_thread_blocked, id=11980]
    0x08a6e7f0 JavaThread "RMI ConnectionExpiration-[10.72.14.40:40110]" daemon [_thread_blocked, id=11979]
    0x08ee22f0 JavaThread "RMI ConnectionExpiration-[10.72.14.44:40109]" daemon [_thread_blocked, id=11978]
    0x090c0ef0 JavaThread "RMI ConnectionExpiration-[10.72.14.39:40118]" daemon [_thread_blocked, id=11977]
    0x091fdfb0 JavaThread "RMI ConnectionExpiration-[10.72.13.183:40109]" daemon [_thread_blocked, id=11976]
    0x087dd5a0 JavaThread "RMI ConnectionExpiration-[10.72.14.39:40110]" daemon [_thread_blocked, id=10595]
    0x091fe340 JavaThread "RMI RenewClean-[10.72.14.39:40110]" daemon [_thread_blocked, id=10594]
    0x08e70220 JavaThread "RMI ConnectionExpiration-[10.72.14.39:53973,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=10593]
    0x087de380 JavaThread "RMI RenewClean-[10.72.14.39:53973,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=10353]
    0x092832e0 JavaThread "RMI RenewClean-[10.72.13.183:40109]" daemon [_thread_blocked, id=10346]
    0x085c2710 JavaThread "RMI RenewClean-[10.72.13.183:40248,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=10336]
    0x08a470a0 JavaThread "RMI ConnectionExpiration-[10.72.14.39:40114]" daemon [_thread_blocked, id=10327]
    0x09471ca8 JavaThread "RMI RenewClean-[10.72.14.39:40114]" daemon [_thread_blocked, id=10326]
    0x08e10e78 JavaThread "RMI ConnectionExpiration-[10.72.14.39:54045,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=10325]
    0x08dc22b8 JavaThread "RMI ConnectionExpiration-[10.72.14.39:40112]" daemon [_thread_blocked, id=10178]
    0x08dc1ae0 JavaThread "RMI RenewClean-[10.72.14.39:40112]" daemon [_thread_blocked, id=10177]
    0x08dc64b8 JavaThread "RMI ConnectionExpiration-[10.72.14.39:54006,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=10176]
    0x08e6ac08 JavaThread "RMI RenewClean-[10.72.14.39:54006,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=10146]
    0x087d94f8 JavaThread "RMI ConnectionExpiration-[10.72.13.183:40111]" daemon [_thread_blocked, id=9948]
    0x087d8df8 JavaThread "RMI RenewClean-[10.72.13.183:40111]" daemon [_thread_blocked, id=9947]
    0x085c30e8 JavaThread "RMI RenewClean-[10.72.13.183:40278,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=9945]
    0x085c3bb0 JavaThread "RMI ConnectionExpiration-[10.72.14.44:40111]" daemon [_thread_blocked, id=8815]
    0x085c1c08 JavaThread "RMI RenewClean-[10.72.14.44:40111]" daemon [_thread_blocked, id=8432]
    0x085c4940 JavaThread "RMI ConnectionExpiration-[10.72.14.44:33150,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=8241]
    0x085c3f10 JavaThread "RMI RenewClean-[10.72.14.44:33150,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=8219]
    0x085bee18 JavaThread "RMI ConnectionExpiration-[10.72.14.39:40116]" daemon [_thread_blocked, id=8106]
    0x085be388 JavaThread "RMI RenewClean-[10.72.14.39:40116]" daemon [_thread_blocked, id=8105]
    0x08e15b68 JavaThread "RMI ConnectionExpiration-[10.72.14.39:54066,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=7006]
    0x085bd3b0 JavaThread "RMI RenewClean-[10.72.14.39:54066,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=6696]
    0x08e152c8 JavaThread "RMI RenewClean-[10.72.14.39:40118]" daemon [_thread_blocked, id=6524]
    0x08a45098 JavaThread "RMI RenewClean-[10.72.14.39:54088,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=5775]
    0x09472c60 JavaThread "RMI RenewClean-[10.72.14.44:40109]" daemon [_thread_blocked, id=5771]
    0x09474e00 JavaThread "RMI RenewClean-[10.72.14.44:33127,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=5769]
    0x08dc1428 JavaThread "RMI RenewClean-[10.72.14.40:40110]" daemon [_thread_blocked, id=5765]
    0x08dc5758 JavaThread "RMI RenewClean-[10.72.14.40:42086,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=5763]
    0x092846f0 JavaThread "RMI RenewClean-[10.72.13.183:40113]" daemon [_thread_blocked, id=5759]
    0x08b6cc00 JavaThread "RMI RenewClean-[10.72.13.183:40295,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=5757]
    0x08b72058 JavaThread "RMI RenewClean-[10.72.14.44:40113]" daemon [_thread_blocked, id=5745]
    0x08b712a0 JavaThread "RMI RenewClean-[10.72.14.44:33186,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=5726]
    0x0a7339b0 JavaThread "RMI RenewClean-[10.72.14.40:40112]" daemon [_thread_blocked, id=5722]
    0x08ad4d58 JavaThread "RMI RenewClean-[10.72.14.40:42110,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=5720]
    0x08fbe770 JavaThread "Scheduler" daemon [_thread_blocked, id=5719]
    0x0997a398 JavaThread "RMI RenewClean-[10.72.14.39:54045,com.commerciallysensitive.RMISSLClientSocketFactory@180650e]" daemon [_thread_blocked, id=15762]
    0x08e1b708 JavaThread "RMI LeaseChecker" daemon [_thread_blocked, id=14942]
    =>0x08ae81a0 JavaThread "RMI TCP Accept-0" daemon [_thread_in_vm, id=14935]
    0x08604250 JavaThread "RMI RenewClean-[10.72.14.39:40107]" daemon [_thread_blocked, id=14931]
    0x08603c78 JavaThread "GC Daemon" daemon [_thread_blocked, id=14930]
    0x0911f558 JavaThread "RMI RenewClean-[10.72.14.40:40107]" daemon [_thread_blocked, id=14920]
    0x08da6e20 JavaThread "Scheduler" daemon [_thread_blocked, id=14902]
    0x08da7db0 JavaThread "CleanUpReference clean up thread" daemon [_thread_blocked, id=14892]
    0x08121920 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=30988]
    0x08120498 JavaThread "CompilerThread1" daemon [_thread_blocked, id=30987]
    0x0811f438 JavaThread "CompilerThread0" daemon [_thread_blocked, id=30986]
    0x0811e308 JavaThread "AdapterThread" daemon [_thread_blocked, id=30985]
    0x0811d578 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=30984]
    0x08110598 JavaThread "Finalizer" daemon [_thread_blocked, id=30983]
    0x081100e0 JavaThread "Reference Handler" daemon [_thread_blocked, id=30982]
    0x0806b288 JavaThread "main" [_thread_blocked, id=30978]
    Other Threads:
    0x0810dbe0 VMThread [id=30981]
    0x08122dc0 WatcherThread [id=30989]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 19008K, used 8604K [0xafa60000, 0xb1090000, 0xb1090000)
    eden space 16064K, 45% used [0xafa60000,0xb01953c0,0xb0a10000)
    from space 2944K, 41% used [0xb0db0000,0xb0ee1e28,0xb1090000)
    to space 3328K, 0% used [0xb0a10000,0xb0a10000,0xb0d50000)
    PSOldGen total 38592K, used 31818K [0xa4890000, 0xa6e40000, 0xafa60000)
    object space 38592K, 82% used [0xa4890000,0xa67a2bf0,0xa6e40000)
    PSPermGen total 28416K, used 20144K [0xa0890000, 0xa2450000, 0xa4890000)
    object space 28416K, 70% used [0xa0890000,0xa1c3c340,0xa2450000)
    Dynamic libraries:
    004aa000-004bf000 r-xp 00000000 fd:00 1867896 /lib/ld-2.3.4.so
    004bf000-004c0000 r-xp 00015000 fd:00 1867896 /lib/ld-2.3.4.so
    004c0000-004c1000 rwxp 00016000 fd:00 1867896 /lib/ld-2.3.4.so
    004c3000-005e7000 r-xp 00000000 fd:00 1867897 /lib/tls/libc-2.3.4.so
    005e7000-005e8000 r-xp 00124000 fd:00 1867897 /lib/tls/libc-2.3.4.so
    005e8000-005eb000 rwxp 00125000 fd:00 1867897 /lib/tls/libc-2.3.4.so
    005eb000-005ed000 rwxp 005eb000 00:00 0
    005ef000-005f1000 r-xp 00000000 fd:00 1868983 /lib/libdl-2.3.4.so
    005f1000-005f3000 rwxp 00001000 fd:00 1868983 /lib/libdl-2.3.4.so
    005f5000-00616000 r-xp 00000000 fd:00 1868961 /lib/tls/libm-2.3.4.so
    00616000-00618000 rwxp 00020000 fd:00 1868961 /lib/tls/libm-2.3.4.so
    006e3000-006f1000 r-xp 00000000 fd:00 1868984 /lib/tls/libpthread-2.3.4.so
    006f1000-006f3000 rwxp 0000d000 fd:00 1868984 /lib/tls/libpthread-2.3.4.so
    006f3000-006f5000 rwxp 006f3000 00:00 0
    009dd000-009ef000 r-xp 00000000 fd:00 1869140 /lib/libnsl-2.3.4.so
    009ef000-009f1000 rwxp 00011000 fd:00 1869140 /lib/libnsl-2.3.4.so
    009f1000-009f3000 rwxp 009f1000 00:00 0
    08048000-08057000 r-xp 00000000 fd:00 1199000 /usr/java/jdk-1.5.0_09-i386/bin/java
    08057000-08059000 rwxp 0000e000 fd:00 1199000 /usr/java/jdk-1.5.0_09-i386/bin/java
    08059000-0ab15000 rwxp 08059000 00:00 0
    98f9f000-98fa2000 ---p 98f9f000 00:00 0
    98fa2000-99020000 rwxp 98fa2000 00:00 0
    99020000-99023000 ---p 99020000 00:00 0
    99023000-990a1000 rwxp 99023000 00:00 0
    990a1000-990a4000 ---p 990a1000 00:00 0
    990a4000-99122000 rwxp 990a4000 00:00 0
    99122000-99125000 ---p 99122000 00:00 0
    99125000-991a3000 rwxp 99125000 00:00 0
    991a3000-991a6000 rwxp 991a3000 00:00 0
    991a6000-99224000 rwxp 991a6000 00:00 0
    99224000-99227000 ---p 99224000 00:00 0
    99227000-992a5000 rwxp 99227000 00:00 0
    992a5000-992a8000 rwxp 992a5000 00:00 0
    992a8000-99326000 rwxp 992a8000 00:00 0
    99326000-99329000 ---p 99326000 00:00 0
    99329000-993a7000 rwxp 99329000 00:00 0
    993a7000-993aa000 rwxp 993a7000 00:00 0
    993aa000-99428000 rwxp 993aa000 00:00 0
    99428000-9942b000 ---p 99428000 00:00 0
    9942b000-994a9000 rwxp 9942b000 00:00 0
    994a9000-994ac000 ---p 994a9000 00:00 0
    994ac000-9952a000 rwxp 994ac000 00:00 0
    9952a000-9952d000 rwxp 9952a000 00:00 0
    9952d000-995ab000 rwxp 9952d000 00:00 0
    995ab000-995ae000 ---p 995ab000 00:00 0
    995ae000-9962c000 rwxp 995ae000 00:00 0
    9962c000-9962f000 ---p 9962c000 00:00 0
    9962f000-996ad000 rwxp 9962f000 00:00 0
    996ad000-996b0000 rwxp 996ad000 00:00 0
    996b0000-9972e000 rwxp 996b0000 00:00 0
    9972e000-99731000 ---p 9972e000 00:00 0
    99731000-997af000 rwxp 99731000 00:00 0
    997af000-997b2000 ---p 997af000 00:00 0
    997b2000-99830000 rwxp 997b2000 00:00 0
    99830000-99833000 ---p 99830000 00:00 0
    99833000-998b1000 rwxp 99833000 00:00 0
    998b1000-998b4000 ---p 998b1000 00:00 0
    998b4000-99932000 rwxp 998b4000 00:00 0
    99932000-99935000 ---p 99932000 00:00 0
    99935000-999b3000 rwxp 99935000 00:00 0
    999b3000-999b6000 ---p 999b3000 00:00 0
    999b6000-99a34000 rwxp 999b6000 00:00 0
    99a34000-99a37000 ---p 99a34000 00:00 0
    99a37000-99ab5000 rwxp 99a37000 00:00 0
    99ab5000-99ab8000 ---p 99ab5000 00:00 0
    99ab8000-99b36000 rwxp 99ab8000 00:00 0
    99b36000-99b39000 rwxp 99b36000 00:00 0
    99b39000-99bb7000 rwxp 99b39000 00:00 0
    99bb7000-99bba000 ---p 99bb7000 00:00 0
    99bba000-99c38000 rwxp 99bba000 00:00 0
    99c38000-99c3b000 ---p 99c38000 00:00 0
    99c3b000-99cb9000 rwxp 99c3b000 00:00 0
    99cb9000-99cbc000 ---p 99cb9000 00:00 0
    99cbc000-99d3a000 rwxp 99cbc000 00:00 0
    99d3a000-99d3d000 ---p 99d3a000 00:00 0
    99d3d000-99dbb000 rwxp 99d3d000 00:00 0
    99dbb000-99dbe000 rwxp 99dbb000 00:00 0
    99dbe000-99e3c000 rwxp 99dbe000 00:00 0
    99e3c000-99e3f000 ---p 99e3c000 00:00 0
    99e3f000-99ebd000 rwxp 99e3f000 00:00 0
    99ebd000-99ec0000 rwxp 99ebd000 00:00 0
    99ec0000-99f3e000 rwxp 99ec0000 00:00 0
    99f3e000-99f41000 ---p 99f3e000 00:00 0
    99f41000-99fbf000 rwxp 99f41000 00:00 0
    99fbf000-99fc2000 ---p 99fbf000 00:00 0
    99fc2000-9a040000 rwxp 99fc2000 00:00 0
    9a040000-9a043000 ---p 9a040000 00:00 0
    9a043000-9a0c1000 rwxp 9a043000 00:00 0
    9a0c1000-9a0c4000 ---p 9a0c1000 00:00 0
    9a0c4000-9a142000 rwxp 9a0c4000 00:00 0
    9a142000-9a145000 ---p 9a142000 00:00 0
    9a145000-9a1c3000 rwxp 9a145000 00:00 0
    9a1c3000-9a1c6000 ---p 9a1c3000 00:00 0
    9a1c6000-9a244000 rwxp 9a1c6000 00:00 0
    9a244000-9a247000 ---p 9a244000 00:00 0
    9a247000-9a2c5000 rwxp 9a247000 00:00 0
    9a2c5000-9a2c8000 ---p 9a2c5000 00:00 0
    9a2c8000-9a346000 rwxp 9a2c8000 00:00 0
    9a346000-9a349000 ---p 9a346000 00:00 0
    9a349000-9a3c7000 rwxp 9a349000 00:00 0
    9a3c7000-9a3ca000 ---p 9a3c7000 00:00 0
    9a3ca000-9a448000 rwxp 9a3ca000 00:00 0
    9a448000-9a44b000 rwxp 9a448000 00:00 0
    9a44b000-9a4c9000 rwxp 9a44b000 00:00 0
    9a4c9000-9a4cc000 rwxp 9a4c9000 00:00 0
    9a4cc000-9a54a000 rwxp 9a4cc000 00:00 0
    9a54a000-9a54d000 ---p 9a54a000 00:00 0
    9a54d000-9a5cb000 rwxp 9a54d000 00:00 0
    9a5cb000-9a5ce000 rwxp 9a5cb000 00:00 0
    9a5ce000-9a64c000 rwxp 9a5ce000 00:00 0
    9a64c000-9a64f000 ---p 9a64c000 00:00 0
    9a64f000-9a6cd000 rwxp 9a64f000 00:00 0
    9a6cd000-9a6d0000 rwxp 9a6cd000 00:00 0
    9a6d0000-9a74e000 rwxp 9a6d0000 00:00 0
    9a74e000-9a751000 ---p 9a74e000 00:00 0
    9a751000-9a7cf000 rwxp 9a751000 00:00 0
    9a7cf000-9a7d2000 rwxp 9a7cf000 00:00 0
    9a7d2000-9a850000 rwxp 9a7d2000 00:00 0
    9a850000-9a853000 ---p 9a850000 00:00 0
    9a853000-9a8d1000 rwxp 9a853000 00:00 0
    9a8d1000-9a8d4000 rwxp 9a8d1000 00:00 0
    9a8d4000-9a952000 rwxp 9a8d4000 00:00 0
    9a952000-9a955000 ---p 9a952000 00:00 0
    9a955000-9a9d3000 rwxp 9a955000 00:00 0
    9a9d3000-9a9d6000 rwxp 9a9d3000 00:00 0
    9a9d6000-9aa54000 rwxp 9a9d6000 00:00 0
    9aa54000-9aa57000 ---p 9aa54000 00:00 0
    9aa57000-9aad5000 rwxp 9aa57000 00:00 0
    9ae00000-9af58000 rwxp 9ae00000 00:00 0
    9af58000-9b000000 ---p 9af58000 00:00 0
    9b000000-9b1fa000 rwxp 9b000000 00:00 0
    9b1fa000-9b200000 ---p 9b1fa000 00:00 0
    9b200000-9b400000 rwxp 9b200000 00:00 0
    9b400000-9b5f9000 rwxp 9b400000 00:00 0
    9b5f9000-9b600000 ---p 9b5f9000 00:00 0
    9b600000-9b800000 rwxp 9b600000 00:00 0
    9b800000-9ba00000 rwxp 9b800000 00:00 0
    9ba00000-9bb00000 rwxp 9ba00000 00:00 0
    9bb7f000-9bb82000 rwxp 9bb7f000 00:00 0
    9bb82000-9bcfe000 rwxp 9bb82000 00:00 0
    9bcfe000-9bd00000 ---p 9bcfe000 00:00 0
    9bd7d000-9bd80000 ---p 9bd7d000 00:00 0
    9bd80000-9bdfe000 rwxp 9bd80000 00:00 0
    9bdfe000-9be01000 rwxp 9bdfe000 00:00 0
    9be01000-9be7f000 rwxp 9be01000 00:00 0
    9be7f000-9be82000 ---p 9be7f000 00:00 0
    9be82000-9bff2000 rwxp 9be82000 00:00 0
    9bff2000-9c000000 ---p 9bff2000 00:00 0
    9c02c000-9c02f000 rwxp 9c02c000 00:00 0
    9c02f000-9c0ad000 rwxp 9c02f000 00:00 0
    9c0ad000-9c0b0000 rwxp 9c0ad000 00:00 0
    9c0b0000-9c12e000 rwxp 9c0b0000 00:00 0
    9c12e000-9c131000 rwxp 9c12e000 00:00 0
    9c131000-9c1af000 rwxp 9c131000 00:00 0
    9c200000-9c2f8000 rwxp 9c200000 00:00 0
    9c2f8000-9c300000 ---p 9c2f8000 00:00 0
    9c400000-9c4ee000 rwxp 9c400000 00:00 0
    9c4ee000-9c500000 ---p 9c4ee000 00:00 0
    9c57f000-9c582000 rwxp 9c57f000 00:00 0
    9c582000-9c6f4000 rwxp 9c582000 00:00 0
    9c6f4000-9c700000 ---p 9c6f4000 00:00 0
    9c77d000-9c780000 ---p 9c77d000 00:00 0
    9c780000-9c7fe000 rwxp 9c780000 00:00 0
    9c7fe000-9c801000 ---p 9c7fe000 00:00 0
    9c801000-9c87f000 rwxp 9c801000 00:00 0
    9c87f000-9c882000 rwxp 9c87f000 00:00 0
    9c882000-9c9f9000 rwxp 9c882000 00:00 0
    9c9f9000-9ca00000 ---p 9c9f9000 00:00 0
    9ca77000-9ca7a000 rwxp 9ca77000 00:00 0
    9ca7a000-9caf8000 rwxp 9ca7a000 00:00 0
    9caf8000-9cafb000 rwxp 9caf8000 00:00 0
    9cafb000-9cb79000 rwxp 9cafb000 00:00 0
    9cb79000-9cb7c000 rwxp 9cb79000 00:00 0
    9cb7c000-9cbfa000 rwxp 9cb7c000 00:00 0
    9cbfa000-9cbfd000 rwxp 9cbfa000 00:00 0
    9cbfd000-9cc7b000 rwxp 9cbfd000 00:00 0
    9cc7b000-9cc7e000 ---p 9cc7b000 00:00 0
    9cc7e000-9ccfc000 rwxp 9cc7e000 00:00 0
    9cea6000-9cea9000 rwxp 9cea6000 00:00 0
    9cea9000-9cf27000 rwxp 9cea9000 00:00 0
    9cf27000-9cf2a000 rwxp 9cf27000 00:00 0
    9cf2a000-9cfa8000 rwxp 9cf2a000 00:00 0
    9cfa8000-9cfab000 ---p 9cfa8000 00:00 0
    9cfab000-9d029000 rwxp 9cfab000 00:00 0
    9d029000-9d02c000 ---p 9d029000 00:00 0
    9d02c000-9d0aa000 rwxp 9d02c000 00:00 0
    9d0aa000-9d0ad000 ---p 9d0aa000 00:00 0
    9d0ad000-9d12b000 rwxp 9d0ad000 00:00 0
    9d12b000-9d12e000 rwxp 9d12b000 00:00 0
    9d12e000-9d1ac000 rwxp 9d12e000 00:00 0
    9d1ac000-9d1af000 rwxp 9d1ac000 00:00 0
    9d1af000-9d22d000 rwxp 9d1af000 00:00 0
    9d22d000-9d230000 rwxp 9d22d000 00:00 0
    9d230000-9d2ae000 rwxp 9d230000 00:00 0
    9d2ae000-9d2b1000 rwxp 9d2ae000 00:00 0
    9d2b1000-9d32f000 rwxp 9d2b1000 00:00 0
    9d32f000-9d332000 rwxp 9d32f000 00:00 0
    9d332000-9d3b0000 rwxp 9d332000 00:00 0
    9d3b0000-9d3b3000 ---p 9d3b0000 00:00 0
    9d3b3000-9d431000 rwxp 9d3b3000 00:00 0
    9d431000-9d434000 rwxp 9d431000 00:00 0
    9d434000-9d4b2000 rwxp 9d434000 00:00 0
    9d4b2000-9d4b5000 ---p 9d4b2000 00:00 0
    9d4b5000-9d533000 rwxp 9d4b5000 00:00 0
    9d533000-9d536000 ---p 9d533000 00:00 0
    9d536000-9d5b4000 rwxp 9d536000 00:00 0
    9d5b4000-9d5b7000 ---p 9d5b4000 00:00 0
    9d5b7000-9d635000 rwxp 9d5b7000 00:00 0
    9d635000-9d636000 r-xp 00000000 fd:00 1214048 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/librmi.so
    9d636000-9d637000 rwxp 00000000 fd:00 1214048 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/librmi.so
    9d637000-9d63a000 rwxp 9d637000 00:00 0
    9d63a000-9d6b8000 rwxp 9d63a000 00:00 0
    9d6b8000-9d6bb000 rwxp 9d6b8000 00:00 0
    9d6bb000-9d739000 rwxp 9d6bb000 00:00 0
    9d739000-9d73c000 ---p 9d739000 00:00 0
    9d73c000-9d7ba000 rwxp 9d73c000 00:00 0
    9d7ba000-9d7bd000 ---p 9d7ba000 00:00 0
    9d7bd000-9d83b000 rwxp 9d7bd000 00:00 0
    9e41e000-9e421000 rwxp 9e41e000 00:00 0
    9e421000-9e49f000 rwxp 9e421000 00:00 0
    9e49f000-9e4d4000 r-xs 00000000 fd:00 2473232 /var/db/nscd/hosts
    9e4d4000-9e4e5000 r-xp 00000000 fd:00 1214046 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/libnet.so
    9e4e5000-9e4e6000 rwxp 00011000 fd:00 1214046 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/libnet.so
    9e4e6000-9e4e9000 rwxp 9e4e6000 00:00 0
    9e4e9000-9e567000 rwxp 9e4e9000 00:00 0
    9e567000-9e56a000 ---p 9e567000 00:00 0
    9e56a000-9e5e8000 rwxp 9e56a000 00:00 0
    9f834000-9f9ef000 r-xs 00000000 fd:04 6144498 /blahblah/xerces.jar
    9ffd4000-9ffd5000 ---p 9ffd4000 00:00 0
    9ffd5000-a0055000 rwxp 9ffd5000 00:00 0
    a0055000-a0058000 ---p a0055000 00:00 0
    a0058000-a00d6000 rwxp a0058000 00:00 0
    a00d6000-a00d9000 ---p a00d6000 00:00 0
    a00d9000-a0157000 rwxp a00d9000 00:00 0
    a0157000-a015a000 ---p a0157000 00:00 0
    a015a000-a01d8000 rwxp a015a000 00:00 0
    a01d8000-a01db000 ---p a01d8000 00:00 0
    a01db000-a0259000 rwxp a01db000 00:00 0
    a0259000-a025c000 ---p a0259000 00:00 0
    a025c000-a02da000 rwxp a025c000 00:00 0
    a02da000-a02db000 r-xp 00fb3000 fd:00 969958 /usr/lib/locale/locale-archive
    a02db000-a030d000 r-xp 00f2c000 fd:00 969958 /usr/lib/locale/locale-archive
    a030d000-a050d000 r-xp 00000000 fd:00 969958 /usr/lib/locale/locale-archive
    a050d000-a0510000 ---p a050d000 00:00 0
    a0510000-a058e000 rwxp a0510000 00:00 0
    a058e000-a0591000 ---p a058e000 00:00 0
    a0591000-a060f000 rwxp a0591000 00:00 0
    a060f000-a0610000 ---p a060f000 00:00 0
    a0610000-a0690000 rwxp a0610000 00:00 0
    a0690000-a0691000 ---p a0690000 00:00 0
    a0691000-a0711000 rwxp a0691000 00:00 0
    a0711000-a0712000 ---p a0711000 00:00 0
    a0712000-a07a0000 rwxp a0712000 00:00 0
    a07a0000-a07b2000 rwxp a07a0000 00:00 0
    a07b2000-a07c5000 rwxp a07b2000 00:00 0
    a07c5000-a080b000 rwxp a07c5000 00:00 0
    a080b000-a0819000 rwxp a080b000 00:00 0
    a0819000-a082b000 rwxp a0819000 00:00 0
    a082b000-a083e000 rwxp a082b000 00:00 0
    a083e000-a0883000 rwxp a083e000 00:00 0
    a0883000-a088f000 rwxp a0883000 00:00 0
    a088f000-a2450000 rwxp a088f000 00:00 0
    a2450000-a4890000 rwxp a2450000 00:00 0
    a4890000-a6e40000 rwxp a4890000 00:00 0
    a6e40000-afa60000 rwxp a6e40000 00:00 0
    afa60000-b1090000 rwxp afa60000 00:00 0
    b1093000-b10a6000 rwxp b1093000 00:00 0
    b10a6000-b1153000 rwxp b10a6000 00:00 0
    b1153000-b15e3000 rwxp b1153000 00:00 0
    b15e3000-b4153000 rwxp b15e3000 00:00 0
    b4153000-b49c3000 r-xs 00000000 fd:00 1200731 /usr/java/jdk-1.5.0_09-i386/jre/lib/charsets.jar
    b49c3000-b49d8000 r-xs 00000000 fd:00 1200759 /usr/java/jdk-1.5.0_09-i386/jre/lib/jce.jar
    b49d8000-b4a5d000 r-xs 00000000 fd:00 1200760 /usr/java/jdk-1.5.0_09-i386/jre/lib/jsse.jar
    b4a5d000-b4ac6000 rwxp b4a5d000 00:00 0
    b4ac6000-b70dc000 r-xs 00000000 fd:00 1200767 /usr/java/jdk-1.5.0_09-i386/jre/lib/rt.jar
    b70dc000-b70eb000 r-xp 00000000 fd:00 1214052 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/libzip.so
    b70eb000-b70ed000 rwxp 0000e000 fd:00 1214052 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/libzip.so
    b70ed000-b710e000 r-xp 00000000 fd:00 1214032 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/libjava.so
    b710e000-b7110000 rwxp 00020000 fd:00 1214032 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/libjava.so
    b7110000-b711b000 r-xp 00000000 fd:00 1214051 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/libverify.so
    b711b000-b711c000 rwxp 0000b000 fd:00 1214051 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/libverify.so
    b711c000-b7124000 rwxs 00000000 fd:00 2392802 /tmp/hsperfdata_elm_d/30978
    b7124000-b760e000 r-xs 00000000 fd:00 2473112 /var/db/nscd/passwd
    b760e000-b7614000 r-xp 00000000 fd:00 1214056 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/native_threads/libhpi.so
    b7614000-b7615000 rwxp 00006000 fd:00 1214056 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/native_threads/libhpi.so
    b7615000-b7616000 rwxp b7615000 00:00 0
    b7616000-b7617000 r-xp b7616000 00:00 0
    b7617000-b7b71000 r-xp 00000000 fd:00 1214060 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/server/libjvm.so
    b7b71000-b7bd4000 rwxp 0055a000 fd:00 1214060 /usr/java/jdk-1.5.0_09-i386/jre/lib/i386/server/libjvm.so
    b7bd4000-b7fed000 rwxp b7bd4000 00:00 0
    bfe00000-bfe03000 ---p bfe00000 00:00 0
    bfe03000-c0000000 rwxp bfe03000 00:00 0
    ffffe000-fffff000 ---p 00000000 00:00 0
    VM Arguments:
    jvm_args: -Xmx200M -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+UseParallelGC -XX:+UseAdaptiveSizePolicy -Djava.security.manager -Djava.security.policy=/blah/blah/blah.policy -Dsun.rmi.dgc.client.gcInterval=72000000 -Dsun.rmi.dgc.server.gcInterval=72000000
    java_command: blahblahblah
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/usr/java/jdk-1.5.0_09-i386
    PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin
    LD_LIBRARY_PATH=/usr/java/jdk-1.5.0_09-i386/jre/lib/i386/server:/usr/java/jdk-1.5.0_09-i386/jre/lib/i386:/usr/java/jdk-1.5.0_09-i386/jre/../lib/i386
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x508860], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    SIGBUS: [libjvm.so+0x508860], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    SIGFPE: [libjvm.so+0x42cac0], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    SIGPIPE: [libjvm.so+0x42cac0], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    SIGILL: [libjvm.so+0x42cac0], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x42ef10], sa_mask[0]=0x00000000, sa_flags=0x14000004
    SIGHUP: [libjvm.so+0x42e940], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    SIGINT: [libjvm.so+0x42e940], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    SIGQUIT: [libjvm.so+0x42e940], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    SIGTERM: [libjvm.so+0x42e940], sa_mask[0]=0x7ffbfeff, sa_flags=0x14000004
    --------------- S Y S T E M ---------------
    OS:Red Hat Enterprise Linux AS release 4 (Nahant Update 2)
    uname:Linux 2.6.9-22.0.2.ELsmp #1 SMP Thu Jan 5 17:13:01 EST 2006 i686
    libc:glibc 2.3.4 NPTL 2.3.4
    rlimit: STACK 10240k, CORE 0k, NPROC 131071, NOFILE 1024, AS infinity
    load average:30.16 19.62 12.95
    CPU:total 2 (cores per cpu 1, threads per core 1) family 15 model 37 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, mmxext, 3dnowext, 3dnow
    Memory: 4k page, physical 8145028k(148604k free), swap 1023k(997k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_09-b01) for linux-x86, built on Sep 7 2006 13:17:49 by java_re with gcc 3.2.1-7a (J2SE release)

    There's no JNI component of RMI so this is only an RMI problem to the extent that RMI uses TCP. It's a Java TCP accept() problem.That's what I figured. Shame nobody else on the entire Internet appears to have experienced the same problem... :-( Nevertheless, there is no native code in our application so it's looking like a bug in the native socket accept implementation, yes? And that appears to be exacerbated by RMI and/or our use of RMI.
    I suspect we are (or the third party code is) doing something strange at VM shutdown since the crash always happens after a log output saying that the process has completed its work. So my current lines of attack are around JVM shutdown handlers, finalizers, etc.
    Our project also uses OpenAdaptor (open source ETL tool) and I discovered that this by default calls runFinalizersOnExit(true), so we're going to try re-configuring that today too in case there's something dodgy going on with the finalizers somewhere.
    That EDI register of 0x8 looks very suspicious. Have you tried the Bug Parade?Your expertise extends to understand the underlying hardware implemention? Is there no end to your talents ejp?! :-)
    I have tried the bug parade but there's nothing obvious there. Plus, it's just about the worst bug tracking system in existance (to go with the worst forum software I guess! LOL) and things just get closed with no comment, or ignored, or turn into a flame war, etc... Still, I tried and didn't have any luck.
    Thanks ejp!

  • Certificate Related Error Message/Please Help

    Today I received an "Unable to verify SSL server pop.gmail.com" message on my Mail server. I transfer mail from gmail to Mail.
    "Mail was unable to verify the identity of this server, which has a certificate issued to "pop.gmail.com". The error was:
    The certificate for this server has expired.
    You might be connecting to a computer that is pretending to be "pop.gmail.com", and putting your confidential information at risk. Would you like to continue anyway?"
    In the lower box, it lists the Version, Serial Number, Issuer Name (which is from Zaire, Western Cape, and lists the organization as Thawte Consulting cc and other info, Subject name is Google Inc, common name is pop.gmail.com, then gives a Signature Algorithm, Parameters, etc.
    It won't let me Copy and Paste so I have not hit the Continue button for concern of losing that info for reference.
    I went to Help which instructed me to do the following:
    I'm getting a certificate-related error message
    If you get an error message with the word "certificate" in it, make a copy of the message and contact your Internet service provider (ISP) or network administrator. The error message may help them diagnose your problem.
    If your mail server uses a self-signed Secure Sockets Layer (SSL) certificate, each time you open Mail you'll see an error message stating that the certificate is not valid. You can continue, but you'll see the same message every time you open Mail. To stop seeing this message, you can permanently accept the certificate.
    To permanently accept a self-signed SSL certificate:
    Click the Show Certificate button in the error message.
    The certificate appears with a certificate icon in the upper-left corner.
    Hold down the Option key and drag the certificate icon to the desktop.
    Double-click the certificate icon on the desktop, and choose X.509 Anchors from the pop-up menu. Click Add.
    The certificate is permanently accepted.
    You must have permission to administer the computer for this procedure to work.
    For information about encryption, click "Tell me more."
    Instead of asking for the "580 Anchors" , it asked simply "Do you want to add the certificates from pop.gmail.com.cer to a keychain?"
    I clicked "Add"
    The pop.gmail.com certificate AND Thawte Freemail Member AND Thawte Personal Freemail certificates is now entered in my Keychain.
    There are no dates listed under "Created" or "Modified" for those certs under Keychain.
    IS THIS OK OR DO I HAVE A PROBLEM SINCE THESE THAWTE CERTS ARE LOCATED IN ZAIRE???
    IF IT IS A PROBLEM, HOW DO I FIX/CHANGE/OK/DELETE/MODIFY, ETC. IT? PLEASE BE CLEAR.
    CAN I/SHOULD I JUST DELETE ALL THREE/SOME OF THE CERTS NOW IN KEYCHAIN?
    WILL I STILL BE ABLE TO GET MAIL AS BEFORE THIS MESSAGE IF DELETE THE CERTS?
    I believe this is the first time I have received a message concerning certificates so I am naive concerning this.
    THANK YOU.

    I had similar gmail/cert problem yesterday - not for the first time!
    I deleted the prefs (user/library/preferences), deleted the gmail account (mail prefernces), ran applejack ( http://applejack.sourceforge.net/ ) & added the account from scratch.
    Annoying I know, and my inbox was 200+ emails but nobody seems to know what or why this happens (my previous post) http://discussions.apple.com/thread.jspa?threadID=243186&tstart=0
    Perhaps this is related to certain emails (an email scam), i run 3 macs & the mail account on the affected machine receives my business email & this is the only machine the gmail/cert problem occurs.

  • A strange Java related error occured when I tried to install a software

    When I tried to install Maple 12 on my PC, I got a Java-related error as follow:
    java.lang.NoClassDefFoundError: Could not initialize class javax.swing.UIManager
         at javax.swing.JPanel.updateUI(Unknown Source)
         at javax.swing.JPanel.<init>(Unknown Source)
         at javax.swing.JPanel.<init>(Unknown Source)
         at javax.swing.JPanel.<init>(Unknown Source)
         at javax.swing.JRootPane.createGlassPane(Unknown Source)
         at javax.swing.JRootPane.<init>(Unknown Source)
         at javax.swing.JFrame.createRootPane(Unknown Source)
         at javax.swing.JFrame.frameInit(Unknown Source)
         at javax.swing.JFrame.<init>(Unknown Source)
         at com.zerog.ia.installer.LifeCycleManager.g(DashoA10*..)
         at com.zerog.ia.installer.LifeCycleManager.h(DashoA10*..)
         at com.zerog.ia.installer.LifeCycleManager.a(DashoA10*..)
         at com.zerog.ia.installer.Main.main(DashoA10*..)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.zerog.lax.LAX.launch(DashoA10*..)
         at com.zerog.lax.LAX.main(DashoA10*..)
    My OS is Windows XP Professional with SP3. However, I managed to install this version on a virtual machine (which also runs Windows XP SP3) therefore the problem does not come from the installer.
    What can I do now to install Maple 12? I really need this software...
    Thanks!
    Edited by: uhobasa on Sep 28, 2008 6:41 PM

    Did you find the solution for this problem? I am experiencing the same behavior trying to run Freemind.

  • Really really annoying problem with slooooow Adress Book

    I have a really, really annoying problem with Address Book.
    Ever since I connected it with the MobileMe service it has this problem, and I just cant get rid of it. I have tried logging out and back into the MobileMe service, resetting the sync history etc., but to no avail.
    Each time I open the application it freezes for about 5 to 10 seconts, then that blooming annoying, Windows reminiscent, rotating rainbow circle appears for about a minute at a time. Then it goes away and the application works..........that is until try something demanding like adding a new group or changing a group name, then it starts over. It is making the Address Book almost unusable and very un-Mac-like.
    Can someone please help???

    Try deleting this plist:
    (yourUserName)/Library/Preferences/com.apple.AddressBook.plist
    As well, the general approach at this time is to ask if you've checked for any problematic fonts (all languages) with Apple's Font Book (look in the Applications folder). Find and remove all duplicates also.
    Start there to be sure all fonts that are in play come out with a clean bill of health.
    Also, don't hesisate to perform wholesale deletion of old and/or little used fonts - be skeptical of anything that has come from Office 2008, including those related to an Equation Editor installation.
    By all means be sure your 3rd party apps are Snow Leopard compatibl

  • Safari and QTCF.dll - Not fatal but really annoying

    Hello everyone. I have Safari + QuickTime + iTunes installed on my Windows 7 x64 box since a long time, but only recently I've found some problems...
    Every time I open Safari (5.0.2) its only matter of seconds after an alert pops up saying that QTCF.dll isn't found and that it won't allow the execution of Safari. However, after I dismiss that popup, Safari continues working... Until about an hour or two later shows the same popup. It also happens if I close and reopen Safari.
    As I've said, isn't fatal, but its really annoying having to close that popup every time.
    I've found that file, and is on QuickTime folder. Moved it to both system32 and sysWOW64 and still shows that popup. Also I've read something about that dll where the answers were "reinstall QuickTime". Well... I've tried to uninstall it to install it again, but it throws me an error about some file that couldn't be removed (I think is that QTCF.dll file).
    What do you think? DLL ****? Registry corruption? Thanks in advance
    I also have a problem with Top Sites after doing a clean install of Safari 5. It always shows me the same sites, it doesn't change constantly (and those sites aren't pinned). Also, if I delete those sites from it, it won't add any new one. Any ideas?

    Moved it to both system32 and sysWOW64 and still shows that popup.
    Best to move it out of there. Having an old version in there tends to cause a different kind of startup error for iTunes and QuickTime (if the version of QuickTime proper on the PC is updated).
    By any chance, have you ever had a version of QuickTime Lite or QuickTime Alternative installed on the PC? Last time I checked, they used to install a copy of QTCF.dll to the system32 directory (on 32-bit systems). Since they use the QuickTime registry entries, your Registry may currently be looking in the wrong place for the QTCF.dll.
    Well... I've tried to uninstall it to install it again, but it throws me an error about some file that couldn't be removed (I think is that QTCF.dll file).
    Could you try another uninstall and post back with the full filename and filepath of that file, please? (I'd like to see where your system thinks your QTCF.dll is installed just at the moment.)

  • Java.rmi.MarshalException: error marshalling return;

    Hi All,
    I'm getting the above error whilst performing a query. My set up is,
    Kodo 3.1.5
    Weblogic 8.1
    I have created some classes using the reverse mapping from Sybase,
    enhanced them and uploaded them to my server. I have then attempted to
    retrieve the data via an EJB. However I get NotSerializableExceptions
    whilst doing so.
    I am attempting to return a Collection of enhanced objects, but even a
    single enhanced object throws that error
    I think it may be something to do with my package.jdo or something else.
    Can anyone help?
    My package.jdo looks like this,
    <?xml version="1.0" encoding="UTF-8"?>
    <jdo>
    <package name="com.lehman.clientseg.data">
    <class name="AuditRecord" objectid-class="AuditRecordId"/>
    <class name="Btb" objectid-class="BtbId"/>
    <class name="CashActivity" objectid-class="CashActivityId"/>
    <class name="CashBulk" objectid-class="CashBulkId"/>
    <class name="CcyTypeIndicator" objectid-class="CcyTypeIndicatorId">
    <field name="descn">
    <extension vendor-name="kodo" key="jdbc-size" value="-1"/>
    </field>
    </class>
    <class name="Counterparty" objectid-class="CounterpartyId"/>
    <class name="Currency" objectid-class="CurrencyId"/>
    <class name="DealType" objectid-class="DealTypeId"/>
    <class name="DeliveryInstruction"
    objectid-class="DeliveryInstructionId"/>
    <class name="Entity" objectid-class="EntityId"/>
    <class name="MonitoredEvent" objectid-class="MonitoredEventId"/>
    <class name="PaymentType" objectid-class="PaymentTypeId"/>
    <class name="Sequence" objectid-class="SequenceId"/>
    <class name="SettlementMode" objectid-class="SettlementModeId"/>
    </package>
    </jdo>
    and here is the stack trace,
    java.rmi.MarshalException: error marshalling return; nested exception is:
    java.io.NotSerializableException: com.lehman.clientseg.data.Entity
    at
    weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:284)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:244)
    at
    com.lehman.clientseg.server.ejb.JDOBean_1a5ozo_EOImpl_812_WLStub.getAllEntities(Unknown
    Source)
    at com.lehman.clientseg.BeanTest.<init>(BeanTest.java:49)
    at com.lehman.clientseg.BeanTest.main(BeanTest.java:62)
    Caused by: java.io.NotSerializableException:
    com.lehman.clientseg.data.Entity
    at
    java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1054)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
    at java.util.LinkedList.writeObject(LinkedList.java:681)
    at sun.reflect.GeneratedMethodAccessor157.invoke(Unknown Source)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:795)
    at
    java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1294)
    at
    java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1245)
    at
    java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
    at
    weblogic.common.internal.ChunkedObjectOutputStream.writeObject(ChunkedObjectOutputStream.java:116)
    at
    weblogic.rjvm.MsgAbbrevOutputStream.writeObject(MsgAbbrevOutputStream.java:93)
    at
    com.lehman.clientseg.server.ejb.JDOBean_1a5ozo_EOImpl_WLSkel.invoke(Unknown
    Source)
    at
    weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at
    weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

    Abe White wrote:
    Looks like you're trying to serialize a class that's not serializable,
    probably by returning it (or a class that has a relation to it) from an EJB.Very strange. My classes where autogenerated using the reverse mapping
    tool and weren't serializable. I'm sure I once did make them serializable
    and I got more error messages. I just tried again and everything was fine.
    Hmmm... Must be going mad.
    Cheers,
    Stevie :)

  • Got latest version installed, however still getting stuttering when playing.  Really annoying. Any suggestions?

    Downloaded the latest iTunes version a couple of days ago.  I noticed it mentioned bug fixes, one of which was experiencing stuttering with imatch, which was happening.  Unfortunately it is still happening and it is really annoying.  Any ideas please?...........thank you

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for performance issues or compatibility with third party software.
    At the time of writing iTunes 12.1.1.4 is supposed to address certain playback issues so try that first if you are on an earlier build. Also experiment with the Edit > Preferences > Playback > Play Audio Using control.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • BIGGEST iTunes bug!! Really annoying!!

    Okay, so I got this really annoying problem. Actually two. First is that I am using iTunes 9.2. So the first problem is this. I would import a song, with these ID3 tags for example:
    Title: Till I Collapse
    Artist: Eminem
    Album Artist: Eminem
    Album: The Eminem Show
    Genre: Hip-Hop
    Track: 18
    So then I modify a few things like these:
    Title: 'Till I Collapse
    Genre: Rap
    Add an album cover.
    I click on OK and just how it is supposed to work, the track info changes, and the album cover appears. I close iTunes, open that file. Right Click, choose properties, and look at the tags. THE TAGS DID NOT CHANGE. The genre is still Hip-Hop, the Title does not have an apostrophe before the Till I Collapse. Worst of all, the album cover does not show when I do tile view. I delete the file from iTunes library and import it again. It shows the old unchanged tags. Biggest problem.
    Then a second problem hits. It somehow started showing that I got files missing. I click on locate other files from the library and it said that I am missing 119 files. The folder are still there, the files still there. To make it worse, the new songs that I have added using iTunes 9.2 that were missing have been reset back to the original tags. Now I gotta change them and gotta online and find the album covers again. Pathetic.
    Edit: What is interesting is that all the missing songs that are shown now are the ones that I added using iTunes 9.2.
    Message was edited by: xrusx

    iTunes not actioning your changes is usually a sign that you don't have write permissions for the files in question. iTunes appears to accept your changes and may even update the display to show them, but is unable to write the changes out to the tag. It will not report this as an error. When you go back to the file the original tag will have remained unchanged and iTunes will reveal the old data.
    Not sure about the second one, but let's guess that it's an extension of the first one. If your change would have resulted in a new filename, e.g. you change the artist, album, track name or number, then iTunes may have updated the database to point to the new location, but then failed to actually rename the file, again without generating an error.
    tt2

  • Does overuse of Checked exceptions really annoy you?

    Im a big advocate for using Runtime exceptions for programming errors (e.g, violations of pre-conditions etc).
    I find it really annoying when checked exceptions are overused to 'enforce you to do something about your programming error'.
    Ive been on projects where an underyling 'untrust' of some developers ability to read an API to obtain pre conditions has led to a prolification of checked exceptions in central APIs.
    e.g, Im a strong beliver (as I expect most are), that this is correct:
    if(myContainer.contains(someKey)) {
      // Throws 'NoSuchObject' which is a RuntimeException if not contained
      myObject = myContainer.getSomeObject();
    }and that this is not:
      if(myContainer.contains(someKey)) {
        try {
          myObject = myContainer.getSomeObject();
        catch(NoSuchObjectException) {
          // Typical 'This Cant Happen' comment (uurrgghhh...)
      }This basically comes from tech-leads having a lack of trust in the ability of some developers to unit test their classes properly.
    However, it leads to absolutely horrendous code!
    Has any one encountered this anti-pattern on their projects?
    And what Im alluding to.... Has anyone managed to come up with a completely convincing argument to remove it?

    There's a place for checked exceptions, but not usually for programming errors. That's why NullPointerException is unchecked. But checked exceptions for catching things beyond the programmer's control can also run amuck. Here's an example of code I have in production:try {
      dq.write(translator.toBytes(s));
    } catch(IllegalObjectTypeException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(InterruptedException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(IOException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(AS400SecurityException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(ErrorCompletingRequestException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(ObjectDoesNotExistException _ex) {
      throw new ScannerException(_ex.getMessage());
    }The "dq" variable refers to a DataQueue object from IBM's JTOpen product for AS/400 connectivity. Okay, there's a lot of things that could go wrong in this case, but in practice everybody is just going to log the fact that something went wrong and shut down. Six different exceptions is just overkill -- I suppose I could just catch Exception but that isn't a good practice either.

  • SIGSEGV - maybe RMI related

    Hi all,
    Sorry for the not-quite-cross-post.
    I'm having problems with a JVM crash which looks like it might be RMI related. Rather than cross-post, the original thread is here:
    http://forum.java.sun.com/thread.jspa?threadID=5238997
    Thanks!

    we have already created a registry with the default rmi port
    try
                   java.rmi.registry.Registry reg           = null;
                   reg = java.rmi.registry.LocateRegistry.createRegistry(1099);
                   reg.rebind("rbe",this); //binding error
              }catch(Exception e)
                   throw new AlreadyBoundException("Port Already bound " + e.getMessage());
              }

  • HT1632 I can view a workout on my ipod touch history, but not in itunes or on nike+ website.  I can't seem to upload this run and it's really annoying as I'm loosing about 12k of runs.  It seems to happen when I program in a custom run.  Can you help?

    Hi there,
    I have just done a custom run on my Ipod touch 2nd Gen of 12k.  When I finished the run is appearing in my run history on my iPod touch, however it is not appearing in my itunes 'Nike+' tab, or on the Nike + website.  I can't seem to get this run to sync and it is really annoying because I'll be loosing 12k.  Can anyone help or has experienced this before?  I know there are solutions to add runs to iPod nano's and older iPods using the 'Enable disk' and iPod_control function however from what I'm aware you cannot do this on an iPod touch.  Can anyone please help?
    Many thanks
    Phil

    You should really read the manual.
    "How do you restore from backup? "
    Restore.  When given the choice, choose to use backup.
    "And how can I check to see if the pics and videos are on my computer somewhere first??"
    They would only be where you put them.  What program did you use to import them?  Pics/vids taken with ipod are not part of the sync process at all.  You should be importing them just as you would with any digital camera.
    If you did not import them, then they are not on your computer.

  • I'm getting really annoyed with the Mac.

    Don't mean to offend geniune Mac fans here, but I'm just getting really annoyed with the Mac.
    I purchased my Mac mini (late 2012) in May of 2013 - so it's about 4 months old. I don't have a lot of software on it, mainly the Adobe Creative Suite, and development tools (Xcode, and web development software).
    The mini has this annoyance where, every so often it just freezes. It usually happens during when the screensaver is running, or when the monitor goes into standby and I try to wake it up. First the screensaver runs for 15 minutes. Sometimes it happens (it's random) that the screensaver "stalls" and the mac freezes. If it "survives" the screensaver, then after 15 minutes my monitor goes into standby mode. Sometimes when I wake up the monitor, I get the login window, I log in, and then I find that the Mac just froze.
    A few days ago I've updated to 10.8.5. Now these freezes are happening more often. The mac freezes just whenever, regardless of screensaver or not. There was a time when I had ReadKit running, displaying an article. I went to the kitchen, when I came back the mini was frozen as ice. No other program was running (I mean program that I started).
    Other times I had Chrome open at youtube. It was not playing a video. The browser was just "parking" at youtube's home page. Same thing. I go away, come back, the mini was frozen.
    Yet just a few days ago, I had no user started application running. None. I leave the mini alone for a short while, come back, and I find the fan was running like crazy. The mac was not hot at all, but the fan went bonkers. It was loud and pumping air out for no reason.
    At these times I can't do anything. Sometimes I can move the window, or move icons on the desktop, but I cannot force quit an app, neither I can start one. So things like going to the apps folder and starting terminal or activity monitor is not possible. I cannot select menu items from the Finder (or any other application) menus, so I can't restart or shut down the mac. The only thing I can do at these times is hold the power button for a few seconds to force the mac to shut down.
    I'm coming from Windows. I built and upgraded my PC a few times in the past 7-8 years with newer and faster MOBOs, processors, memory, etc. I never had a bad component; I never had a blue screen; I never had my PC hang; I have never encountered any issues that would make my PC hang or froze or otherwise. I never had to troubleshoot software or hardware problems because they were/are just non existent. I'm not trying to start a war here about PCs and Macs. I'm completely natural.
    But here I am with this "thing" that supposed to be so great and trouble free. I have already reinstalled the OS once during this 4 month old mac, but now it seems I have to do it again because ever since 10.8.5 things has gotten worse. This is really N-O-T what I expected from a Mac. I am just really annoyed, frustrated and everything else.
    I was browsing these support forums and tried/looked at a couple of diagnostic steps, but none helped so far. I will attempt to reinstall the OS A-G-A-I-N over the weekend. If that doesn't help, then I will have to put this junk into the garbage can. (Well, figuratively speaking of course.)
    Mac mini late 2012
    OS X 10.8.5
    i7 2.6 GHz 8G
    Samsung S27B970 display via DisplayPort
    Apple extended wired keyboard
    Logitech LS1 laser mouse
    No other peripherials

    Hey thanks for the feedback woodmeister! No, I was not aware of the hardware diagnostics!
    So I have eagerly followed the isntructions, but I quickly found out what I have already experienced looking at other Apple "unhelpful" documentation. When I was referring in my OP that I've looked at other resources, the problem was that those "un-support" documents were out of date and the article indicated that Apple has retired them.
    Now as far as the link that you sent (and the same can be found in the Help section of OS X as well, wasn't helpful either. Why?
    In the document the bullets are as follows:
    If you have a new Mac (mid-2013 or later), use Apple Diagnostics, which is built into your Mac.
    If your Mac has OS X v10.8.3 or earlier, use Apple Hardware Test, which is built into your Mac.
    If you updated your Mac to OS X v10.8.4 or later, use the system software disc or USB flash drive that came with your Mac.
    Let's start with bullet #1. As far as I know (and correct me if I'm wrong) but I'm not aware of mid-2013 Mac minis. Mine is late 2012, so I guess I don't fit into bullet #1.
    Bullet #2. I have OS X 10.8.5 so it means I don't fit into that bullet either.
    Bullet #3. Yes, I did update to 10.8.4 or later (using 10.8.5) but neither a software disc nor a USB flash drive came with the Mac mini late 2012 model.
    So what now? Another great "support" document that is confusing and/or not helpful. Nevertheless, I did give it a try. Disconnected my ethernet cable, hold down D, and rebooted. I get a "Choose Network Connection" drop down on the gray screen where I'm supposed to choose a Wi-Fi network. Why? This has not been mentioned in the docs. My Wi-Fi is disabled because I'm connecting through cable.
    So I reconnected the cable. As soon as I did that, I got the message that ... let's see... my memory is failing me... the recovery mode or reinstalling the OS will begin... or something along that line. There was NO ANY INDICATION about any hardware test or diagnostics!
    See, what I mean about frustration...?

  • Problems with Media and my Blackberry Bold, is it time for me to give up on RIM this is really annoying

    Hello RIM,
    Over the past year since owning a Blackberry, I have had on-going issues with syncing my music between my (2) bolds, so I know this is not specific to the hardware, I have also managed 400 BB's on a BES before so I have a fair idea of how to do things and troubleshoot issues.
    1. My music many times has sounded severely distorted through my car speakers, with lots of bad crackle that hurts my ears
    2. Transferring media between my device and my computer is actually really annoying and now I can't even find my playlists on Windows 7
    3. This should be seemless, it should not be buggy and I can't believe, having done so much support with your hardware and software that this continues to be a real problem for me
    I have a playbook, 2 blackberry bolds (I had to buy another 1 because Mobilicity does AWS only and Bell was just plain mean to me so I gave up on them).
    I am ready to go on ebay and get rid of this stuff because whilst I mostly use it as a phone (the reason I went with BB), it is important that I am able to do other things with it, without having to go through a dozen articles and issues just to get things to work, these should have been ironed out in the bug reporting process.
    So I have reinstalled both Itunes and BB Desktop Manager, both manually and via repair and tried even recopying over my playlists, this doesn't work.
    I can't believe the lousy support and buggy software, come on RIM, there is no excuses in this market, PICK UP YOUR GAME and update the BDS or I am done and so will the many other people who won't even take their time to write anything about it on here but vote with their wallet.

    Well you know the playbook is actually pretty cool but didn't seem to be ready to go out on time and being a late entrant to the market I would have expected them to showcase the playbook better, especially like how Nintendo gets out there and gets everyone playing with it hands on, there are some things about the Playbook that actually make it unique but it has been poorly marketed.
    Unfortunately getting BDS and everything to work properly should not be an issue, I have already spent thousands of dollars on hardware and my phone provider, what am I actually paying for here? So I will spell out some things that make the Blackberry Playbook special and what I would have been pushing had I been in charge of marketing. Firstly I would have had a few different campaigns going, one that targeted business corporate customers, regular business customers and the public that use them as their choice of smartphone and open to potentially buying one.
     1. Flash works really great, come on blackberry, why couldn't you team up with Facebook on this one? Facebook looks better on a Playbook than any other tablet I have seen, in fact the web looks better in general.
    2. Stereo speakers(dual), movies sound great, music sounds great and so do games, in this area, Playbook has the upper hand.
    3. USB & HDMI out - Allows much easier portability of presentations and transferring of files and now I believe there is the Wifi Sync as well.
    4. Blackberry Bridge - You know it's like RIM got backed into a corner on this one, but you know, I think this is the most secure way to operate a tablet, I love how when I turn off bluetooth on my bold, my personal and private information is removed and I can pass it to friends and family without my personal communications being looked into, with the other tablets, it's pretty hard to have different people on them, without probably creating different profiles, with the Playbook, you could share it between a team and it would seamlessly operate between them.
     5. True Multitasking - You know, you can play music, whilst playing a game and you can switch between applications, this funtions pretty awesome. I put on some cool music and loaded up a game on the device and someone whom had an Apple device was sincerely impressed he could listen to music whilst reading or playing games etc. This could also enhance Business Presentations that require audio in the background whilst displaying and going through different information / files or charts.
    6. QNX OS - I mean wow Blackberry, this Operating System is fantastic, I love it, this was an EXCELLENT choice and this I will give you 5 stars on, I can't wait to see what QNX can do on the Blackberry and I would not be surprised if the QNX OS became a major OS against the others, it definitely is polished and apps just install and are ready to go in no time.
     RIM has been ahead of the game and because of it's great name with-in business circles they have almost sold themselves and whilst it's nice to see that RIM has sold over 250,000 units with-in the first week this could have been drastically improved by realizing when getting into a NEW market, they need to do the proper marketing and get the devices out there with subject matter experts to educate people whom are checking them out so they can share that information with their friends.
     Google paid a very large price with their Nexus One because they where over-confident and thought they would sell based on their name alone, this could have been a learning curve RIM did not have to deal with. There are actually other nice things about the Playbook, the apps that are in their app store are pretty cool and when Android apps are available it will be cooler.
    I like the size of the tablet I can comfortably reach accross the screen to hit all the keys on the digital keyboard making it any larger and I couldn't hold it in my hands with the same comfort; copping out to apple fan boys thinking they must have a 10.1" tablet is not necessary, this is the perfect size to sit in your hands, some people think they are small but if they actually watch a movie or play a game on it or look at websites by "Playing with it themselves" they will react differently and actually suggest if your going to do a 10.1" tablet, also keep the smaller sized one as well.
    Suggestions :
    - Working on building in more extensions for gaming such as Unity so that games like battlestar galactica online etc could be played online and directions could be replaced by using the gyroscope.
     - Hire more people if you are having problems meeting deadlines, these companies, including Apple are taking risks to win the market, if your going to take a swing at your competitors, please make it a punch and not a jab, the biggest thing you still have on your side is the market you already had and the market share you have been losing and since we all upgrade our devices so often at this time, come out with something special and we will continue to support you. Okay now that I have that off my chest I feel better. DAMMIT !

Maybe you are looking for

  • Macbook to CRT (RGB SCART)

    Hi, I have a Macbook (13inch-mid 2010) and I'm wanting to connect to a SONY Trinitron CRT 4:3 with a RGB scart on the rear. So I can use MAME OS X and get those arcade perfect pixels If I get a mini dvi to vga then a vga to scart cable would it work?

  • Transform activity in Process Flow

    Hi Guys, After wasting hour trying to get the SQLPlus activity working I noticed that I can just drop the stored procedures into the flow as a "Transform activity". I linked everything up but as soon as I put the "Transform activity" in the process f

  • Installing Patch 10.2.0.4

    Hi, I need to install the oracle patch 10.2.0.4, on a oracle with 10.2.0.2 but when oracle universal installer runs the "Product-Specific Prerequisite Checks" returns me 2 erros: - Checking the Components installed on Oracle Home - Checking for Oracl

  • "Import for runtime sharing" and dynamic loading of MC

    Hello to everyone :) I have a question that possibly is a bit strange, but I really didn't found any info about it (that's why I'm writing a post here). So, I have five .swf files with different sections of one project. I'm loading these movies only

  • Mail is very slow

    Maybe this has been addressed before and someone can point me to the thread, but here is my problem. Downloading mail is VERY VERY slow (just about unusable). I have tried MANY options (IMAP,POP, Mac Mail, Entourage). I have tried different mail serv