Please help (Simple chat programme)

I made a simple chat programme.
It has a server object and it can handle several client.
It is working properly and can use to chat.
I have some problems. can you please help me.
1.What is the best method to read input and outputStreams
I have used inputStream.readUTF()/outputStream.writeUTF() methods and
also I have used bufferedReader.readLine()/Printwriter.println() methods.
I don't know about other methods.So please tell me what is the best and new out of these two.
And are there any method which is better than these two.
2.Is there any way to get more details from input and output streams
Here more details means Fontcolor,Size etc;
by now I'm adding them in to my output streams and filtering them when rea input stream.
I'm getting other details(Fontcolor,Size) and add them all to a string.
that means if client type "hi" my string will be something like this
"12ff0000hi".
When read the input stream i make a char[] and take first 2 chars to integer next six to a string and rest
to another string.
I think now you can understand my concept. So I'll not tell every thing.(if you want i can fully describe it)
I' feeling this is very bad way to do that kind of work.
Am i correct?
so can you give me some hints or examples to do such kind of things.

Here's a simple DataInputStream program that talks to itself. It runs the server as a seperate thread.
import java.io.*;
import java.net.*;
public class DataXfer
        private int port = 5050;
        private String address="127.0.0.1";
        public static void main(String args[])
                new DataXfer().startup();
        // run the server code as a thread and then run the client code
        private void startup()
                new Thread(new Runnable(){public void run(){listen();}}).start(); // start server thread
                synchronized(this){
                        try{wait();}catch(InterruptedException ie){}    // wait until its ready
                connect();                                      // do client stuff     
        private void listen()
                ServerSocket ss = null;
                Socket us = null;
                boolean running = true;
                try{
                        System.out.println("Listening on port "+port);
                        synchronized(this){notify();}               // tell client we're ready
                        ss = new ServerSocket(port);    // listen for incoming connection
                        us = ss.accept();
                        ss.close();
                        ss = null;
                        DataInputStream dis = new DataInputStream(us.getInputStream());
                        try{
                                while(running){
                                        int len = dis.readShort();      // read the count
                                        byte [] ba = new byte[len];
                                        int rlen = dis.read(ba,0,len);  // read the data
                                        System.out.println("len="+len+" read length="+rlen);
                                        if(rlen < len){
                                                us.close();
                                                running = false;
                                        else{
                                                for(int j = 0; j<rlen; j++)System.out.print(ba[j]+" ");
                                                System.out.println("");
                        catch(EOFException ee){System.out.println("EOF");}
                catch(IOException ie){
                        ie.printStackTrace();
                        System.exit(0);
                finally{
                        if(ss != null)try{ss.close();}catch(IOException se){}
                        if(us != null)try{us.close();}catch(IOException ue){}
        private void connect()
                Socket us=null;
                byte [] ba = new byte[31];
                for(byte i = 0; i<ba.length; i++)ba=i;
try{
System.out.println("Connecting to "+address+":"+port);
us = new Socket(address, port); // make connection
System.out.println("Connected");
DataOutputStream dos = new DataOutputStream(us.getOutputStream());
for(int j = 0; j<ba.length;j+=10){
dos.writeShort(j); // write the count
dos.write(ba,0,j); // write the data
System.out.println("sent "+j+" bytes");
try{Thread.sleep(1000);}catch(InterruptedException ie){}
catch(IOException ie){ie.printStackTrace();}
finally{
if(us != null)try{us.close();}catch(IOException ue){}
For an example of a chat program using NIO see my NIO Server Example. That example is neither short nor simple.

Similar Messages

  • *****Please Help Simple Java Corba Problem*****

    This is probably a really simple one but I am very cheased off about it.
    I run my applications on a Win XP pro OS, and when I go to type in nameserv it gives me the following error I hava downloaded and installed JDK 1.4.1. I also have the JRE, And jbuilder personal edition ver 8.....And J2RE 1.4.1
    C:\Documents and Settings\Ash>nameserv
    Exception in thread "main" java.lang.NoClassDefFoundError: java/util/HashSet
    at com.inprise.vbroker.orb.ORB.<init>(ORB.java:81)
    at org.omg.CORBA.ORB.create_impl(ORB.java)
    at org.omg.CORBA.ORB.init(ORB.java)
    at com.inprise.vbroker.naming.ExtFactory.main(ExtFactory.java:126)
    my classpath looks like this
    .;C:\VisualCafePDETrial\BIN\COMPONENTS\SYMBEANS.JAR;C:\VisualCafePDETrial\JAVA\LIB\CLASSES.ZIP;C:\VisualCafePDETrial\JAVA\LIB;C:\BES\bin;C:\j2sdk1.4.1\lib\tools.jar;.;
    and my path is
    C:\VisualCafePDETrial\BIN;C:\VisualCafePDETrial\JAVA\BIN;C:\BES\binC:\j2sdk1.4.1\lib\tools.jar;.;
    what on earth am I doing wrong ??
    Also when I goto compile any java program it comes up with the following
    C:\DOCprac\Prac5\bank_naming>vbmake
    Building the bank_agent example ...
    Exception in thread "main" java.lang.ClassCastException
    at com.visigenic.vbroker.tools.idl2java.main(idl2java.java:30)
    Symantec Java! JustInTime Compiler Version 3.00.021(i) for JDK 1.1.x (TRIAL VER)
    Copyright (C) 1996-98 Symantec Corporation
    compiling: Client.java
    Client.java:2: Package org.omg.CORBA not found in import.
    import org.omg.CORBA.*;
    ^
    Client.java:3: Package org.omg.CosNaming not found in import.
    import org.omg.CosNaming.*;
    ^
    2 errors
    Symantec Java! JustInTime Compiler Version 3.00.021(i) for JDK 1.1.x (TRIAL VER)
    Please help I am really desperate to sort this one out. Can you give me some detailed info on how I would do this.>>>Thanx in advance

    You have 2 sets of errors, at least.
    The first is : Exception in thread "main" java.lang.NoClassDefFoundError: java/util/HashSet which is that you have not imported the class for hashset.
    The second is that the import of the jars is probably wrong, hard to say without seeing code.

  • Please help - simple drop down box

    i am very new to this - i have just opened the app for the first time - i have to create this form by tomorrow!!
    I have a simple list in access - it contains 15 fields in the table - very simple.  I need EVERY drop down box on the page to ref. this table to populate the list - which changes on a daily basis.  There will be a total of 35 drop down boxes on the form - all pointing to the exact same CHANGING list.
    PLEASE HELP!!!

    You can enter the sales tax rate for each province as the export value and
    then use the drop-down field directly in your calculations.
    On Thu, Feb 5, 2015 at 6:06 PM, jennam90934439 <[email protected]>

  • PLEASE HELP - Simple movieclip click to URL is NOT working... Why???

    I've tried over 4 tutorials to make my movieclip link to a URL. It's just not working for some reason...
    Here is my code.
    ondemand.addEventListener(MouseEvent.CLICK,goThere);
    function goThere(e:MouseEvent){
    var request:URLRequest = new URLRequest("www.money.net");
    navigateToURL(request);
    ondemand.buttonMode = true;
    ondemand.useHandCursor = true;
    stop();
    ondemand is a movieclip instance with a PNG image of text.
    This should work!! There are no compilation errors...
    No mouse cursor change on hover... just like nothing is there.
    Please help...   

    I am overall confused by your description of what you have, especially when you get to doubleclicking the movie and assigning code in it.
    In any case, you need to assign the name (the same name) to every instance of a tweened object. The lack of a name in earlier frames will be inherited by instances in subsequent frames
    I'm confused about your mention of 3 instances being in the library.  Just for clarity, an instance is a library symbol (or an object) that you place on the stage.  If you place two of the same objects on the stage, then you have 2 instances.  Items in the library are instance-wanna-bes.  If you have three different symbols in the library, and you are tweening them as if they were the same, your tween can't possibly work.

  • Please help, simple requirement using Layers, there must be a solution?!

    Hi, I am using a trial version of Adobe Acrobat X Pro, with a view to purchasing the program for several members of my staff. However, it does not seem to be able to do something fairly simple which I need.. unless someone can help please! I work with maps that come to me as pdfs, and I need to be able to add text items (with arrows) to these maps that are then visible only when certain layers are selected in the new pdf, so that the three sub-contractors I distribute our completed maps to can view either all the text/arrows we have added, or only the info relevant to them if they prefer.
    We've tried saving three maps each with different info on then importing them as three new layers to the original map, but that doesn't give the functionality to interchange views and it's very time-consuming. We've tried using InDesign on trial version but the layers are messy in the exported pdf (adds obsolete layers as a 'feature', the administrator in the InDesign forum said). I've experimented with the pre-flight functions in Acrobat Pro but found them not so user-friendly. Is there a way to select some text items and export them to a tiff with transparent background, then import these as a new layer perhaps? Or please someone tell me I'm being stupid and this was addressed in a simple function since Acrobat v2?!

    Thanks all, I do appreciate these feedbacks, but I am struggling to understand the analogy between a car and iPad. When buying a car in a different location, you are adviced of all the features and then you take a decision if you are okay with it or not. But this was not the case with the iPad. I only found that out after a while being that it is my first iPad. Of course I will not make this same mistake again but I find it challenging that there are no provisions for correct this facetime issues for none residents.
    I assume as you have all continiously stated that I may not make a difference on this as a lone voice but if Apple can consider making it possible for none residents or insisting that this is explicitly mentioned at the point of sales in Duabi for Apple products then it begins to be fair. In the car example, you are at least sure that certain feutures are unavailable and do not realize this after the purchase is done and you are back to your home country.
    I also think saying "Dubai iPad" might not be correct as I always believed I was dealing with Apple product which out to give same level of satisfaction accross the globe....
    I am a frequent traveller and really it would not have been inconveniencing not to buy this iPad when I did as I could have bought it from the UK, US or SA.....but just thought iPad was iPad everywhere.
    Again why do I really have to buy another one? These cost money. And I do not have a shop to sell it as a non-facetime ipad. I would have expected apple center to receive these ipads and replace them or correct them.....
    I am just listing this out incase the Apple team can see some sence in what I am saying. There are a number of ways this current situation would have been avoided for people like me.
    Regards

  • Please help bbm chat history

    Hi,
    I'm new to this forum and I'm hoping you can help me. I have been having a conversation with one of my messenger contacts and wanted to check something that was mentioned earlier in the day but was unable to do so. I have history turned on and set to save to my device. I checked the chat history and one part of my conversation seems to be missing whilst the rest is there...this is only the case for this contact as I have full histories for all other contacts. Please can somebody help me with this!
    Thanks in advance....
    K.

    With regard to saving BBM chat history on the Z10:
    1. Can saved BBM chat history be searched (other than by manually scrolling through vast amounts of text)?
    2. Can saved BBM chat history be transferred, let's say, as a text file, for archiving and searching by some other means / on some other platform?
    2.a. I understand that one can "email a BBM chat", but only a handful of the latest lines of a chat are incorporated into an email - not useful if one is looking to copy older excerpts?
    2.b. Where is BBM chat history saved? Device? SD card? Is there a directory path that we can follow to access the history?
    3. What is the purpose of saving all of this history if it cannot be efficiently accessed / searched / archived / used?
    Thanks for any insight.

  • Please help, simple question about Smart Playlists and Live Updating

    PLEASE for some reason I've never gotten an answer on this.
    I have a Smart Playlist called "Recently Played" with Live Updating. No matter how I set the parameters, the most recently played *song will ALWAYS appear on the bottom of the list when using my iPhone on the go.* I bolded that because I want you to be aware I'm not talking about on iTunes - I'm aware you can change how the list is viewed on iTunes.
    When using your iPod/iPhone on the fly and Live Updating is enabled, is there any way to make the most recently played song appear at the very top???
    Thanks so much

    Haven't seen that problem before but try the following: in iTunes, right-click the playlist name and enable the option "Copy to Play Order." Then sync.
    The normal use of "Copy to Play Order" when you have the playlist displayed in iTunes in some sort order, but you want it to display in the iPod in shuffled order (as it will actually play). Different problem than you are observing, but the same thing "might" help.... Let us know.

  • Please help, simple flash intro

    Hello,
    I have an intro page which consists of two layers. one with
    an image that fades in the other with the stop action.
    When I upload the movie to the site the loading time is 15
    seconds (blank screen)
    Please could some one help me with a adding a preloader
    layer? so that veiwers know to wait. I can't seem to get one to
    work through tutorials.
    Thanks in advance.

    What you would need is more something like preload frames.
    Evry frame will/can be displayes only after its content has
    been (down-)loaded, so you have to make a frame without the image
    before the frame with the image.
    A frame with text like "pleas be patient image is loading",
    that extends (layer-wise) to the frame where your image appears
    first would be the simplest solution.

  • Please help:  Simple AD Provisioning with OIM issue

    Hi everyone,
    Hopefully someone can lend a helping hand. I am trying to provision to AD, but I am getting the following error:
    16:21:50,937 INFO [STDOUT] Running Get Attribute Map
    16:21:51,500 INFO [STDOUT] Running Get Path
    16:21:51,546 INFO [STDOUT] Running Create User
    16:21:51,609 ERROR [ACTIVEDIRECTORYCONTROLLER] Problem creating object: javax.na
    ming.NameNotFoundException: [LDAP: error code 32 - 0000208D: NameErr: DSID-031001C6, problem 2001 (NO_OBJECT), data 0, best match of:
            'DC=HappyGoLucky,DC=com'
    ]; remaining name 'cn=Jeff Chang'
    I have imported all XML files and copied the necessary jar files to the xellerate\javatasks and xellerate\ext folders. Additionally, I fully configured the IT Resource (AD Server) and successfully compiled the adapter via Adapter Manager. FWIW, I tested my IT Resource settings in Softerra LDAP Browser successfully. I am NOT using any type of approval workflow. The failure message occured after I created an Xellerate User and tried to provision a new AD resource. The IT Resorce is using dc=happygolucky,dc=com as the root context (which means it should provision to cn=users,dc=happygolucky,dc=com) and I am not using SSL.
    I am using JBoss 4.02, Windows Server 2003, and Oracle DB.
    Any help would be greatly appreciated.
    Thanks,
    Jeff Chang
    Message was edited by:
    user555460

    I don't think AD Server Cert to the Java keystore is required.
    Anyway, besides that - I can tell you 1 problem. remaining name 'cn=Jeff Chang' is the problem area. Your remaining name should be something like cn=Jeff Chang, ou=WhateverOu,DC=HappyGoLucky,DC=com .
    If you are able to add a user with the same credentials via LDAP Browser, this should work. I can even share a piece of code for doing the same:
    public String createUser(String cnvalue, String fname, String lname, String treevalue){
              String rtnval="EXECUTION_SUCCESS";
              String treenodevalue="ou=WhateverOu,DC=HappyGoLucky,DC=com";
              if(treevalue!="")
                   treenodevalue=treevalue;
              try {
                   BasicAttributes attrs      = new BasicAttributes();
                   BasicAttribute ocs           = new BasicAttribute("objectClass");
                                                 ocs.add("top");
                                                 ocs.add("person");
                                                 ocs.add("rajnishbhatia19Class");
                   attrs.put(ocs);
                   attrs.put(new BasicAttribute("cn", cnvalue));
                   attrs.put(new BasicAttribute("sn", lname));
                   //attrs.put(new BasicAttribute("displayName", fname+" "+ lname)); // I named this custom attribute - your schema might not have it.
                   String fulldn="cn="+cnvalue+","+treenodevalue;
                   getContext().createSubcontext(fulldn, attrs);
              catch (Exception ex) {
                   rtnval="ERROR: "+ex.getMessage();
                   ex.printStackTrace();
                   return rtnval;
    I am also using this code on JBoss 4.02, Windows Server 2003, and Oracle DB environment. I have used this code to create user in Sun One DS & ADAM. I'm sure it should be consistent for AD as well.
    Hope this helps.

  • Please help: simple copying and pasting pictures

    I want a picture off of a website..when i highlight it and press save as...it saves it as a web archive not a picture format! I just want to __copy and paste__ images off of the internet..why am i having such a hard time?
    the main reason i want the picture is to have it as a screensaver? i dont know if that information helps or not...

    Hi
    Welcome to Apple Discussions
    i want the picture is to have it as a screensaver?
    Do you mean as a Desktop picture? If so, per Neil, right click to open the Contextual Menu, then select "use image as Desktop picture" (I believe this feature is the same in Safari 3.0.4 in either Tiger or Leopard). This will automatically place the image as your Desktop picture. The larger the image size the better the image resolution on your screen.
    Message was edited by: Hawaiian_Starman

  • Please help, simple query not working

    Have the following script that I would like to run at multiple sites and create table columns if necessary:
    DECLARE
    table_name VARCHAR2 (30) := 'SITE_STATISTICS';
    column_name VARCHAR2 (30) := 'SITE_MONTH';
    column_data_type VARCHAR2 (30) := 'DATE';
    column_count INTEGER;
    dynamic_sql VARCHAR2 (4000);
    BEGIN
    SELECT COUNT (1)
    INTO column_count
    FROM SYS.USER_TAB_COLUMNS utc
    WHERE utc.table_name = table_name AND utc.column_name = column_name AND utc.data_type = column_data_type;
    SYS.DBMS_OUTPUT.ENABLE (4000);
    IF column_count = 0 THEN
    dynamic_sql :=
    ALTER TABLE SITE_STATISTICS ADD (SITE_MONTH DATE);
    EXECUTE IMMEDIATE dynamic_sql;
    ELSE
    DBMS_OUTPUT.put_line ('Not running Dynamic Sql, found ' || column_count || ' corresponding rows in sys.user_tab_columns');
    END IF;
    END;
    EXIT;
    At a given site I do not have the given column, and running the select from sys.user_tab_columns manually returns 0 rows. However, when I run this script it outputs the following:
    Not running Dynamic Sql, found 128 corresponding rows in sys.user_tab_columns
    What's going on!?

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> create table abc (c1 number(10));
    Table created.
    SQL> DECLARE
      2     table_name1                   VARCHAR2 ( 30 ) := 'ABC';
      3     column_name1                  VARCHAR2 ( 30 ) := 'SITE_MONTH';
      4     column_data_type1             VARCHAR2 ( 30 ) := 'DATE';
      5     column_count                  INTEGER;
      6     dynamic_sql                   VARCHAR2 ( 4000 );
      7  BEGIN
      8     SELECT COUNT ( 1 )
      9       INTO column_count
    10       FROM SYS.user_tab_columns utc
    11      WHERE utc.table_name = table_name1
    12        AND utc.column_name = column_name1
    13        AND utc.data_type = column_data_type1;
    14  
    15     SYS.DBMS_OUTPUT.ENABLE ( 4000 );
    16  
    17     IF column_count = 0 THEN
    18  
    19        dynamic_sql :='ALTER TABLE ABC ADD (SITE_MONTH DATE,SHIP_CONTANK INTEGER,SHIP_CONRAIL INTEGER)';
    20  
    21        EXECUTE IMMEDIATE dynamic_sql;
    22     ELSE
    23        DBMS_OUTPUT.put_line (    'Not running Dynamic Sql, found '
    24                               || column_count
    25                               || ' corresponding rows in sys.user_tab_columns'
    26                             );
    27     END IF;
    28  END;
    29  /
    PL/SQL procedure successfully completed.
    SQL> desc abc
    Name                                      Null?    Type
    C1                                                 NUMBER(10)
    SITE_MONTH                                         DATE
    SHIP_CONTANK                                       NUMBER(38)
    SHIP_CONRAIL                                       NUMBER(38)

  • Context help (please help, simple question i think)

    Hi, on my webserver, I have a nested tag that goes:
    <Host name="www.mydomain.com">
    <Alias>domain.com</Alias>
    <Context docBase="/home/domainacct/public_html/jsp" path="/jsp" reloadable="true">
    </Context>
    </Host>
    When I use this setup, JSP works! I can access any http://www.mydomain.com/jsp/*.jsp
    But I don't want JSP files to be loadable only from the /jsp directory, as I would like
    to be able to do:
    <Host name="www.mydomain.com">
    <Alias>domain.com</Alias>
    <Context docBase="/home/domainacct/public_html" path="" reloadable="true">
    </Context>
    </Host>
    so that I can access jsp files like: http://www.mydomain.com/test.jsp
    But when I try that setup it doesn't work.
    Do you guys know how I can do this? Thanks.

    nope u can't do that i far as i know.
    the context docBase should be the actual path to the folder. so if your webapp is in C:\TOOLS\webapps\Development than ur docBase is Development....like the root directory for example.
    the context tag as far as i know cannot be used for what u want 2 do. i don't think u can in Java.

  • HT201263 I set my passcode while falling asleep and now I can't remember it :(  PLEASE HELP

    Hi this is aboslutely insane, but I set my passcode last night while falling asleep and can't seem to remember it   I have no idea what I am supposed to do.  PLEASE HELP

    A simple search finds:
    iOS: Forgotten passcode or device disabled after entering wrong ...

  • How to modify below simple chat system?Please help!

    Dear,
    I have a ChatServer.java files as below. It is a round robin chating system. There are two client chatting. Now I want to modify below file that allow the discussion to keep going until one of the user input is "BYE" in uppercase without any preceding and trailing characters. After one user input of "BYE" will terminates everyone else including the server. How do I modifty? Please help!
    import java.io.*;
    import java.net.*;
    public class ChatServer.java
    // Valid PORT_NUMBER ranges from 1 to 65,535. However the numbers from 1 to 1023
    // are reserved, for example, 80 is reserved for http.
    private final static int PORT_NUMBER = 3030;
    public static void main (String[] args) throws IOException
    Socket socket1, socket2;
    DataInputStream dataIn1, dataIn2;
    DataOutputStream dataOut1, dataOut2;
    String line;
    System.out.println ( "\r\n-- Server Started --\r\n" );
    // We need to create a ServerSocket at a free port number.
    ServerSocket server = new ServerSocket ( PORT_NUMBER );
    // Calling the accept method, the server waits for a client to make a TCP connection.
    socket1 = server.accept ();
    socket2 = server.accept ();
    // ServerSocket is only needed to handle connection request. Once the connection
    // is made, the ServerSocket can be closed even the sockets remain open.
    // Normally, the ServerSocket won't be closed this early because real applications
    // are designed to handle arbitrarily many clients. However we only handle two.
    server.close ();
    try
    // There should be a pair of input and output streams for each socket.
    // The output stream of the server corresponds to the input stream of the client.
    // Therefore if we send a line on the output stream, the client should read
    // the line in the corresponding input stream.
    dataIn1 = new DataInputStream (new BufferedInputStream (socket1.getInputStream ()));
    dataOut1 = new DataOutputStream (new BufferedOutputStream (socket1.getOutputStream ()));
    dataIn2 = new DataInputStream (new BufferedInputStream (socket2.getInputStream ()));
    dataOut2 = new DataOutputStream (new BufferedOutputStream (socket2.getOutputStream ()));
    for ( int i=0; i < 3; i++)
    // Read a line from the client 1
    line = dataIn1.readUTF ( );
    // Write a line to client 2
    dataOut2.writeUTF ( line );
    dataOut2.flush ( );
    // Show the line on the server's screen
    System.out.println ( "\r\nClient 1: " + line);
    System.out.flush( );
    // Read a line from the client 2
    line = dataIn2.readUTF ( );
    // Write a line to client 1
    dataOut1.writeUTF ( line );
    dataOut1.flush ( );
    // Show the line on the server's screen
    System.out.println ( "Client 2: " + line);
    System.out.flush( );
    catch (IOException ex)
    throw ex;
    finally
    System.out.println ("\r\n-- Shutdown --");
    socket1.close ();
    socket2.close ();

    In this section here do this:
    The chat client 1:
    // Show the line on the server's screen
    String printTheLine="\r\nClient 1:" + line;
    System.out.println (printTheLine);
    System.out.flush( );
    if(printTheLine.equals("\r\nClient 1:BYE"){
    //exit prog
    }Client 2
    // Show the line on the server's screen
    String printTheLine="\r\nClient 2:" + line;
    System.out.println (printTheLine);
    System.out.flush( );
    if(printTheLine.equals("\r\nClient 2:BYE"){
    //exit prog
    }All you have to do is exit the prog. I am not sure if you need in the .eguals part (when you are comparing the strings), the \r\n. Anyway, once you put the code to exit your prog in the if conditionals, it will exit if the output on the screen looks like:
    Client 1:BYE or
    Client 2:BYE
    If this helps, could I have some duke dollars?
    Virum

  • HT2515 When I'm on iChat, it doesn't show the video chat icon. When I try to change it, it tells me my camera doesn't support video chats. Please help :(

    When I'm on iChat, it doesn't show the video chat icon. When I try to change it, it tells me that my camera doesn't support video chats. Please help

    A lot of folks fix these kinds of issues with a simple re-start of the phone.
    Regards
    TD

Maybe you are looking for

  • Format Flat Report Output

    Hi All, I have a report whose output is as follows: Headings: Category     Description    1100TFTD         1100AFTD           1100TMTD         1100AMTD     1200TFTD   1200AFTD    1200TMTD   Data as rows: PACKING     Pkd Prod        1100  100.00    11

  • User defined message search criteria on ECC

    Hi Experts, I have configured UDMS-user defined message search under ECC (for message search in MONI) using T-code: SXMS_LMS_CONF and while defining extractors, I have selected both check boxes. 1. Extract during message processing 2. Extract with ex

  • Reg: Oracle Module to custom module movement

    Hello Team, Could you please understand the below requirement and give us some ideas on it. We have one module which is registered with Oracle where it has Oracle forms and reports. Now, we have license problems with them and planning to create it as

  • Build DC versus Build project

    Hi all, I have a Web Dynpro DC (managed by NWDI) in my developer studio. I'm wondering what the precise difference is between building the DC and building the project. Do I ever need to build the project at all? When I want to do direct deployment fr

  • How to use the wl61sp2 of scrollable resultsets

    wl61sp2 had already included mssqlserver4 , but it could not support for scrollable resultsets. How about using scrollable resultsets in the wl61sp2 or install the mssqlserver4v70rel510sp11 into the wl61sp2? If you can answer these questions,please h