Connecting TCP server from swing

Hello Techies,
From swing application i am trying to connect TCP server. I am able to connect TCP server.
But I am having problem in action Performed().
Until i close the Jpanel , the request is not going to the TCP server.
In my Jpanel, I am having 2 combo boxes, One text field and one button.
when i click the button this request has to be sent to the TCP server.
How can i do this one??
can any body help me.
Thanks (In advance),
Ramu

No body is having answer??

Similar Messages

  • Conneting Tcp Server from swing

    Hello Techies,
    I have to connect TCP server from swing. I had developed GUI. Now I have to connect TCP server from swing.
    Here question araise where I have to give information about the server details.
    Can any body guide me??
    Thanks,
    Ramu

    presently I can say I am having 2 combo boxes, 1 text field and one submit button.
    When i click on submit i have to connect the TCP server and get the reply.
    How can I do this one.
    regards,
    ramu.

  • Multi-Client TCP Server /w Swing GUI

    Hi everybody,
    i have to develop a Multi-Client TCP Server with a Swing GUI. The GUI mainly consists of a JTable which shows various trace messages from processes running on other computers. As the data needs to be filtered i�m using a custom TableModel derived from AbstractTableModel. I�m creating a new thread for every client that connects as shown in http://java.sun.com/developer/onlineTraining/Programming/BasicJava2/socket.html
    Now every client thread reads data from its TCP connection and puts it into the JTable by calling the method addRow of the model. But i�m getting strange NullPointerExceptions and IndexOutOfBoundExceptions when data arrives (i�m using ArrayList in the model). These exceptions never show in a single-threaded Swing app (i�ve tested this already, so i don�t think it�s a bug in my model), so i think this is a problem with Swing�s thread unsafety? Do you have any hints on how to get away with it? Also general design tips for a Multi-Client TCP Server /w Swing GUI are greatly appreciated.
    Thanks in advance!
    Best regards,
    Disposable_Hero

    Of course, but i don�t think it is the model (as said before it works fine in a single thread swing app)
    Here�s the code:
    public class LogTableModel extends AbstractTableModel{
    private Vector dataVector;
    private Vector filterVector;
    private String[] columnIdentifiers;
    private Vector filteredbyProcess;
    private Vector filteredbyLoglevel;
    private boolean bEnableRefresh;
    /** Creates a new instance of LogTableModel */
    public LogTableModel() {
    dataVector=new Vector(0);
    columnIdentifiers=new String[]{"LogTime","HostName","IP","ProcessName","LogLevel","Handle","PID","TID","LogData"};
    filteredbyProcess=new Vector(0);
    filteredbyLoglevel=new Vector(0);
    filterVector=new Vector(0);
    bEnableRefresh=true;
    public synchronized void enableRefresh(boolean bEnableRefresh){
    this.bEnableRefresh=bEnableRefresh;
    if(bEnableRefresh){
    this.buildIndexListBasedOnFilter();
    public synchronized void addRow(LogLine row){
    dataVector.add(row);
    if(bEnableRefresh)
    this.buildIndexListBasedOnFilter();
    public synchronized void addFilter(Filter filter){
    filterVector.add(filter);
    if(filter.isActive())
    this.buildIndexListBasedOnFilter();
    public synchronized void setFilterActive(String name,boolean active){
    int i;
    for(i=0;i<filterVector.size();i++)
    if(((Filter)filterVector.elementAt(i)).getName().equals(name))
    break;
    Filter tmp=(Filter)filterVector.elementAt(i);
    tmp.setActive(active);
    if(active)
    this.buildIndexListBasedOnFilter();
    public synchronized void setFilterLoglevel(String name,int Loglevel){
    int i;
    for(i=0;i<filterVector.size();i++)
    if(((Filter)filterVector.elementAt(i)).getName().equals(name))
    break;
    Filter tmp=(Filter)filterVector.elementAt(i);
    tmp.setLoglevel(Loglevel);
    if(tmp.isActive()==false)
    this.buildIndexListBasedOnFilter();
    private void buildIndexListBasedOnFilter(){
    filteredbyProcess.clear();
    filteredbyLoglevel.clear();
    applyProcessFilter();
    applyLoglevelFilter();
    if(bEnableRefresh)
    this.fireTableDataChanged();
    private void applyProcessFilter(){
    LogLine line=null;
    Filter filter=null;
    for(int i=0;i<dataVector.size();i++){
    for(int j=0;j<filterVector.size();j++){
    filter=(Filter)filterVector.elementAt(j);
    line=(LogLine)dataVector.elementAt(i);
    if(filter.isActive()&&(filter.getName().equals(line.getProcessName()))){
    line.setHidden(true);
    break;
    else{
    line.setHidden(false);
    if(line.getHidden()!=true)
    filteredbyProcess.add(new Integer(i));
    private void applyLoglevelFilter(){
    for(int i=0;i<filteredbyProcess.size();i++){
    int index=((Integer)filteredbyProcess.get(i)).intValue();
    LogLine line=(LogLine)dataVector.elementAt(index);
    for(int j=0;j<filterVector.size();j++){
    if(((Filter)filterVector.elementAt(j)).getName().equals(line.getProcessName())){
    Filter filter=(Filter)filterVector.elementAt(j);
    if((filter.getLoglevel()&line.getLogLevelAsInt())!=line.getLogLevelAsInt())
    line.setHidden(true);
    else
    filteredbyLoglevel.add(new Integer(index));
    break;
    public synchronized String getColumnName(int columnIndex){
    return columnIdentifiers[columnIndex];
    public synchronized void clearData(){
    dataVector.clear();
    filteredbyProcess.clear();
    filteredbyLoglevel.clear();
    public synchronized int getColumnCount() {
    return columnIdentifiers.length;
    public synchronized int getRowCount() {
    return filteredbyLoglevel.size();
    public synchronized Object getValueAt(int rowIndex, int columnIndex) {
    int iIndex=((Integer)filteredbyLoglevel.get(rowIndex)).intValue();// hier krachts warum???
    LogLine tmp=(LogLine)dataVector.elementAt(iIndex);
    switch(columnIndex){
    case 0:
    return tmp.getLogTime();
    case 1:
    return tmp.getHostName();
    case 2:
    return tmp.getIP();
    case 3:
    return tmp.getProcessName();
    case 4:
    return tmp.getLogLevel();
    case 5:
    return tmp.getHandle();
    case 6:
    return tmp.getProcessID();
    case 7:
    return tmp.getThreadID();
    case 8:
    return tmp.getLogData();
    default:
    return null;

  • HTTP/1.1 302 error while connecting UCM server from ODC Commit profile

    Hi Team,
    We are getting HTTP/1.1 302 error while connecting UCM server from ODC Commit profile.
    Error Code
    oracle.stellent.ridc.protocol.http.HttpProtocolException: Http/1.1 302
    Please note that target UCM is SSO enabled.
    Regards,
    Piyush

    I am having a similar problem.
    Have you been able to figure out what the issue is and/or what the library location should be?

  • Connect 11g server from client

    Hi,
    i have 11g daatabase and 11 g client. can u please help me to connect 11g server from client
    pls help with steps
    thanks

    Chinu wrote:
    Hi,
    i have 11g daatabase and 11 g client. can u please help me to connect 11g server from client
    pls help with steps
    thankssqlplus
    / as sysdba
    Handle:      Chinu
    Status Level:      Newbie
    Registered:      Sep 19, 2009
    Total Posts:      323
    Total Questions:      123 (102 unresolved)
    why so MANY unresolved questions?

  • Can't connect to server from internet

    Hi
    I’ve just set up a new Mac mini server with Lion 10.7.1.
    It’s configured as "Host name for Internet".
    I can reach the router from Internet. NAT on the router is setup to forward the the required ports according to Apple’s document "Well known TCP and UDP ports used by Apple software products"
    Still I can’t connect to any service on the server from Internet (Address Book, Calendar, AFP, VPN)
    Please help!
    Asbjørn

    You can test it from outside with a telnet connection:
    Open Terminal.app (Applications > Utilities) and insert:
    telnet <ip-address-from-router> <port>
    so testing the iCal port would be:
    telnet 123.234.45.6 8008
    or SSL:
    telnet 123.234.45.6 8443
    When you get "Escape character is '^]'." the connection is established to the server/port.
    When you get " telnet: connect to address 123.234.45.6: Connection refused  |  telnet: Unable to connect to remote host" something is wrong with the setup.
    Maybe it's the Port-forwarding, maybe the setup of the server.
    Is it working in the local network?
    I also would recommend you, to NOT share AFP over the network! The traffic isn't secured in a single way! Instead just configure VPN and establish the AFP connection through that VPN tunnel, but not directly by opening that connection to the internet!

  • Trying to connect db server from another server

    Hello team,
    Today i tried to connect db server(Named instance)  from another server and that was failed. im getting below error
    any one help on this will be appreciated.
    unable to check connection to the repository The Tcp/Ip connection to the host server, port 1433 has failed.
    Error: "connection refused: connect. verify the connection properties. Make sure that an instance of sql server is running on the host and accepting Tcp/Ip connections at the port. make sure that Tcp connections to the port are not blocked bya firewall.

    Hello,
    Normally "Connection Refused" is caused by firewalls actively closing the requests. Also, please note that by default named instances use dynamic ports and do not listen on 1433. If you are using dynamic ports, make sure the browser service is started and
    that UDP 1434 is allowed for browser service communication.
    Sean Gallardy | Blog |
    Twitter

  • Unable to connect to server from Device(BlackBerry).

    hi,
       i have created one application and deployed to unwired server.I made the following settings in Options > Third Party Applications > Sybase Settings:
    Server Name: pc102527.cts.com(Unwired Server)
    Server Port: 5001
    Farm ID: 0
    User Name: supAdmin
    Activation Code: 123 (Created in SCC > Device Users > MBS > Register)
    However, I am not able to connect to the Unwired Server from Blackberry (BB).Its Showing Following log,
    17:32:10 Queued Item
    17:29:42 Waiting To Connect
    17:29:42 Out of Network
    17:29:41 Engine Startup
    17:29:40 Engine Shutdown
    If I run the application, it is stuck showing the message "Awaiting Connection to Server"
    Any help would be appreciated.
    Regards,
    Sudheendra.Kalakeri

    Hi,
    For JVM error 536 go to the simulator directory which located in Eclipse\plugins\net.rim.ejde.componentpack#.#.#_#.#.#.##\components\simulator and close the simulator run the clean.bat file then try again.
    Ping server with Blackberry device
           Go to your Home Screen -> Select Options -> Go to Wi-Fi Connections -> Open the menu -> Select Wi-Fi Diagnostics -> Open the menu -> Select Ping -> Scroll down one field -> Enter an ip address or computer name -> Open the menu -> Select Ping
    Regards.
    Tahir

  • Hp-setup not connecting to server from China

    Hello all,
    this is a weird problem: when I am in China I sometimes need to install new HP printers; those printers, like LaserJet M1213nf MFB of today, are fully supported by hplip on Debian, but when I try to run hp-setup it cannoct connect to server. The same if I try to download plugin with hp-plugin.
    Of course, I have absolutely no problem when running hplip suite application from Europe.
    As far as you know, there is some particular issue related to the country (China) where I'm in?

    I understand now.  The problem you are having is the printer will not install (hp_setup is also the name of printer's network).  
    How is the printer connected that you want to install the software for (USB, wireless or Ethernet)?
    If it is a network connected printer and your computer is also on that network, you may be slowing down your PC installing software for every printer you come into contact with during your travels.  I recommend trying to install the HP ePrint Driver which will automatically search for any printer on the same network and it will print to it like it is a driver.
    This may or may not be a possibility for you but it works very well if you are currently unable to print due to the problems you are having right now getting the printer's software to install.
    Bear with me while I research the information you have provided and I will see if these errors are related to your current location or not.  Thank you for your patience.
    I welcome anyone who knows about China's firewalls to comment but this is the English page (I tried to send you a link to the Asian Pacific forums and my computer did not like that so I will send you to the AP business support page). This is to increase your chances of getting an answer from that side of the world.  It will be rare but I really hope someone comments here too.
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • Connecting SQL server from Adobe forms

    Hi Experts,
    I want to know, whether it is possible to connect SQL Server database from Adobe Form directly at runtime without WAS/ADS. If it is possible, please provide any material to proceed further.
    Please help.
    Thanks,
    Rajee

    Have a look at the following document, it explains how to use a MS Access database but it should also work when using a ODBC Data source configured for a MS SQL database.
    [Providing interactive database lookup from forms|http://www.adobe.com/devnet/livecycle/articles/lc_designer_db_lookup_tip.pdf]
    I hope I could help you.

  • Sql plus can't connect to server From windows vista - VISTA 2007

    ERROR-12154:TNS Could not resolve service name
    SERVER OPERATING SYSTEM UNIXWARE 7.1.4
    ORACLE 8i
    D2K- RELEASE 2.1- SQL Plus 3.3
    Loaded in front end on VISTA
    NET EASY CONFIGURATION Closes, can't configure
    I have done configuration manually.
    I thing VISTA Not supporting or some protocol to be configured in VISTA
    Please help me to solve the poblem.

    So your 8i db is on unixware and you are trying to connect to it from you local vista machine ?
    What Oracle client version are you using on vista ?
    Lowest 8i that support 10g client connection is 8 1 7 3 , 11g will not connect at all, and i think all 9i's will work,
    but it seems that you have wrongly defined entry in tnsnames for the db you are trying to connect to.

  • Cannot Remote into VM via Remote Desktop or connect to Server from Application

    Good Day,
    We are having a problem remoting into a VM or connecting to the server from a web application. Microsoft support says the server is in an unhealthy state and are battling to resolve the problem.
    When I check the dashboard of the VM i see that Network In and Network Out are @ 0B.
    Does anyone have an idea on what could cause this. Nothing was changed from our side before the issue occured 
    Regards,
    Ralph

    Hi Ralph,
    Anything updates now?
    Since the host name of the VM is lost in the Azure management portal, it may be due to the VM is not ready, yet. If you suspect it would be an issue on the NIC, you can resize the VM to check the result. (Note: the data on the D:(temporary driver)
    would be lost)
    More information:
    [Forum FAQ] How to troubleshoot common RDP
    issues for Windows Virtual Machines in Azure
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • [Urgent] How to connect RMI Server from EJB

    I'm trying to connect to an RMI server from an EJB. I have client code for the
    RMI Server that already works standalone from the command line. However I am having
    configuration issues with webLogic 6.1 allowing the connection to go through.
    Standalone I create an RMISecurityManager, inside of the EJB I cannot do this.
    How do I set up WL6.1 to allow RMI connections?
    Injae Lee

    Some threads already posted :
    Can Forms 10g access data from non-ORacle database?
    Re: connect form to mysql server
    Greetings....
    Sim

  • Connect SQL Server From Oracle

    Hi Experts,
    I want's to made connection from Oracle 10g to Ms SQL Server 2000. I made necessary entries in receptive file, but still getting an error...
    Setting info .....
    */hs/initMYSQLSERVERDSN.ora*
    HS_FDS_CONNECT_INFO = MYSQLSERVERDSN
    HS_FDS_TRACE_LEVEL = OFF
    LISTENER.ORA
    LISTENERMYSQLSERVERDSN =
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1522))
    (ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY)(queuesize=80)))
    SID_LIST_LISTENERMYSQLSERVERDSN=
    (SID_LIST=
    (SID_DESC=
    (SID_NAME=MYSQLSERVERDSN)
    (ORACLE_HOME = E:\oracle\product\10.1.0\db_1)
    (PROGRAM=hsodbc)
    TNSNAME.ORA
    MYSQLSERVERDSN =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1522))
    (CONNECT_DATA=(SID=MYSQLSERVERDSN))
    (HS=OK)
    LISTENER start successfully, and tnsping working fine.
    But after createing db link , when i execute query desc spt_datatype_info@mysqlserverdsn;
    I am geting an error message in listenermysqlserverdsn.log file
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    Please help me out from this issue.
    Thanks in Advance
    Mani

    You OS ?
    I have also done the same.
    I did install SQL Server & Oracle on another machine with Windows.
    For more pls visit.
    http://www.dba-oracle.com/t_heterogeneous_database_connections_sql_server.htm
    Aqeel Nawaz

  • Lost ability to connect with Server from workstation

    NW 6.5 sp5 on a Dell 2900. I am adding an additonal harddrive to our server
    for use as an archive disk in a separate volume. After I loaded it into the
    server and created a new VD in the raid bios I booted the computer and found
    I couldn't connect from my workstation to connect to IManager. When I
    looked on the logger screen I got messages about a possible bad certificate
    with suggestions to run sys:/system/tckeygen.ncf or
    ndlap or
    sys:/tomcat/4/bin/startup-config sys:/adminsrv/conf/admin_tomcat.xml
    Nothing helped.
    I rebooted the server again and did not get the messages above I looked
    through the logger screen and found several messages, I have no idea whether
    they are new or common.
    "default domain not set, you need to set it through ypset unable to log in:
    error -601... NFS service initialization failed during edirectory interface
    library (ndsilib.nlm) initialization
    error code 9600 unloading znfs.nlm"
    SFNS.NLM did not load try running schinst -n
    sys:\etc\schinst.log
    I have pasted the log contents:
    "Info:434:11-7-2006 12:16:07 pm :
    Logging into the tree : MIGRATE
    This will take few moments...
    Info:436:11-7-2006 12:16:07 pm : Modifying NDS schema from file :
    sys:/system/schema/uam.sch.
    Info:434:11-7-2006 12:16:07 pm :
    Logging into the tree : MIGRATE
    This will take few moments...
    Info:436:11-7-2006 12:16:07 pm : Modifying NDS schema from file :
    sys:/system/schema/nis.sch.
    Info:434:11-7-2006 12:16:07 pm :
    Logging into the tree : MIGRATE
    This will take few moments...
    Info:436:11-7-2006 12:16:07 pm : Modifying NDS schema from file :
    sys:/system/schema/nisupgd.sch.
    Info:99:11-7-2006 12:16:08 pm :
    Login was successful.
    Info:98:11-7-2006 12:16:08 pm : Added the object : .CN=NFAUUser.O=mgamigrate
    Info:71:11-7-2006 12:16:08 pm : The config file nfs.cfg has been
    successfully updated.
    Info:116:11-7-2006 12:16:08 pm :
    UNIX Profile of user .CN=NFAUUser.O=mgamigrate has been set as UNIX root
    user.
    Info:99:11-7-2006 12:16:08 pm :
    Login was successful.
    Info:98:11-7-2006 12:16:08 pm : Added the object :
    ..CN=NFAUWorld.O=mgamigrate
    Info:133:11-7-2006 12:16:08 pm :
    SCHINST:WORLD: UNIX Profile for the .CN=NFAUWorld.O=mgamigrate Group object
    has been added and UNIX Gid is set to 65535.
    Error:43:7-8-2009 8:22:30 am : Unable to login. Error Code : -601"
    the screens available on the server are:
    system console
    logger screen
    timesync debug screen
    novell ssl server handshake
    pkernel
    java interperter
    netware 6 console monitor
    gwia webaccess
    mta
    poa
    any ideas?

    I am posting an edited copy of the logger file, there are some error
    messages but nothing stands out to me. any help would be appreciated. I
    have no idea what is going on. I have attached the entire logger file if I
    deleted too much.
    IPXS-4.10-0022:
    Warning, unable to open default IPX configuration file
    "SYS:ETC\IPXSPX.CFG"; using internal defaults.
    Module IPXS.NLM load status OK
    Module PERL.NLM load status OK
    Perl 5.8.4 - Command Line Interface
    Version 5.00.05 September 13, 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Module PERL.NLM load status OK
    Java Hotspot 1.4.2_09 Interpreter
    Version 1.42.06 December 1, 2005
    (C) Copyright 2003-2005 Novell, Inc. All Rights Reserved.
    Module JVM.NLM load status OK
    Loading module DSAPI.NLM
    This module is ALREADY loaded and cannot be loaded more than once.
    Module DSAPI.NLM load status NOT MULTIPLE
    Loading module CLXNLM32.NLM
    This module is ALREADY loaded and cannot be loaded more than once.
    Loading module PKI.NLM
    This module is ALREADY loaded and cannot be loaded more than once.
    Module PKI.NLM load status NOT MULTIPLE
    Default domain is not set, you need to set it through ypset
    Unable to Login. : error -601. Run schinst -n and try again. If the problem
    stil
    l persists, see the TroubleShooting section of the admin doc.
    Could not authenticate ContextHandle.Run schinst -n and try again. If the
    proble
    m still persists, see the TroubleShooting section of the admin doc.
    Exiting...-6
    01
    Module NDSILIB.NLM is being referenced
    You must unload NISSWDD.NLM before you can unload NDSILIB.NLM
    Install for Novell eDirectory
    Version 10553.21 February 10, 2005
    Copyright (c) 1993-2004 Novell, Inc. All rights reserved.
    Loading module XNFS.NLM
    Module DSBACKER.NLM load status OK
    NetWare NFS - NFS Server for NetWare 6.5
    Version 1.01.10 November 28, 2005
    Copyright (C) 2002-2005, Novell, Inc. All Rights Reserved.
    Error : NFS services initialization failed during eDirectory interface
    library
    (ndsilib.nlm) initialization - Error Code : 9600. Unloading XNFS.NLM.
    Error : Try running 'schinst -n'. For details refer to Native File Access
    doc
    umentation.
    SERVER-5.70-1553: Module initialization failed.
    Module XNFS.NLM NOT loaded
    Module XNFS.NLM load status INIT FAIL
    Module DSBACKER.NLM unloaded
    Module PSA.NSS load status OK
    Loading module APACHE2.NLM
    Apache Web Server 2.0.54
    Version 2.00.54 October 31, 2005
    Copyright (c) 2000-2004 The Apache Software Foundation. All rights
    reserved.
    Auto-Loading Module APRLIB.NLM
    Auto-loading module APRLIB.NLM
    Apache Portability Runtime Library 0.9.6
    Version 0.09.06 October 31, 2005
    Copyright (c) 2000-2004 The Apache Software Foundation. All rights
    reserved.
    Loading module SASL.NLM
    Module APRLIB.NLM load status OK
    Module APACHE2.NLM load status OK
    Simple Authentication and Security Layer 2.4.0.0 20051107
    Version 24000511.07 November 7, 2005
    Copyright 2002-2005 Novell, Inc.
    Loading module LANGMAN.NLM
    NISSERV - Error initializing NDSILIB at startup
    Module NISSERV.NLM load status OK
    Novell Cross-Platform Language Manager
    Version 10310.47 August 9, 2004
    Copyright 2001-2003 Novell, Inc. All rights reserved. Patents Pending.
    Module LANGMAN.NLM load status OK
    Loading module XNFS.NLM
    NetWare NFS - NFS Server for NetWare 6.5
    Version 1.01.10 November 28, 2005
    Copyright (C) 2002-2005, Novell, Inc. All Rights Reserved.
    Loading module HT2SOAP.NLM
    Error : NFS services initialization failed during eDirectory interface
    library
    (ndsilib.nlm) initialization - Error Code : 9600. Unloading XNFS.NLM.
    Error : Try running 'schinst -n'. For details refer to Native File Access
    doc
    umentation.
    SERVER-5.70-1553: Module initialization failed.
    Module XNFS.NLM NOT loaded
    Module XNFS.NLM load status INIT FAIL
    eDirectory Management Tool Box HTTP to SOAP shim
    Version 10553.52 July 29, 2005
    Copyright 2001-2005 Novell, Inc. All rights reserved. Patents Pending.
    Loading module EMBOX.NLM
    Module HT2SOAP.NLM load status OK
    This module is ALREADY loaded and cannot be loaded more than once.
    Module EMBOX.NLM load status NOT MULTIPLE
    Loading module AIOCOMX.NLM
    Loading module EMBOXMGR.NLM
    Novell AIO Serial Port Driver
    Version 6.00.02 December 18, 2002
    Copyright 1992-2002, Novell, Inc. All rights reserved.
    Auto-Loading Module AIO.NLM
    Auto-loading module AIO.NLM
    NetWare Asynchronous I/O Library
    Version 7.00.08 November 18, 2003
    (c) Copyright 1992-2003 Novell, Inc. All rights reserved.
    Module REPAIRTL.NLM load status OK
    Perl 5.8.4 - Command Line Interface
    Version 5.00.05 September 13, 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Module PERL.NLM load status OK
    Perl 5.8.4 - Command Line Interface
    Version 5.00.05 September 13, 2005
    Copyright (C) 2000-01, 2004-05 Novell, Inc. All Rights Reserved.
    Module PERL.NLM load status OK
    Version 1.01.16 October 22, 2005
    Copyright (c) 2002-2003 Novell, Inc. All rights reserved.
    Module IPMCFG.NLM load status OK
    Initializing debug network.
    Finding IP interface.
    Loading debug MLID...
    Loading debug module BX2.LAN
    Broadcom NetXtreme II Gigabit Ethernet Driver
    Version 1.22 November 8, 2005
    Copyright (c) 2002 Broadcom Corporation. All rights reserved.
    Auto-loading debug module ETHERTSM.NLM
    Novell Ethernet Topology Specific Module
    Version 3.89 January 27, 2003
    (C) Copyright 1990 - 2003, by Novell, Inc. All rights reserved.
    Auto-loading debug module MSM.NLM
    Novell Multi-Processor Media Support Module
    Version 4.10 January 24, 2003
    Copyright (c) 1990 - 2003, by Novell, Inc. All rights reserved.
    Interrupt assignment: 4
    Interrupt assignment: 4
    Starting service NetWare Administration Tomcat
    Apache Tomcat/4.1.31
    Starting service Tomcat-Standalone
    Apache Tomcat/4.1.31
    Jul 9, 2009 5:37:42 PM org.apache.struts.util.PropertyMessageResources
    <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings',
    returnNull=tru
    e
    Jul 9, 2009 5:37:42 PM org.apache.struts.util.PropertyMessageResources
    <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources',
    returnNul
    l=true
    Jul 9, 2009 5:37:43 PM org.apache.struts.util.PropertyMessageResources
    <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings',
    returnNull=tru
    e
    Jul 9, 2009 5:37:43 PM org.apache.struts.util.PropertyMessageResources
    <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources',
    returnNul
    l=true
    Jul 9, 2009 5:37:44 PM org.apache.struts.util.PropertyMessageResources
    <init>
    INFO: Initializing, config='org.apache.webapp.admin.ApplicationResourc es',
    retur
    nNull=true
    Jul 9, 2009 5:37:44 PM org.apache.struts.util.PropertyMessageResources
    <init>
    INFO: Initializing, config='org.apache.webapp.admin.ApplicationResourc es',
    retur
    nNull=true
    Loading module WPSD.NLM
    ServiceDescriptor Natives NLM
    Version 2.00 August 8, 2005
    Copyright (c) 2003-2004 Novell, Inc. All rights reserved.
    Auto-Loading Module N_PRDDAT.NLM
    Auto-loading module N_PRDDAT.NLM
    N_PRDDAT
    Version 1.00 February 3, 2003
    (C)Copyright 2003, Novell, Inc. All Rights Reserved.
    Module N_PRDDAT.NLM load status OK
    Module WPSD.NLM load status OK
    Jul 9, 2009 5:37:55 PM org.apache.jk.common.ChannelSocket init
    INFO: JK2: ajp13 listening on /0.0.0.0:9009
    Jul 9, 2009 5:37:55 PM org.apache.jk.server.JkMain start
    Novell GroupWise WebAccess
    Version 6.5.6
    (C) Copyright 1993-2005 Novell, Inc. All rights reserved.
    <GroupWise WebAccess> WebAccess Servlet is ready for work
    Novell GroupWise WebAccess Spell Checker
    Version 6.5.6
    (C) Copyright 1996-2005 Novell, Inc. All rights reserved.
    Maximum suggestions: 10
    Dictionary path :
    SYS:\Tomcat\4\webapps\ROOT\web-inf\classes\com\nove
    ll\collexion\morphology\data
    <GroupWise WebAccess Spell Checker> Spell Servlet is ready for work
    Jul 9, 2009 5:38:04 PM org.apache.jk.common.ChannelSocket init
    INFO: JK2: ajp13 listening on /0.0.0.0:9010
    Jul 9, 2009 5:38:04 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=1/176 config=sys:\tomcat\4\conf\jk2.properties
    Loading module EDIT.NLM
    NetWare Text Editor
    Version 8.00.01 October 13, 2005
    Copyright 1989-2005 Novell, Inc. All rights reserved.
    Module EDIT.NLM load status OK

Maybe you are looking for

  • Uploading Excel to Internal Table

    Hi,   Can anyone please look into the code and suggest me the changes in uploading Excel to Internal Table. Code is as below in OnInputProcessing. DATA: event TYPE REF TO CL_HTMLB_EVENT. event = CL_HTMLB_MANAGER=>get_event( runtime->server->request )

  • Plug_in:how to unlock a locked document use acrobat API

    how to unlock a locked document use acrobat API.in acrobat plug_in

  • Target cost calculation in Process Order based on Variance Calculation

    Hi all, I have a question on Target cost calculation in Process Order. My understanding is, the Target Costs gets calculated when the confirmation and GR is made for the Process Order. But if the confirmation/GR is not done, whether the target costs

  • Mac Mini- Starcraft 2

    I just bought the new mac mini, 2.4 GHz Inter Core 2 Duo, 2 GB 1067 MHz DDR3 and i ocassionally play Starcraft 2 which sadly delays very often. Is this due to low computer performance?

  • Order of rows retrieved from collection

    hi -- If I do not specify an ORDER BY clause when selecting rows from a collection, is there any pre-defined order in which they'll be returned? (Eg perhaps in the order each row is added to the collection...) I ask because I've been using a particul