Total members 11890 |It is currently Thu Apr 25, 2024 5:51 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





sir this error is coming when i start the sever

Driver For COMM PORT not found
Replace the file/lib/comm/javax.com.properties
with your operational system properties file
uncompatible source code


sir please tell the error

sir this a client server application
i want to control my pc(computer) with mobile in java
Code:
/*
    JM2PC - Java Mobile to PC
    Copyright (C) 2005-2009 - Walter Alves Wanderley
    Recife - PE - Brazil

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

package jm2pc.server.connection;

import java.util.Date;

import jm2pc.server.i18n.Messages;
import jm2pc.server.log.Loggable;
import jm2pc.server.utils.DateFormat;

public abstract class ServerManager {
    
    private int timeout
;
    private String password;
    private boolean serverStarted;
    
    private Loggable log
;
    
    private int clientNumber
;
        
    public ServerManager
(Loggable log) {
        serverStarted = false;
        this.log = log;
        
        clientNumber 
= 0;

    }

    protected String getPassword() {
        return password;
    }
    
    public void setPassword
(String password) {
        this.password = password;
    }
    
    public int getTimeout
() {
        return timeout;
    }
    
    public void setTimeout
(int timeout) {
        this.timeout = timeout;
    }
    
    public boolean isServerStarted
() {
        return serverStarted;
    }

    public void setServerStarted(boolean serverStarted) {
        this.serverStarted = serverStarted;
    }        
    
    public Loggable getLog
() {
        return log;
    }

    public void setLog(Loggable log) {
        this.log = log;
    }

    public void showStartMessage(String type) {
        StringBuffer sb = new StringBuffer(type + "    -- ");
        sb.append("   Timeout = " + getTimeout() + "min");
        sb.append('\n');
        sb.append(Messages.getMessage("serverStartAt") + ": " + new Date());
        sb.append('\n');
        sb.append('\n');
        sb.append(Messages.getMessage("waitClients") + "...");
        sb.append('\n');                              
        sb
.append("-------------------------------");
        
           log
.logSucess(sb.toString());
    }
    
    public void showDisconnectMessage
(int connectedCount) {
        if(connectedCount == 1)
            log.logSucess(Messages.getMessage("disconnect") + " " + connectedCount + " " + Messages.getMessage("client"));
        else
            log
.logSucess(Messages.getMessage("disconnect") + " " + connectedCount + " " + Messages.getMessage("clients"));

    }
    
    public void showStoppedMessage
() {
                
        log
.logSucess("*******************************************");
        log.logSucess(DateFormat.format(new Date()) + " -> " + Messages.getMessage("serverStopped"));
        log.logSucess("*******************************************");
    }
    
    
    public void incrementClientNumber
() {
        clientNumber++;
    }

    public int getClientNumber() {
        return clientNumber;
    }

    public void setClientNumber(int clientNumber) {
        this.clientNumber = clientNumber;
    }

    public abstract void start() throws Exception;
    
    public abstract void stop
() throws Exception;

}
 





Attachments:
Sourcesss.rar [161.39 KiB]
Downloaded 710 times


Last edited by aisha on Sat Feb 05, 2011 7:53 am, edited 2 times in total.
Author:
Newbie
User avatar Posts: 5
Have thanks: 0 time

dear ,
what server you are running . ?

_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 2 posts ] 

  Related Posts  to : Client Server Mobile to PC Application
 About Mobile application     -  
 Mobile Application     -  
 client server client     -  
 FTP Server and FTP Client     -  
 UDP server and UDP client (J2SE)     -  
 client server problem     -  
 how to develop a mobile application for nokia help of java     -  
 Client-Server Forum discussion     -  
 RMI EXAMPLE FOR CLIENT SERVER ARCHITECTURE CODE ?????     -  
 A Simple Client Server Multicasting     -  



cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com