Telnet Server or Command Line Applications

Hi,
Bit of a random question to ask seeing as no one has asked it before...but...
Is there a TELNET SERVER or command line application around for the N series phones? I'm keen on doing some console work with my N82 to explore the symbian interface more.
Any ideas?
Owned: Nokia 3510i, Nokia 3120, Nokia 6230i, Nokia 6233, Nokia N73, Nokia N82.
Current: Nokia N900!

24-Mar-2008 02:25 PM
psychomania wrote:
This has been posted a few times recently for other models and I think someone posted a link to a useful app that works.
Are you sure of this, Psycho?
I've seen links to telnet and ssh CLIENTS for S60 here, not for servers.
Message Edited by grschinon on 24-Mar-2008 02:38 PM
Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

Similar Messages

  • KeyListener for a command line application

    Hi, I'm currently writing a small command line application aimed at interacting with a database. I would like to implement features such as an automatic completion of the names with the TAB key. My problem is that the objects that sends KeyEvent are AWT components, and they do that when they have the focus. So I was wondering if any of you had already done such a thing. Until now, I tried lots of things, but there is no way I can catch a KeyEvent within the command line...
    Souk

    Write your own input routine that internally reads a character at a time instead of a complete line or string and test the character for tab etc. and take the appropriate action. This also means you will have to/can implement editing keys.
    If there is a Java class that has an dictionary to compare input with I do not know, because the last time I wrote a tool without gui was in 1985.
    Regards
    SH

  • Can the command line application be extended?

    I would like to add command like keys etc..Is this possible?

    Correct me if I am wrong, from what I understand, beanShell is a scripting language which interprets the Java language. Yes, I could connect to coherence cache and run any commands I want. However, that won't include the commands which are already prefined in the tangosol command line, would it?
    If I am wrong, I would appreciate if you could show me an example of beanShell and the command line application.

  • Microsoft Server Core Command Line

    Can someone tell me how to bring up the Microsoft Server Core Command Line after it has been closed?
    Thank you.

    see:
    http://jorgequestforknowledge.wordpress.com/2010/10/09/server-core-behind-firewall-with-very-limited-access/
    <o:p></o:p>
    Cheers,<o:p></o:p>
    (HOPEFULLY THIS INFORMATION HELPS YOU!)
    Jorge de Almeida Pinto | MVP Identity & Access - Directory Services
    * This posting is provided "AS IS" with no warranties and confers no rights!
    * Always evaluate/test yourself before using/implementing this!
    * DISCLAIMER: http://jorgequestforknowledge.wordpress.com/disclaimer/
    ################# Jorge's Quest For Knowledge ###############
    ###### BLOG URL: http://JorgeQuestForKnowledge.wordpress.com/ #####
    #### RSS Feed URL: http://jorgequestforknowledge.wordpress.com/feed/ ####
    -------------------------------------------------------------------------------------------------------<o:p></o:p>
    "Christian-B" wrote in message news:[email protected]...
    Can someone tell me how to bring up the Microsoft Server Core Command Line after it has been closed?
    Thank you.
    Jorge de Almeida Pinto [MVP-DS] (http://jorgequestforknowledge.wordpress.com/)

  • Command line applications

    Hi,
    does anybody know how to create a class that represents a command line application that would use a previously created class's methods and variables?
    Jamie

    Is this what you're after?
    You can compile these 2 together as is with InUser.java - though better to compile the class In.java seperately then you will be able to use it elsewhereimport java.io.*;
    // Note: this class has NO "main()" so it cannot work alone
    class In{
       private static InputStreamReader isr = new InputStreamReader(System.in);
       private static BufferedReader in = new BufferedReader(isr);
       public static void prompt(String s) {
          System.out.print(s);
          System.out.flush();
       public static String getString(){
          String str = null;
          try {
             str = in.readLine();
          catch (IOException e){
             System.out.println("Error: In.Read() "+e.getMessage());
             System.exit(0);
       return str;
       public static int getInt(){
          int ii = 0;
             try {
             ii = Integer.parseInt(in.readLine() );
          catch (NumberFormatException nfe){
             System.out.println("Error: the number is not convertable to an int");
          catch (IOException e){
             System.out.println("Error: In.Read() "+e.getMessage());
             System.exit(0);
       return ii;
       public static double getDouble(){
          double dd = 0D;
             try {
                dd = Double.parseDouble(in.readLine() );
             catch (NumberFormatException nfe){
                System.out.println("Error: the number is not convertable to a double");
             catch (IOException e){
                System.out.println("Error: In.Read() "+e.getMessage());
                System.exit(0);
       return dd;
    // And the user with file with a main signature:
    public class InUser{
       public static void main(String[]args){
          System.out.println("\nExample 'In.java' with Readln:");
          In.prompt("Please enter your name: ");
          String name = In.getString();
          System.out.println("Welcome "+name); 
          In.prompt("Please enter a whole number: ");  
          int ii = In.getInt();
          System.out.println("The number squared is "+(ii*ii)); 
          In.prompt("Please enter a fraction number: ");  
          double dd = In.getDouble();
          System.out.println("The numbers square root is " +Math.sqrt(dd));    
    }

  • Shutting down Server from command line in WebLogic 5.1

    Cannot shut down the WebLogic Server using the command line:
    java weblogic.Admin URL SHUTDOWN system password
    Errors out saying:
    java.io.InvalidClassException:
    weblogic.security.acl.internal.AuthenticatedUser; Local class not
    compatible: stream classdesc serialVersionUID=6699361079932480379 local
    class serialVersionUID=2825328378974757378
    at
    java.io.ObjectStreamClass.validateLocalClass(ObjectStreamClass.java:523)
    at java.io.ObjectStreamClass.setClass(ObjectStreamClass.java:567)
    at
    java.io.ObjectInputStream.inputClassDescriptor(ObjectInputStream.java:936)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:366)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at
    java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1186)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at
    weblogic.socket.JVMAbbrevSocket.readMsgAbbrevs(JVMAbbrevSocket.java:518)
    at
    weblogic.rjvm.MsgAbbrevInputStream.prime(MsgAbbrevInputStream.java:134)
    at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:610)
    at
    weblogic.rjvm.ConnectionManagerClient.handleRJVM(ConnectionManagerClient.jav
    a:34)
    at
    weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:630)
    at
    weblogic.socket.JVMAbbrevSocket.dispatch(JVMAbbrevSocket.java:393)
    at weblogic.socket.JVMSocketT3.dispatch(JVMSocketT3.java:342)
    at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:247)
    at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Currently using Service Pack 8.
    Has anyone faced this problem before? Any solutions?
    Thanks.
    MN

    Hi Murali,
    Are you using 128bit version of the server for wls5.1 ? if so have you
    correctly installed the Service pack 8 ?
    Can you show me the result of
    java weblogic.Admin url VERSION
    Murali Nanchala wrote:
    Cannot shut down the WebLogic Server using the command line:
    java weblogic.Admin URL SHUTDOWN system password
    Errors out saying:
    java.io.InvalidClassException:
    weblogic.security.acl.internal.AuthenticatedUser; Local class not
    compatible: stream classdesc serialVersionUID=6699361079932480379 local
    class serialVersionUID=2825328378974757378
    at
    java.io.ObjectStreamClass.validateLocalClass(ObjectStreamClass.java:523)
    at java.io.ObjectStreamClass.setClass(ObjectStreamClass.java:567)
    at
    java.io.ObjectInputStream.inputClassDescriptor(ObjectInputStream.java:936)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:366)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at
    java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1186)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:386)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:236)
    at
    weblogic.socket.JVMAbbrevSocket.readMsgAbbrevs(JVMAbbrevSocket.java:518)
    at
    weblogic.rjvm.MsgAbbrevInputStream.prime(MsgAbbrevInputStream.java:134)
    at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:610)
    at
    weblogic.rjvm.ConnectionManagerClient.handleRJVM(ConnectionManagerClient.jav
    a:34)
    at
    weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:630)
    at
    weblogic.socket.JVMAbbrevSocket.dispatch(JVMAbbrevSocket.java:393)
    at weblogic.socket.JVMSocketT3.dispatch(JVMSocketT3.java:342)
    at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:247)
    at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Currently using Service Pack 8.
    Has anyone faced this problem before? Any solutions?
    Thanks.
    MN

  • Develop a command-line application using LabVIEW

    Hi,
             Is it possible to generate a command line(CLI) executable using LabVIEW? This CLI exe will be called with certain command line arguments by another application (written in Visual Basic). The LabVIEW Run time engine can be installed separately on the host PC.
    Thanks for your help
    Siddharth 
    Solved!
    Go to Solution.

    There is an example that ships with LabVIEW that shows how to read the command line arguements from an application. THe name of the VI is CommandLine.vi. It is extremely basic though. The power of command line arguements really comes from how you define and parse them. I recommend allowing your command line arguements to be order independent and that they require a label. For comand lines I prefer to use a single letter for the label. Full words are nice but then your command line gets very long. For the applications that we write we allow both the '/' (DOS/Windows style) and the '-' (Unix/Linux style) to designate a command line label.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • SSDT-BI for SQL Server 2014, Command line(silent unattendant automatic) installation script/steps

    Hi,
    I have downloaded SSDT-BI software and looking for commandline steps,config file for this.
    http://www.microsoft.com/en-us/download/details.aspx?id=42313
    Any one have Command line installations steps for SSDT-BI automatic(command line) installation for SQL Server 2014 with giving the files location,where to install.....etc, i mean config.xml.
    I found below but not sure it will work or not. If any one have working correct command line script, please reply on this forum.
    Looking for config.xml file, i searched online and did not find any where with clear config.xml file details.
    --Found below from link and not sure it will work or not
    http://blogs.technet.com/b/ilikesql_by_dandyman/archive/2013/03/10/how-to-automate-the-installation-of-sql-server-ssdt-office-2013-and-visual-studio-2012.aspx
    setup.exe /ACTION=INSTALL /FEATURES=SSDTBI_VS2012 /Q /IACCEPTSQLSERVERLICENSETERMS /norestart
    thanks in advance.

    Hi SQLDBA321,
    The SSDT-BI is automatically installed under xxx:\Program Files\Microsoft SQL Server\. Now matter in GUI or command line, we can't change the path. Because SSDT is a feature of SQL Server, not a feature of Visual Studio. It just use the Visual
    Studio Shell. So SSDT will only be installed with SQL Server.
    Reference:
    Install SQL Server Data Tools - Business Intelligence for Visual Studio 2013
    If you have any question, please feel free to ask. 
    Simon Hou
    TechNet Community Support

  • Error: starting remote managed server from command line

    I have enabled SSL on the admin server, and configured/added the managed server
    via my admin server console. However, when I attempt to start the managed server
    via cmd line (script) on the remote machine, I get the following message:
    Starting WebLogic Server ....
    Connecting to http://adminservermachine:7001...
    <Nov 18, 2002 11:42:28 AM EST> <Emergency> <Configuration Management>
    <Errors detected attempting to connect to admin server at wk-gferguson:7001 during
    initialization of managed server ( null:7001 ). The reported error was: < weblogic.security.acl.DefaultUserInfoImpl
    Start server side stack trace:
    java.lang.ClassCastException: weblogic.security.acl.DefaultUserInfoImpl
    at weblogic.kernel.BootServicesImpl.authenticate(BootServicesImpl.java:189)
    at weblogic.kernel.BootServicesImpl.invoke(BootServicesImpl.java:145)
    at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:620)
    at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:581)
    at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.java:164)
    at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:640)
    at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:454)
    at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:643)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    > This condition generally results when the managed and admin servers are using
    the same listen address and port.>
    <Nov 18, 2002 11:42:28 AM EST> <Emergency> <Server> <Unable to initialize the
    se
    rver: 'Fatal initialization exception
    Throwable: weblogic.management.configuration.ConfigurationException: weblogic.se
    curity.acl.DefaultUserInfoImpl

    This particular log entry looks like your problem:
    <Jan 8, 2010 11:33:30 PM PST> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "Default". The address 10.249.22.43 might be incorrect or another process is using port 20014: java.net.BindException: Cannot assign requested address.>
    Check using netstat to see if that port is already in use.
    Shared libraries don't need to be on the classpath, they are deployed similar to applications, so I'm confused by your comment about putting them on the classpath. I assume you're using Node Manager to start the server from the AdminConsole, if you want to use a difference classpath either use the StartupScriptEnabled=true in nodemanager.properties OR put the extra classpath entries on the Server Start tab in the console.

  • Error starting managment server from command line

    I tried to start the managment server from the command line like this:
    <jvm_home>/bin/jrcmd <pid start_management_server
    and I'm getting the following error:
    <pid> Not enough storage is available to run this command
    The system has plenty or resources. I'm unsure what storate the command refers too.
    The pid was found by using tasklist /svc at the command line to find the pid matching the domain service name.
    this is jrockit 1.42_13

    What operating system are you on? What is the complete version of JRockit ("java -version" will tell)?
    Regards,
    /Staffan

  • Command Line Application Usage

    Can I use the command line app (coherence.cmd) to query values in an out of process cache? If so how would I go about that?

    Hi Karim,
    Let's assume you have a distributed cache named "Test1" on the cache servers. You can start the command line app on a cache client (localstorage=false) and join the same named cache that is running on the cache servers by typing the following command at the prompt:
    cache Test1
    From the prompt you can type the following command to display cache entries in this particular cache:
    list
    A list of available commands can be found by typing "help" at the prompt or here on the website here.
    I hope this helps.
    Best regards,
    Gary
    Tangosol, Inc.

  • How to setup my c# command line application to a remote oracle database?

    Hi all,
    I will like to ask, how do I setup my C# program to be able to connect to a remote oracle database?
    More information:
    - I have an oracle database express version running on my PC.
    - I am able to run and get data from the database on the same PC.
    - But when I bring my application over to another PC within the same LAN. It does not run and given me an error stating "The provider is not compatible with the version of Oracle client".
    What do I need to do on the Client PC so that I am able to communicate back to the server database?
    Many thanks!

    This is the XE forum, not the .NET programming forum, but this might be helpful:
    http://www.codeproject.com/Articles/18692/Instant-Oracle-Using-C

  • Changing security option of admin server thru command line

    Dear All,
    As you can understand , we have accidently turned on SSL security =on on the admin server and we need help to turn it off through command. I will really appreciate if someone can help on this....

    Hi All,
    Thanks for your replies. I have managed to start the server without token. Now whenever I click or try to configure through GUI e.. "Secuirty: Request new certificate" or "Edit listen socket from preferences" . I am getting HTTP: 500 error.
    The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed.
    Please try the following:
    Open the vus304:8888 home page, and then look for links to the information you want.
    Click the Refresh button, or try again later.
    Click Search to look for information on the Internet.
    You can also see a list of related sites.
    HTTP 500 - Internal server error
    Internet Explorer
    And on ERROR log files says
    [15/Aug/2005:14:57:19] failure (14809): for host xxxx trying to GET /https-admserv/bin/security, cgi_scan_headers reports: the CGI program /opt/iplanet/servers/bin/https/admin/bin/security did not produce a valid header (program terminated without a valid CGI header. Check for core dump or other abnormal termination)
    [15/Aug/2005:15:11:03] failure (14809): Internal error: Unexpected error condition thrown (java.lang.StackOverflowError,no description), stack: java.lang.StackOverflowError
    Thanks in Advance
    Regards

  • Connecting SnapManager to Local SQL server using command line

    Are there any commands (PowerShell preferably) that can be used to connect SnapManager to Local SQL Server and configure it with mostly default configuration? I tried the import-config command using SnapManager for PowerShell, it gives configuration successful import message but does not establish connection to SQL server. Running the new-backup or clone-database commands after importing gives the message that SQL server is not connected and configured.  

    After more investigation and even more chocolate, we've identified the problem and it's now working. For anyone else who strikes this problem in future, here's something to check/consider/try:
    Even though Squirrel SQL Client was connecting and working ok using the MS JDBC driver (v 3.0), it recorded this in its logs:
    Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the INTERSECT operation.
    We've found that the open source jTDS driver does not have the same issue as the Microsoft one.
    We've installed the current jTDS driver, recorded the driver name (net.sourceforge.jtds.jdbc.Driver) and the JDBC URL (jdbc:jtds:sqlserver://<hostname>:1433/<database>) and the connection is now working fine.
    Hope this helps other people...
    Thanks to those of you who offered suggestions and things to check...much appreciated.
    Robyn

  • PHP include path for command line applications

    I'm packaging my first contribution to the AUR: a package for Boris, a tiny REPL for PHP.
    The issue I'm finding is that it includes a file relative to where the bin is and it somewhat conflicts with Arch's recommendation for using /usr/lib/pkgname for shared files. You can see the offending line here: https://github.com/d11wtq/boris/blob/ma … n/boris#L6
    I fixed it with sed, but I'm not happy with the solution I wrote. I hoped for PHP shared libraries to have a $PATH such as Python packages, but it seems like it doesn't (by default). See my pkgbuild here: http://sprunge.us/TYgj

    I do it using the registry.  Here is a post where I have a AutoIt EXE scan for what versions of the runtime engine are installed.  And then it runs an EXE that is compatible with the run-time engine or development environment installed.
    http://lavag.org/topic/17803-run-exe-based-on-installed-run-time/
    But you can also do it from a VI.  Attached is a VI that will find the Run-Time versions installed and development with path to the EXE/DLL.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.
    Attachments:
    LabVIEW Versions Installed Registry.vi ‏37 KB

Maybe you are looking for

  • Mobile device support won't reinstall?

    my parents bought me a new computer as an early Christmas present (it's Windows 8.1), but iTunes 12 wasn't loading properly when I installed it - so I uninstalled all of the components using the Apple-recommended method and reinstalled iTunes... exce

  • Importing LP video recording

    I can't seem to be able to import LP video recordings from a Samsung camcorder. No problem with SP recording, I am using firewire. The video works fine on the camcorder, but when imported manually into iMovie 08 becomes twice as fast or jumps and mis

  • From where i can buy the latest Test Executive ???

    I am looking for the latest Testexecutive Toolkit for Labview (Example: 5.1.1)for free of Cost or for Buy. What ever is possible. Thank for Tips from where i can pick this tool

  • What's the best way to use business objet?

    Hi all, Anybody can explain what's the more efficient way to retrieve data from the database by using business objects? I would like to load business partners information, but I'm using SBob object and recordset and it is very slow... If anybody have

  • T420i integrated webcam issue

    Hello, I have a typical problem with my lenovo thinkpad T420i. I have my settings done properly and i have also tried uninstalling and installing the latest drivers but it webcam is not working properly. Can you please help me to fix it?