How to know server received?

Hi all,
I am using JMS API to send message from client to AS 9.0. Its working fine.
But i dont know how the client program will know that the server received its message or not??
ie. is it possible the server acknowledge the message of the client??
There is some method like AUTO_ACKNOWLEDGE and CLIENTACKNOWLEDGE. I dont know how to implement ?? Can anybody help me if possible with piece of code??
Thank you,

The options for removing messages from the server after being downloaded with a POP account are as follows:
Right away.
After one day.
After one week.
After one month.
When moved from Inbox.
This is available with the account settings at Mail > Preferences > Accounts. Select the account.  Under the Advanced tab for the account preferences at Remove copy from server after retrieving a message. This must be selected along with When moved from Inbox. When selecting a message for deletion, the message is moved to the account's Trash mailbox.

Similar Messages

  • How to know server/node name inside a BPEL process in a clustered env

    We have a clustered environment of 4 nodes, we know that one of the BPEL Process on one of the nodes is not functioning normally. One way we isolated the problem is to test through Java Delivery API on each of the individual nodes through BPEL Console. However this is time consuming. If we want to implement an error handling mechanism, where we can format the name of the server/node of the cluster on which the BPEL process is getting executed it will be great. I couldn't find any Xpath Extension Function to retrieve the node /server name easily inside a BPEL process. There are functions to retrieve the domain, process name, version etc... but I'm trying to find something like ora:getRMIHostName() and ora:getRMIPort(). I can retrieve the few entries such as hostname.rmi from the return value of java.lang.System.getProperties () inside Embedded Java Code Step but not sure how safe it is to do so.

    Hi There,
    JMX can be used to discover all the names and addresses of managed servers in a cluster.
    find more information on this link: http://e-docs.bea.com/wls/docs81/jmx/index.html
    Let me know if works,
    Cheers

  • How can a Java server receive a text message?

    Through what mechanism can a Java server receive an incoming text message sent to a particular phone number? How would the server associate itself with that phone number, and what physical devices and APIs would be involved in processing the text message?
    I don't know how to get started with this requirement - would anyone here have had experience doing such a thing before? Perhaps you could point me in the right direction.
    Thanks.

    Many of those links provide information on sending SMS, but I'm still not sure what's involved in receiving an SMS message. Even if I'm able to find an appropriate API, I'm still somewhat confused - if someone sends a text message to a mobile phone number, how can our server access that text message (or how can that text message be redirected to our server rather than the mobile phone itself)?
    Thanks.

  • How to know oracle client or oracle server installed in m/c ?

    Hi all,
    Could any one tell me how to know whether oracle 10.1 s/w installed in my machine is client version or server . Is there any easy method..??
    Thanks in advance.

    Hi,
    Check the database / dbs folder exist in the $ORACLE_HOME if yes then SERVER else CLIENT.
    PS: Above is not a standard method, i am telling based on DIRECTORY.
    Regards,
    Taj

  • From report server database how to know reporting services server

    from report server database how to know reporting services server
    Thanks

    Hi Ajay,
    If I understand correctly, you want to know
    Reporting Services server name based on report server database. Based on my research, I find that the Reporting Services server name is the computer name which install the report server. So we can try to click Start button, right-clicking Computer,
    and then clicking Properties. Under Computer name, domain, and workgroup settings, you can find your computer name.
    Besides, the report server database is a SQL Server database that stores the following content:
    Items, Subscription and schedule definitions, Report snapshots and report history, System properties and system-level security settings, Report execution log data, Symmetric keys and encrypted connection and credentials for report data sources.
    For more information about report
    server database, please refer to the following link:
    http://technet.microsoft.com/en-us/library/ms156016.aspx
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine xiong
    Katherine Xiong
    TechNet Community Support

  • How to know login history/events of  Sap user from server

    how to know login history/events of  Sap user from server without operating users computer.
    Am using B1 2007A PL47 Forthshift(FSE version 8.5 SP03PL05)

    Hi,
    Check the thread
    Re: User login history SAP Business One
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • How to know portal server starting time

    Dear gurus
    How to know the portal system or portal process's  (server0/server1/SDM/dispatcher)  starting time or stopping time. like in Tcode: ST02 it will show the server started time
    as i want to know when it has restarted...
    Thanks in advance

    You can use the SAP MMC (windows application) or Java MMC online : http://server:port+13
    e.g. if your port is 50000 then the Java MMC is on port 50013
    Is there you can have what you need.
    Fabien.

  • How do I adjust the HTTP server receive timeout for one site on Ironport S670

    Hi All,
    How do I adjust the HTTP server receive timeout for one site on Ironport S670?A web based application can take a long time (45 to 60 minutes) to fill a form once a user Login.The proxy will timeout the connection before the result comes back.How do I resolve the issue?
    Thanks

    Sandeep,
    There is no option to adjust timers for one specific website.  Any changes will affect all websites.  The setting is under Security Services > Web Proxy.  If only one site is being problematic for you, I'd recommend you consider bypassing it.
    Is this an HTTPS site?
    You may want to open a TAC case and have them take a deeper look into this.
    -Vance

  • How to find server acknoldegement??

    Hi all,
    I am using JMS API to send message from client to AS 9.0. Its working fine.
    But i dont know how the client program will know that the server received its message or not??
    ie. is it possible the server acknowledge the message of the client??
    There is some method like AUTO_ACKNOWLEDGE and CLIENTACKNOWLEDGE. I dont know how to implement ?? Can anybody help me if possible with piece of code??
    thank you,

    Safari is a web browser, not a server.
    What exactly are you trying to do?

  • How conform that a receiving file is completly received.

    i am sending a file.
    how conform that a receiving file is completly received?

    server code
    package server;
    import java.beans.XMLEncoder;
    import java.io.*;
    import java.net.*;
    import java.nio.channels.FileLock;
    import java.sql.ResultSet;
    import java.util.ArrayList;
    public class Server2 {
        public static void main(String args[]) {
            int port = 6789;
            Server2 server = new Server2(port);
            server.startServer();
        // declare a server socket and a client socket for the server;
        // declare the number of connections
        ServerSocket echoServer = null;
        Socket clientSocket = null;
        int numConnections = 0;
        int port;
        public Server2(int port) {
            this.port = port;
        public void stopServer() {
            System.out.println("Server cleaning up.");
            System.exit(0);
        public void startServer() {
            // Try to open a server socket on the given port
            // Note that we can't choose a port less than 1024 if we are not
            // privileged users (root)
            try {
                echoServer = new ServerSocket(port);
            } catch (IOException e) {
                System.out.println(e);
            System.out.println("Server is started and is waiting for connections.");
            System.out.println("With multi-threading, multiple connections are allowed.");
            System.out.println("Any client can send -1 to stop the server.");
            // Whenever a connection is received, start a new thread to process the connection
            // and wait for the next connection.
            while (true) {
                try {
                    clientSocket = echoServer.accept();
                    numConnections++;
                    Server2Connection oneconnection = new Server2Connection(clientSocket, numConnections, this);
                    new Thread(oneconnection).start();
                } catch (IOException e) {
                    System.out.println(e);
    class Server2Connection implements Runnable {
        //BufferedReader is;
        ObjectInputStream is;
        ObjectOutputStream os;
        XMLEncoder xml;
        Socket clientSocket;
        String numConn;
        int id;
        Server2 server;
    FileLock fl ;
        public Server2Connection(Socket clientSocket, int id, Server2 server) {
            this.clientSocket = clientSocket;
            this.id = id;
            this.server = server;
            numConn = "Connection " + id + " established with: " + clientSocket;
            System.out.println("Connection " + id + " established with: " + clientSocket);
            try {
                is = new ObjectInputStream(clientSocket.getInputStream());
                os = new ObjectOutputStream(clientSocket.getOutputStream());
                //xml = new XMLEncoder(new BufferedOutputStream( new FileOutputStream("first.xml")));
              //  xml = new XMLEncoder(new BufferedOutputStream( new FileOutputStream("first.xml")));
                FileOutputStream fs = new FileOutputStream("first.xml");
                BufferedOutputStream br = new BufferedOutputStream(fs);
                xml = new XMLEncoder(br);
                //fl =  fs.getChannel().lock();
            } catch (IOException e) {
                System.out.println(e);
        public void run() {
            Object line;
            try {
                boolean serverStop = false;
                int n = 0;
                while (true) {
                    line = is.readObject();
                    if (line instanceof String) {
                        String s = (String) line;
                        System.out.println("In Server :: The input is " + s);
                        UserData ud = new UserData();
                        ud.setAdd("karachi");
                        ud.setId("123");
                        ud.setName("XML testing..");
                        System.out.println("Tring to lock locked..");
                        fl.channel().tryLock();
                        System.out.println("File locked..");
                        xml.writeObject(ud);
                        xml.flush();
                        //os.writeObject(ud);
                        n = Integer.parseInt(s);
                    if (n == -1) {
                        serverStop = true;
                        break;
                    if (n == 0) {
                        break;
                //  System.out.println("Connection " + id + " closed.");
                fl.release();
                is.close();
                os.close();
                xml.close();
                clientSocket.close();
                if (serverStop) {
                    server.stopServer();
            } catch (Exception e) {
                System.out.println("Exception..." + e);
    client code
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package scoket1;
    import java.beans.XMLDecoder;
    import server.UserData;
    //import server.MyRS;
    import java.io.*;
    import java.net.*;
    import java.sql.ResultSet;
    import java.util.ArrayList;
    import javax.swing.JOptionPane;
    public class Client {
        public static void main(String[] args) {
            String hostname = "localhost";
            int port = 6789;
            // declaration section:
            // clientSocket: our client socket
            // os: output stream
            // is: input stream
            Socket clientSocket = null;
            ObjectOutputStream os = null;
            ObjectInputStream is = null;
            XMLDecoder de = null;
            // Initialization section:
            // Try to open a socket on the given port
            // Try to open input and output streams
            try {
                clientSocket = new Socket(hostname, port);
                os = new ObjectOutputStream(clientSocket.getOutputStream());
                is = new ObjectInputStream(clientSocket.getInputStream());
                de = new XMLDecoder(new BufferedInputStream(new FileInputStream("first.xml")));
            } catch (UnknownHostException e) {
                System.err.println("Don't know about host: " + hostname);
            } catch (IOException e) {
                System.err.println("Couldn't get I/O for the connection to: " + hostname);
            // If everything has been initialized then we want to write some data
            // to the socket we have opened a connection to on the given port
            if (clientSocket == null || os == null || is == null) {
                System.err.println("Something is wrong. One variable is null.");
                return;
            try {
                while (true) {
                    System.out.print("Enter an integer (0 to stop connection, -1 to stop server): ");
                    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
                    String keyboardInput = br.readLine();
                    os.writeObject(keyboardInput);
                    int n = Integer.parseInt(keyboardInput);
                    if (n == 0 || n == -1) {
                        break;
    //                Object responseObj = null;
    //                responseObj = is.readObject();
                    Object test = null;
                    test = (Object) de.readObject();
                    if (test instanceof String) {
                        String msg = (String) test;
                        System.out.println(msg);
                    } else if (test instanceof UserData) {
                        System.out.println("XML File Test succesful .. be happy ..");
                        System.out.println("Array of User Data ..");
                        UserData ud = (UserData) test;
                        System.out.println("Name:-    " + ud.getName());
                        System.out.println("ID :-     " + ud.getId());
                        System.out.println("Address:- " + ud.getAdd());
                // clean up:
                // close the output stream
                // close the input stream
                // close the socket
                os.close();
                is.close();
                clientSocket.close();
            } catch (UnknownHostException e) {
                System.err.println("Trying to connect to unknown host: " + e);
            } catch (Exception e) {
                System.err.println("Exception:  " + e);
    }

  • How to know which master data objects need to activated  in R3

    SALES OVERVIEW CUBE -0SD_C03
    How to know which master data objects need to activated from delivery version to active version in R/3 for a particular standard cube like 0SD_C03.
    its very urgent please advise.
    R/3 in RSA5
    Sales Master Data
    0ACCNT_ASGN_TEXT               Account assignment group for this customer   
    0ACCNT_GRP_TEXT                Customer account group                       
    0BILBLK_DL_TEXT                Locked                                       
    0BILBLK_ITM_TEXT               Billing block for item                       
    0BILL_BLOCK_TEXT               Billing block in SD document                 
    0BILL_CAT_TEXT                 Billing Category                             
    0BILL_RELEV_TEXT               Relevant for Billing                         
    0BILL_RULE_TEXT                Billing rule                                 
    0BILL_TYPE_TEXT                Billing Type                                 
    0CONSUMER_ATTR                 Consumer                                     
    0CONSUMER_LKLS_HIER            Consumer                                     
    0CONSUMER_TEXT                 Consumer                                     
    0CUST_CLASS_TEXT               Customer Classification                      
    0CUST_GROUP_TEXT               Customer Group                               
    0CUST_GRP1_TEXT                Customer Group 1                             
    0CUST_GRP2_TEXT                Customer Group 2                             
    0CUST_GRP3_TEXT                Customer Group 3                             
    0CUST_GRP4_TEXT                Customer Group 4                             
    0CUST_GRP5_TEXT                Customer Group 5                             
    0DEALTYPE_TEXT                 Sales Deal Type                              
    0DEL_BLOCK_TEXT                Delivery block (document header)             
    0DEL_TYPE_TEXT                 Delivery Type                                
    0DISTR_CHAN_TEXT               Distribution Channel                         
    0DIVISION_TEXT                 Division                                     
    0DLV_BLOCK_TEXT                Schedule line blocked for delivery           
    0DOC_CATEG_TEXT                SD Document Category                         
    0DOC_TYPE_TEXT                 Sales Document Type                          
    0INCOTERMS_TEXT                Incoterms (Part 1)                           
    0INDUSTRY_TEXT                 Industry keys                                
    0IND_CODE_3_TEXT               Industry code 3                              
    0IND_CODE_4_TEXT               Industry code 4                              
    0IND_CODE_5_TEXT               Industry code 5                              
    0IND_CODE_TEXT                 Industry code                                
    0ITEM_CATEG_TEXT               Sales document item category                 
    0ITM_TYPE_TEXT                 FS item type                                 
    0KHERK_TEXT                    Condition Origin                             
    0MATL_GRP_1_TEXT               Material Group1                                         
    0MATL_GRP_2_TEXT               Material Group 2                                         
    0MATL_GRP_3_TEXT               Material Group 3                                         
    0MATL_GRP_4_TEXT               Material Group 4                                         
    0MATL_GRP_5_TEXT               Material Group 5                                         
    0MATL_TYPE_TEXT                Material Type                                            
    0MAT_STGRP_TEXT                Material statistics group                                
    0NIELSEN_ID_TEXT               Nielsen ID                                               
    0ORD_REASON_TEXT               Order reason (reason for the business transaction)       
    0PICK_INDC_TEXT                Indicator for picking control                            
    0PRODCAT_TEXT                  Product Catalog Number                                   
    0PROD_HIER_TEXT                Product Hierarchy                                        
    0PROMOTION_ATTR                Promotion                                                
    0PROMOTION_TEXT                Promotion                                                
    0PROMOTYPE_TEXT                Promotion Type                                           
    0PROV_GROUP_TEXT               Commission Group                                         
    0REASON_REJ_TEXT               Reason for rejection of quotations and sales orders      
    0REBATE_GRP_TEXT               Volume rebate group                                      
    0RECIPCNTRY_TEXT               Destination country                                      
    0ROUTE_TEXT                          Route                                                    
    0SALESDEAL_ATTR                Sales deal                                               
    0SALESDEAL_TEXT                Sales deal                                               
    0SALESORG_ATTR                 Sales organization                                       
    0SALESORG_TEXT                 Sales Organization                                       
    0SALES_DIST_TEXT               Sales district                                           
    0SALES_GRP_TEXT                Sales Group                                              
    0SALES_OFF_TEXT                Sales Office                                             
    0SCHD_CATEG_TEXT               Schedule line category                                   
    0SHIP_POINT_TEXT               Shipping point/receiving point  
    In BW
    Base Unit of Measure     0BASE_UOM
    Bill-to party                    0BILLTOPRTY
    Calendar Day                  0CALDAY
    Calendar Year/Month      0CALMONTH
    Calendar Year/Week      0CALWEEK
    Change Run ID              0CHNGID
    Company code              0COMP_CODE  
    Cost in statistics currency          0COST_VAL_S
    Credit/debit posting (C/D)            0DEB_CRED
    Distribution Channel       0DISTR_CHAN
    Division                                     0DIVISION 
    Number of documents    0DOCUMENTS
    Sales Document Category          0DOC_CATEG
    Document category /Quotation/Order/Delivery/Invoice 0DOC_CLASS
    Number of Document Items         0DOC_ITEMS
    Fiscal year / period
    Fiscal year variant                      0FISCVARNT
    Gross weight in kilograms           0GR_WT_KG
    Number of Employees    0HDCNT_LAST
    Material                                     0MATERIAL
    Net value in statistics currency    0NET_VAL_S
    Net weight in kilograms 0NT_WT_KG
    Open orders quantity in base unit of measure 0OPORDQTYBM
    Net value of open orders in statistics currency 0OPORDVALSC
    Payer                            0PAYER
    Plant                             0PLANT
    Quantity in base units of measure 0QUANT_B
    Record type                   0RECORDTP
    Request ID                    0REQUID
    Sales Employee            0SALESEMPLY
    Sales Organization         0SALESORG
    Sales group                   0SALES_GRP
    Sales Office                   0SALES_OFF
    Shipping point                0SHIP_POINT
    Ship-To Party                0SHIP_TO
    Sold-to party                  0SOLD_TO
    Statistics Currency                    0STAT_CURR
    In R3 RSA5 we have all the Master data data sources as mentioned above, and BW also. How to find the related Master data Infosource in R/3 Master data Data sources.
    Thanks in advance,
       Bhima.
    Message was edited by: Bhima Chandra Sekhar Guntla

    Hi,
    <i>How to know which master data objects need to activated from delivery version to active version in R/3 for a particular standard cube like 0SD_C03.</i>
    I think, you are looking for master data sources(text,attributes,hier).Am i right?
    If so, This cube has almost all SD master data characterstics. So you can activate all the all master data datasources of SD in r/3 (SD-IO).
    Any way you requirement does not stop only by using this cube . You will activate all other cubes in SD also. So if you want to activate only needed master data datasources when you are activating a cube, the job becomes senseless. There is no problem(wrong) in activating all master data available under that application , even though you want to activate only one cube.
    With rgds,
    Anil Kumar Sharma .P

  • How can I store received email in a folder on my iPad *

    How can I store received email in a folder on my iPad *
    I am trying to save certain messages on my iPad but don't know how to make a folder with email!

    You can only add folders to the email account if it is an IMAP account. If you see an EDIT button at the top of the window when you are in the email account - where you can see your inbox, sent and trash folders - if there is an edit button at the top of that window - you can tap that and then an Add Mailbox option appears at the bottom of the window.
    If you do not see that edit button, you do not have an IMAP account and you cannot add folders.

  • How to know exact size of table with blob column

    I have a table with one BLOB column. I ran this query.
    select bytes/1024/1024 from user_segments where segment_name='GMSSP_REQUEST_TEMP_FILES'
    (user_segments is a view)
    it gave me 0.125
    It means size of table is 0.125. I have uploaded 3 files to this table. Each of them is of 5 mb. After that I check size of table. but result was same. i.e 0.125.
    Can any body tell me how to know exact amount of space consumed by files. I am expecting following result
    size should be (5+5+5+0.125)MB
    Any help is appreciated.
    Thanks.
    Akie

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_1092.htm#i1581211
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:266215435203#993030200346552097

  • How can I only receive my iMessages to my phone without it going to my iPad as well?

    Didn't know which forum this would go to, so I figured I would ask. How can I only receive my iMessages on my phone without it going always to my iPad, without turning iMessage on my iPad off?

    Go to Program Files - Windows Searchqu Toolbar. Then click on uninstall app. It must be good. This s--- doesn't appear in the ADD/REMOVE PROG.
    if you can't escape from him, go in partition C and search "Searchqu" and delete everything that shows you the "searchqu".

  • How to know VAT cleared documents?

    HI,
    After receiving AR/AP for that period, I will clear VAT for some documents for that month, then how to know that which documents are VAT cleared and which are yet to be cleared. I want to create a report for the above requirement.
    So in which table, I find that, documents cleared with VAT and documents are not cleared with VAT, any one help me on this?
    regards
    Niv

    Hi,
    Tcode : FBL3N
    Enter the GL Account of VAT and Check All Items (third option) Execute and you will have the cleared and open item of VAT.
    Regards.

Maybe you are looking for