SUN T2000 and SOLARIS10 01/06

Hi,
has anyone heard about problems with the above mentioned configuration?
We got
1x T2000 / SOL10
1x 280R / SOL 8
in same subnet.
snoop at 280R "snoops" the whole network traffic
snoop at T2000 "snoops" less than ten percent of the snoop from
280R. Just a few lines per minutes. 280R snoops about 20 lines per second.
We patched the T2000 on the switch port of 280R. But same result.
snoop -P (Non_PROM-Mode) works very well on T2000!!
Are there any software patches we have to install??
We got ipge network devices
Any tips?
regards
Heinz

apologies if you've checked this !
(i) your not using inet6 to snoop on sol 10 and ipv4 on 8?
(ii) does netsta -I ipge0 show any errors (ie do you have faults on cable/card..?)
(iii) as always if above not working I'd look at latest patch cluster or a possible upgrade to 06/06 - however check sunsolve to see if any network issues addressed here!
(iv) in general is your network speed/duplex ok on the niagra box?
best of luck!
Stuart

Similar Messages

  • Sun T2000 and mpstat, mostly idle

    I am running a test on the Sun T2000
    mpstat shows that most of the cores are idle.
    I have run my test with both writes to disk as well as running completely in memory and the %idle stays about the same.
    I had read in Charles Lamb's blog, that he had been able to get a benchmark called JESearchRate, running at 100% utilization.
    http://blogs.oracle.com/charleslamb/discuss/msgReader$11
    I searched for this benchmark but could not find it. Is it available, so that I can see if it is something about the T2000 or the test of my BDB JE application?

    A few ideas come to mind; as always, whether they result in improvement for you is application dependent. They're in roughly the order that I'd try.
    You mention that you are using txnWriteNoSync mode. This means that that the JE will issue a system write call for each write operation, but won't execute the fsync. Switching over to txnNoSync mode should show another level of improvement, because operations will not issue the write call, but there will be a corresponding decrease in durability.
    Along the theme of trading off durability for performance, you may want to investigate the deferred-write mode that can be set through DatabaseConfig.setDeferredWrite. However, deferred-write mode doesn't support transactional use, and it seems that you are using transactions.
    Even in txnNoSync mode, JE still issues write calls as the log write buffer fills up, and fsync calls as the log flips over to a new file. If writes and fsyncs are a bottleneck, you can increase throughput by increasing the log write buffer size and the log file size. Log write buffer size can be manipulated through adjusting je.log.bufferSize, je.log.totalBufferBytes, and je.log.numBuffers. Be sure to verify that you indeed made them larger by dumping environment stats and looking at EnvironmentStats.getNLogBuffers and getNBufferBytes().
    Log file size is more straightforward to increase, through je.log.fileMax. You can inspect your logs to verify that the size configuration change took effect.
    At the moment, we don't have much to offer for write operations if the bottleneck is latch contention on the btree rather than on the logging system. As you observed, the shared latch setting doesn't do anything for writes. We know that we could do more tuning work to use shared latches in more write paths, especially for operations such as deletes and modifies, but we haven't gotten to that work yet.
    Another route to go to reduce contention points is to use multiple environments, if it suits your application. That runs afoul of some other issues, such as the fact that currently a cache is configured per environment, and the use of multiple environments in a single process requires some static division of memory that may not be optimal. (We're paying attention to the fact that we've heard this use case from an increasing number of users!).
    Regards,
    Linda

  • Broken pipe - Solaris 10, Sun T2000

    Hi,
    I have some problems..
    So, there's one system I'm working with. It's made of 2 parts (both written in Java):
    - "normal" application, that works as a business logic server,
    - web application (build on Turbine framework, running on a Resin Application Server) - it works as a presentation layer,
    These 2 parts are connected via TCP/IP socket connection - we use an ObjectOutputStream.
    It normally works just fine (it's running on several different systems), but recenlty it has been installed on a new server machine and it's started to throw strange exceptions. Below there are informations about server machine, exceptions and code making connections.
    We think, that It may be a problem with configuration of Solaris kernel or TCP/IP stack, but have no idea how to fix it.
    SERVER CONFIGURATION:
    Machine: Sun T2000
    System: Solaris 10
    JVM: 1.4 or 1.5 (both were tested)
    EXCEPTION:
    ERROR 2006-11-28 11:28:59,377 [pl.com.ttsoft.vixen.currentday.server.ClientServiceThread] - IOException while sending data to the client. Closing output stream.
    java.net.SocketException: Broken pipe
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1682)
    at java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(ObjectOutputStream.java:1591)
    at java.io.ObjectOutputStream.writeFatalException(ObjectOutputStream.java:1401)
    at java.io.ObjectOutputStream.writeUnshared(ObjectOutputStream.java:371)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendMessageToClient(ClientServiceThread.java:679)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendModificationData(ClientServiceThread.java:432)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.serveDataModification(ClientServiceThread.java:308)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.run(ClientServiceThread.java:185)
    ERROR 2006-11-28 11:28:59,400 [pl.com.ttsoft.vixen.currentday.server.ClientServiceThread] - IOException while closing client connection.
    java.net.SocketException: Broken pipe
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1682)
    at java.io.ObjectOutputStream$BlockDataOutputStream.flush(ObjectOutputStream.java:1627)
    at java.io.ObjectOutputStream.flush(ObjectOutputStream.java:666)
    at java.io.ObjectOutputStream.close(ObjectOutputStream.java:687)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.closeClientConnection(ClientServiceThread.java:706)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendMessageToClient(ClientServiceThread.java:691)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendModificationData(ClientServiceThread.java:432)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.serveDataModification(ClientServiceThread.java:308)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.run(ClientServiceThread.java:185)
    STANDALONE APPLICATION CODE:
    /* i've simplified it */
    /* OPENING CONNECITON */
              Socket socket = = new Socket(hostName, hostPort);
              ObjectOutputStream outStream = new ObjectOutputStream( socket.getOutputStream() );
              ClientDescriptor clientDescriptor =
                new ClientDescriptor(socket, outStream, info.getLogin(), info.getSystem(),
                    info.getDay(), info.getCurrentDaySessionId());
    /* SENDING DATA */
         private boolean sendMessageToClient( MessageDTO messageDTO, ClientDescriptor clientDescriptor )
              throws CurrentDayException {
              logger.info( "sendMessageToClient " + messageDTO.getClientId() );
              ObjectOutputStream outputStream = clientDescriptor.getOutputStream();
              try {
                  outputStream.writeUnshared( messageDTO ); // THIS WRITE THROWS EXCEPTIONS
                  outputStream.flush();
              } catch ( IOException exc ) {
                logger.error( " IOException while sending data to the client. Closing output stream. ", exc );
                // close client connection
                closeClientConnection( clientDescriptor );
                return false;
            return true;       
        private void closeClientConnection( ClientDescriptor clientDescriptor ) {
            try {
                synchronized ( clientDescriptorMap ) {
                    clientDescriptor.setState( ClientDescriptor.TO_REMOVE );           
                    clientDescriptor.getOutputStream().close();
                    clientDescriptor.getSocket().close();
            } catch ( IOException exc ) {
                logger.error( " IOException while closing client connection. ", exc );
    /* WEB APPLICATION */
    /* RECIEVING DATA */
    /* it routes this data to 3-rd party applet */
            SocketChannel vixenSocket = (SocketChannel)key.channel();
            Socket clientSocket = (Socket)objClientServers.get(key);
            // read the information from the socket....
            ByteBuffer buffer = ByteBuffer.allocate(16 * 1024);
            while (vixenSocket.read(buffer) > 0) {
                buffer.flip();
                byte[] bytespassed = new byte[buffer.remaining()];
                logger.debug("buffer.remaining() (1)=" + buffer.remaining());
                buffer.get(bytespassed, 0, bytespassed.length);
                clientSocket.getOutputStream().write(bytespassed);
                buffer.compact();
            buffer.flip();
            while (buffer.hasRemaining()) { // make sure the buffer is fully readed.
                byte[] bytespassed = new byte[buffer.remaining()];
                logger.debug("buffer.remaining() (2)=" + buffer.remaining());
                buffer.get(bytespassed, 0, bytespassed.length);
                clientSocket.getOutputStream().write(bytespassed);
            buffer.clear();We think, that It may be a problem with configuration of Solaris kernel or TCP/IP stack, but have no idea how to fix it.
    Thanks for help,
    Ziemek Obel.

    We solve problem changing tcp/ip window parameters on T2000 server:
    ndd -set /dev/tcp tcp_xmit_hiwat 400000
    ndd -set /dev/tcp tcp_recv_hiwat 400000
    ndd -set /dev/tcp tcp_conn_req_max_q 81920
    ndd -set /dev/tcp tcp_conn_req_max_q0 81920
    ndd -set /dev/tcp tcp_time_wait_interval 60000
    Arkadiusz Malinowski

  • Broken pipe - Sun T2000, Solaris 10

    Hi,
    I have some problems..
    So, there's one system I'm working with. It's made of 2 parts (both written in Java):
    - "normal" application, that works as a business logic server,
    - web application (build on Turbine framework, running on a Resin Application Server) - it works as a presentation layer,
    These 2 parts are connected via TCP/IP socket connection - we use an ObjectOutputStream.
    It normally works just fine (it's running on several different systems), but recenlty it has been installed on a new server machine and it's started to throw strange exceptions. Below there are informations about server machine, exceptions and code making connections.
    We think, that It may be a problem with configuration of Solaris kernel or TCP/IP stack, but have no idea how to fix it.
    SERVER CONFIGURATION:
    Machine: Sun T2000
    System: Solaris 10
    JVM: 1.4 or 1.5 (both were tested)
    EXCEPTION:
    ERROR 2006-11-28 11:28:59,377 [pl.com.ttsoft.vixen.currentday.server.ClientServiceThread] - IOException while sending data to the client. Closing output stream.
    java.net.SocketException: Broken pipe
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1682)
    at java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(ObjectOutputStream.java:1591)
    at java.io.ObjectOutputStream.writeFatalException(ObjectOutputStream.java:1401)
    at java.io.ObjectOutputStream.writeUnshared(ObjectOutputStream.java:371)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendMessageToClient(ClientServiceThread.java:679)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendModificationData(ClientServiceThread.java:432)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.serveDataModification(ClientServiceThread.java:308)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.run(ClientServiceThread.java:185)
    ERROR 2006-11-28 11:28:59,400 [pl.com.ttsoft.vixen.currentday.server.ClientServiceThread] - IOException while closing client connection.
    java.net.SocketException: Broken pipe
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1682)
    at java.io.ObjectOutputStream$BlockDataOutputStream.flush(ObjectOutputStream.java:1627)
    at java.io.ObjectOutputStream.flush(ObjectOutputStream.java:666)
    at java.io.ObjectOutputStream.close(ObjectOutputStream.java:687)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.closeClientConnection(ClientServiceThread.java:706)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendMessageToClient(ClientServiceThread.java:691)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendModificationData(ClientServiceThread.java:432)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.serveDataModification(ClientServiceThread.java:308)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.run(ClientServiceThread.java:185)
    STANDALONE APPLICATION CODE:
    /* i've simplified it */
    /* OPENING CONNECITON */
              Socket socket = = new Socket(hostName, hostPort);
              ObjectOutputStream outStream = new ObjectOutputStream( socket.getOutputStream() );
              ClientDescriptor clientDescriptor =
                new ClientDescriptor(socket, outStream, info.getLogin(), info.getSystem(),
                    info.getDay(), info.getCurrentDaySessionId());
    /* SENDING DATA */
         private boolean sendMessageToClient( MessageDTO messageDTO, ClientDescriptor clientDescriptor )
              throws CurrentDayException {
              logger.info( "sendMessageToClient " + messageDTO.getClientId() );
              ObjectOutputStream outputStream = clientDescriptor.getOutputStream();
              try {
                  outputStream.writeUnshared( messageDTO ); // THIS WRITE THROWS EXCEPTIONS
                  outputStream.flush();
              } catch ( IOException exc ) {
                logger.error( " IOException while sending data to the client. Closing output stream. ", exc );
                // close client connection
                closeClientConnection( clientDescriptor );
                return false;
            return true;       
        private void closeClientConnection( ClientDescriptor clientDescriptor ) {
            try {
                synchronized ( clientDescriptorMap ) {
                    clientDescriptor.setState( ClientDescriptor.TO_REMOVE );           
                    clientDescriptor.getOutputStream().close();
                    clientDescriptor.getSocket().close();
            } catch ( IOException exc ) {
                logger.error( " IOException while closing client connection. ", exc );
    /* WEB APPLICATION */
    /* RECIEVING DATA */
    /* it routes this data to 3-rd party applet */
            SocketChannel vixenSocket = (SocketChannel)key.channel();
            Socket clientSocket = (Socket)objClientServers.get(key);
            // read the information from the socket....
            ByteBuffer buffer = ByteBuffer.allocate(16 * 1024);
            while (vixenSocket.read(buffer) > 0) {
                buffer.flip();
                byte[] bytespassed = new byte[buffer.remaining()];
                logger.debug("buffer.remaining() (1)=" + buffer.remaining());
                buffer.get(bytespassed, 0, bytespassed.length);
                clientSocket.getOutputStream().write(bytespassed);
                buffer.compact();
            buffer.flip();
            while (buffer.hasRemaining()) { // make sure the buffer is fully readed.
                byte[] bytespassed = new byte[buffer.remaining()];
                logger.debug("buffer.remaining() (2)=" + buffer.remaining());
                buffer.get(bytespassed, 0, bytespassed.length);
                clientSocket.getOutputStream().write(bytespassed);
            buffer.clear();We think, that It may be a problem with configuration of Solaris kernel or TCP/IP stack, but have no idea how to fix it.
    Thanks for help,
    Ziemek Obel.

    Hi,
    well I'm not sure if it isn't a hardware problem - you see, this system works just fine on a Solaris 10 working on the other servers, but tends to throw exceptions on Sun T2000 machine - so I guess It may be hardware issue and someone here could help me.
    Ziemek.

  • Experiences with Sun T2000 servers on SAP systems

    Hello,
    We are currently involved in a project to migrate our SAP systems from a Windows 2003 to a Solaris 10 platform.  Our application server layer will be based on Sun T2000 servers for both ABAP and Java stacks.
    I would be interested in hearing from anyone using T2000s in the application server layer to understand their perception of the performance of these systems.
    Thanks in advance,
    Brendan Byrne

    We have actually solved the issues sourrounding performance on sun multi threaded servers.
    What you need to do is create a 'Zone' on the solaris server and then allocate resources to the zone.
    Then sap seems to fly.
    This is fully supported by the way.
    Just set this up with NW7 on a T2000 and some T5120's
    Basically what occurs is that you setup SAP on one zone.
    You then allocate the full 64cpus to this zone, as well as the 32/64gb of ram.
    SAP runs as one thread within the zone, but the zone then allocates this thread across all the cpus.
    Works like a dream,
    Regards
    James
    Edited by: James Ibbotson on Sep 5, 2008 1:58 PM

  • SPARC Ldom 3.0 on Sun T2000

    Dear All Experts,
    I install SPARC Ldom 3.0 on Sun T2000, after installed then I try some command it, it error as below:
    root@T2000 # uname -a
    SunOS T2000 5.10 Generic_147440-01 sun4v sparc SUNW,Netra-T2000
    root@T2000 # svcadm enable svc:/ldoms/ldmd:default
    root@T2000 # ldm list
    Failed to connect to logical domain manager: Connection refused
    root@T2000 # ldm ls-spconfig
    Failed to connect to logical domain manager: Connection refused
    root@T2000 # tail /var/svc/log/ldoms-ldmd\:default.log
    [ Apr 20 08:37:17 No 'refresh' method defined.  Treating as :true. ]
    [ Apr 20 08:37:17 Stopping because service disabled. ]
    [ Apr 20 08:37:17 Executing stop method (:kill) ]
    [ Apr 20 08:56:25 Rereading configuration. ]
    [ Apr 20 09:05:39 Enabled. ]
    [ Apr 20 09:05:39 Executing start method ("/opt/SUNWldm/bin/ldmd_start") ]
    Disabling service because this domain is not a control domain
    [ Apr 20 09:05:39 Method "start" exited with status 0 ]
    [ Apr 20 09:05:39 Stopping because service disabled. ]
    [ Apr 20 09:05:39 Executing stop method (:kill)
    Please kindly give advice for this.
    Thanks and regards,
    Vandy

    Oracle VM for SPARC 3.0 is not supported on T1 platform.

  • SSD in Sun T2000

    Hey all,
    I'm looking to add a couple of SSDs to a Sun T2000, so I can use Veritas Volume Manager to mirror an existing volume onto the SSDs, and set the read preference to the SSDs, to speed up a database application.
    I'd like to not have to trial and error test a variety of SSDs, and am wondering if anyone has successfully installed a 2.5 inch SSD into the 4 onboard drive slots in a T2000, and if so, what brand?
    I'm hoping that a standard SATA SSD drive fitted into a drive enclosure would work.
    I need roughly a pair of 256gb drives, and there are a number of vendors to choose from (OCZ, Samsung, Crucial, etc. etc)
    Any pointers? I can seem to find much info about 2.5 inch SSD drives in Sparcs under Solaris out on the web.

    I'm not sure if at first place 256 GB SSD (Solid State Drive) is available & supported on T2000 (searched sunsolve handbook but could not find. Only SSD available is for T5xxx platforms and its 32 GB capacity See : http://sunsolve.sun.com/handbook_private/validateUser.do?target=Systems/SE_T5140/components)
    If you want to try for any third party available disks, you may do so but for any problem, it will not be supported by Sun support, if you wish to get.
    HTH
    -Mehul

  • Sun Creator and using the JNI

    Does any developer or Sun person have a direction for me to go in the use of the JNI within Java Sun Creator?
    It seems last weekend I was talking to a person from SUN in regards to tis issue and they have not got back to me. Has any one that uses searches looks through this user forum used the JNI within Sun Creator and to what extenet if you have.
    Thank you for your help...

    dupey00_ca , Sun support is trying to contact you.
    Please see the response to your posting from ELI-NB on Jan 4
    http://forum.java.sun.com/thread.jspa?threadID=5113212&messageID=9389707#9389707
    John
    from the Creator team

  • Oracle Workflow Server in a SUN machine; and the Oracle

    Hi All
    I have installed Oracle Workflow Server in a SUN machine; and the Oracle
    Workflow Client (Builder) in a WIN2000 machine.
    In the SUN machine, I already had installed Oracle9i and OMS (Oracle
    Management Server) version 9.2.0.1.0.
    In the WINDOWS 2000 machine, I already had installed the Oracle9i
    Client and the OWB (Oracle Warehouse Builder) version 9.0.3.35.0. Workflow
    Builder
    was installed together with Oracle Client components.
    I have a OWB (Oracle Warehouse Builder) project, and I deploy and schedule
    JOBS in OEM.
    Now I need Oracle Workflow in order to better ordering, manage and schedule
    that jobs.
    I'm reading the following documentation:
    Oracle Workflow Guide (Release 2.6.2)
    http://www.csis.gvsu.edu/GeneralInfo/Oracle/workflow.920/a95265.pdf But I think Oracle Workflow is very complex to learn quickly.
    My OWB Project has several mappings that load tables in a Data Warehouse.
    When I deploy these mappings one by one, in OEM, I can execute them in OEM
    and they work well.
    But when I use the Workflow Deployment Wizard, I create a new Workflow
    Project (Item type and Process).
    But I can't Launch this process. I go to Launch Process in Workflow page
    (http://:/pls//) but when I iniciate the project,
    it stops in the OWB Standard Begin Function. It does not go ahead.
    Well, when I use the Workflow Deployment Wizard inside OWB, it generates
    jobs that can
    be viewed inside OEM (Oracle Enterprise Manager) too. But when I submit
    these jobs, I can't get success too.
    Can somebody help me? May you guide me in order to solve my problem, or send
    me some
    documents or links about workflow, and it's integration with OWB and OEM?
    Best regards

    I think this might be more of an OWB question, and how OWB uses workflow, I have sent an email internally to try and get someone to responsd. You should also consider contacting Oracle Support if you are having these kinds of problems.
    Hi All
    I have installed Oracle Workflow Server in a SUN machine; and the Oracle
    Workflow Client (Builder) in a WIN2000 machine.
    In the SUN machine, I already had installed Oracle9i and OMS (Oracle
    Management Server) version 9.2.0.1.0.
    In the WINDOWS 2000 machine, I already had installed the Oracle9i
    Client and the OWB (Oracle Warehouse Builder) version 9.0.3.35.0. Workflow
    Builder
    was installed together with Oracle Client components.
    I have a OWB (Oracle Warehouse Builder) project, and I deploy and schedule
    JOBS in OEM.
    Now I need Oracle Workflow in order to better ordering, manage and schedule
    that jobs.
    I'm reading the following documentation:
    Oracle Workflow Guide (Release 2.6.2)
    http://www.csis.gvsu.edu/GeneralInfo/Oracle/workflow.920/a95265.pdf But I think Oracle Workflow is very complex to learn quickly.
    My OWB Project has several mappings that load tables in a Data Warehouse.
    When I deploy these mappings one by one, in OEM, I can execute them in OEM
    and they work well.
    But when I use the Workflow Deployment Wizard, I create a new Workflow
    Project (Item type and Process).
    But I can't Launch this process. I go to Launch Process in Workflow page
    (http://:/pls//) but when I iniciate the project,
    it stops in the OWB Standard Begin Function. It does not go ahead.
    Well, when I use the Workflow Deployment Wizard inside OWB, it generates
    jobs that can
    be viewed inside OEM (Oracle Enterprise Manager) too. But when I submit
    these jobs, I can't get success too.
    Can somebody help me? May you guide me in order to solve my problem, or send
    me some
    documents or links about workflow, and it's integration with OWB and OEM?
    Best regards

  • SUN ray and windows License

    Hi,
    I want to use sun ray solution with 100 windows client. can someone tell me which is the best license solution. i mean , should I go with windows terminal license or vmare solution.
    if you can please explain me about the vmare solution and benefits.
    thanks
    rajesh

    Well to be honest; we don't currently have someone here with full SUN knowledge that can answer that. I am a Windows administrator and trying to find all the applications and appliances whether they are compatible with AD 2008 R2 level. If the Sun Ray and V210 don't have an AD link/integration, that is then actually good news.
    Olaf

  • Sun plugin and Microsoft VM

    Hi,
    I have a user base that has installed the Sun plugin (and it is enabled by default), but I would like to make some of the applets on my web site to run using Microsoft VM for Java (note: not "Java VM" :) on their machines even when the Sun plugin is installed and enabled. (Telling them to reconfigure plugin settings on the fly using Tools->Internet Options->Advanced->.... when they enter the spesific applets is far too cumbersome in this case.) My users run other applets that depend on a pure Java VM, so they must have the plugin installed at all times.
    It seems that the Sun plugin takes control over the APPLET tag, so I believe it cannot be used and the OBJECT tag should be used instead.
    On Win2K, running particular applets in the MS VM can be accomplished by using the OBJECT tag and java: as a prefix to the class name. Example:
    <OBJECT ID="Test"
    CODETYPE="application/java"
    CLASSID="java:Test.class"
    WIDTH="400" HEIGHT="140">
    </OBJECT>
    However, my user base has WinNT4.0 so this won't work on their machines.
    I have tried to specify that the applet should be run in the MS VM using an OBJECT tag and a classid that directly refers to the Web Browser Applet Control (clsid:08B0E5C0-4FCB-11CF-AAA5-00401C608501), however, this does not work the way I want it to (the Sun plugin starts instead). And by using OLEVIEW I can see why: There is a TreatAs key for the InprocServer (msjava.dll) there, referring to an object with classid CAFEEFAC-0014-0000-0000-ABCDEFFEDCBB. This turns out to be a "Java Plug-in 1.4.0<applet> redirector".
    Also, I have found out that the registry key HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Plug-in\\1.4.0\\UseJava2IExplorer changes its value from 0 to 1 when a user enables the plugin via Tools->Internet Options->Advanced->.... and from 1 to 0 when a user disables it.
    My hunch is that the applet redirector, i.e. its Inproc Server npjpi140.dll, either runs the applet or redirects to the MS VM depending whether the registry key UseJava2IExplorer equals 1 or 0.
    What I would like to know is the classid of the MS VM component that eventually receives the request to run an applet when the Sun plugin is disabled. My idea is that this is in some way stored inside the npjpi140.dll, however, I would like to avoid having to reverse engineer this file if Sun (or some others) can provide the information.
    I have tried all available classid targets from the Registry that have msjava.dll as InprocServers, without success.
    Also, if the redirection mechanism is not like what I have described here, I would be very grateful for more information and of course, what I essentially need is a way to solve the problem whether this involves using OBJECT tag and classid's or not.
    Thanks!
    Kristoffer
    Kristoffer Dyrkorn - [email protected]
    Java Developer

    Kristoffer,
    If you have not already found the clisd, it is {08B0E5C0-4FCB-11CF-AAA5-00401C608500} for MS VM version 3805.
    I am currently having application conflicts with the newest JRE client and apps that need to use the MS VM. Have you had any luck utilizing both as of yet?
    Regards,
    Scott Hannigan
    s c o t t . h a n n i g a n @ b a n k o f a m e r i c a . c o m

  • Difference Between Sun JVM and IBM JVM

    Hi
    Can some one let me on the difference between Sun JVM and IBM JVM
    regs
    Vivek Nidhi

    Sun's JVM is built on HotSpot technology: http://java.sun.com/docs/hotspot
    and covers a broad range of OS/HW combinations: http://java.sun.com/j2se/1.5.0/system-configurations.html
    Maybe you can be more specific in your question or in describing what you want to do.
    -Alexis

  • Differences between Sun JVM and Microsoft JVM.

    Differences between Sun JVM and Microsoft JVM.
    I have a very simple applet that I am trying to make compatible with both Microsoft�s JVM and Suns JVM in Internet Explorer.
    However, when I turn on the Sun JVM it works occasionally, but frustratingly on most occasions I get the following error messages:
    In the status bar: "Applet <name> notinited"
    And when I investigate further in the console I get the following output:
    load: class <name>.class not found.
    java.lang.ClassNotFoundException: <name>.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.net.SocketException: Malformed reply from SOCKS server
         at java.net.SocksSocketImpl.readSocksReply(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.plugin.net.protocol.http.HttpClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.net.www.http.HttpClient.privilegedOpenServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.plugin.net.protocol.http.HttpClient.<init>(Unknown Source)
         at sun.plugin.net.protocol.http.HttpClient.New(Unknown Source)
         at sun.plugin.net.protocol.http.HttpURLConnection.createConnection(Unknown Source)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at java.net.HttpURLConnection.getResponseCode(Unknown Source)
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    It appears that the applet never gets loaded. I have no idea why?
    What is the Sun JVM doing here?
    Many thanks in advance for any help.

    Oh, one more thing. Here's the outpt of the VM log when I run the test above:
    Java(TM) Plug-in: Version 1.4.2_03
    Using JRE version 1.4.2 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Michael
    Proxy Configuration: No proxy
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.NullPointerException
         at sun.plugin.cache.Cache.updateTable(Unknown Source)
         at sun.plugin.cache.FileCache.getMatchingFile(Unknown Source)
         at sun.plugin.cache.CachedFileLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.cache.CachedFileLoader.getCacheFile(Unknown Source)
         at sun.plugin.cache.CachedFileLoader.load(Unknown Source)
         at sun.plugin.cache.FileCache.get(Unknown Source)
         at sun.plugin.net.protocol.http.HttpURLConnection.connectWithCache(Unknown Source)
         at sun.plugin.net.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.plugin.net.protocol.http.HttpURLConnection.getHeaderField(Unknown Source)
         at java.net.HttpURLConnection.getResponseCode(Unknown Source)
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    v

  • Sun Cluster and EMC AX150 does not work

    Hi All,
    I tried to setup a Sun Cluster 3.2 (2x T2000) with an EMC AX 150 Storage. the device paths are highly instable and breaking down time and again. Tried to install Powerpath software of EMC but this time the did-devices are not recognized by Sun Cluster.
    Any help will be appriciated.
    P.S: does anybody know whether a MSA 1000 will work with Sun Cluster 3.2.
    Regards

    Looking at the EMC link on http://www.sun.com/software/cluster/osp/ it doesn't look like these storage systems have been tested by EMC and so may or may not work.
    You could try using Sun's MPxIO rather than PowerPath. MPxIO is included in Solaris for free. Again, it may or may not work. You are unlikely to get support on either configuration until EMC has done the prerequisite engineering testing to resolve the sort of issues you are currently seeing.
    Regards,
    Tim
    ---

  • Sun c4 and veritas netbackup 6 mp4 installation

    Hello, please help me!
    We have SAN with 2 st6140 and 3 broacade 200e switch. One site is: two 200e and 3 linux hosts, other site is: v240 server (one FC port) with solaris preinstalled and installed Veritas NetBackup mp4, 1 200e switch, Sun C4 library whith FC ports.
    On second site I connected C4 FC host port to the 200e swith, FC port on v240 also connected to the 200e switch.
    Can you describe me a common porcedure to configure correctly a server with Veritas and C4?
    I cant add "device" in veritas Administration console now, because it cant see nothing.
    How i have to connect C4 and Veritas server to SAN correctly ?

    create a soft zone on your brocade , with your C4's FCs ports and your Netbackup Master server, for Netbackup use version 6.5 , not 6.0
    once you activate your zone, run cfgadm -al -o show_FCP_dev, you should be able to see your paths, one path or more paths from your server, two or more from your C4 libraries' fabrics, netbackuop 6.5 is very clean and installed , to be able to recognize your drivers ...once the software installed, go to your GUI, to configure device...
    Also, use the latest version of Solaris10 on this..it is much cleaner to work with netbackup 6.5

Maybe you are looking for

  • How can I tranfer songs from ipod (4GB) to my new hard drive?

    My computer crashed and I lost my itunes library.  I still have the songs on my ipod.  How can I put them back on new hard drive?

  • Manual accurals for rebates.

    Hi, I have rebate agreement type which allows only manual accurals ( no need to create sales orders). But if i go to the condition record and try to post manual accural it gives me an error accural value exceeds 0.00 value. pls suggest any solution f

  • Custom JSP for Human Task

    Hi all, How can I create cusstom JSP for my Human task? Where can I see the log if I modify anything in the JSP? I am not able to see any log anywhere when I pass some messages through payload jsp. Regards

  • CS5 turned into CS5 Extended?

    I am trying to download the trial software for photoshop cs5, however, when I click on TRY, it directs me to the download page for photoshop cs5 extended. I tried downloading that anyway, but it said in the installation that i need to download photos

  • Why My iPhone loses signal when I had signal in the same place?

    My iPhone 4S is locked with a Mexican company named "Telcel" and sometimes when I don't use the carrier network, it lose the signal for two minutes (but twice I had an emergency and I don't had signal). I tried to switch between 2G to 3G and the prob