Sending notification/events to client of RMI

i'm just trying the functionality of RMI.
i tried to created a java beans, which will fire an events in some conditions. the problem is, the events is catch by the RMI server, not at the client as it suppose. is there any way, i can notify clients for any changes in the server, beside using fireChanges()?....
thanks......

jini has distributed events

Similar Messages

  • Sending notifications to Mobile Client.

    Hi,
    I want to be able to send notifications down to mobile service using NOTIFN_WRITE linked to a BP. Current replication object appears to be linked to the employee only. I want the notifications to follow te BP. I think SFAKNA1 can be used but I do not know enough about interlinkages to make it work. Has anyone done this or does anyone know how to set up this replication using interlinkages?
    Many thanks
    MM

    Hi,
    Now have notifications specific to Business Partners going to mobile Client. This is a fully functioning mobile sales client. In the service notification/BP tile set I have BP number but not partner function or BP name although both are known in client. Any ideas why this information does not display ?
    The status of the service task is also blank with no drop down so is there additional customizing needed in the client ?
    Regards
    M

  • Send notification to VPN Client

    Hi
    is there anyway to send a notification (ie, shut down, maintenance) to a vpn remote access client?

    Hi,
    You can send a notification when you disconnect them (ASA/PIX 7.x/Concentrators).
    Or, you can put the notification in the log-in banner.
    Please rate if this helped.
    Regards,
    Daniel

  • How to send notification to IM client?

    Dear all,
    When a client receives a mail - audio or video mail, the client needs to be notified?
    How is this achieved?
    Rgds,
    Seetesh

    Yes I agree. But there must be some service provider who does the forwarding of messages provided it has the valid email addres and the IM Gateway information.
    The Gateway of different IM clients along with their port nos can be configured using a Factory and then checking the email address, the service provider can relay back the messages present for that user on that IM.

  • Ical hangs on trying to send notification of event

    Hi all,
    Anyone knows how to stop Ical from trying to send out notifications for an event.
    I created a new event and added attendees.
    Must have made a mistake in one of the addresses because when done it started sending but that never stopped. Even after restarting, it still kept on trying to send out invitations to the attendees. I then deleted the event. But then the question comes delete and notify. I choose that option with the same result, now it keeps trying to send notification to the same faulty list of attendees.
    Restarting does not help.
    Howto kill this activity of Ical?
    Any help is appreciated.
    thanks in advance, Rob

    I seem to have a similar problem. I was invited to several meetings that I keep on seeing in my notification window (although I posted a reply multiple times). This is VERY annoying, since my calender opens on the oldest notification (somewhere end of august). Anyone?
    Thanks
    jan
    btw the agenda items originate from Lotus Notus Agenda.

  • How do I send an event notification to several people

    I need to set up a meeting on a building site for several people in the design team. Am I able to send an event via iCal and request confirmation of their attendance?

    Hello, light diva. 
    Thank you for visiting Apple Support Communities. 
    Here is an article that walks you through the process of sending calendar invites. 
    Invite others to an event
    http://support.apple.com/kb/PH4706
    Cheers,
    Jason H. 

  • SCOM 2012 SP1 failed to send notifications by IM Channel

    Hello, I have a problem with my SCOM 2012 SP1. When it tries to send notification by IM Channel I get the following alert in SCOM:
    Notification subsystem failed to send notification using
    device/server 'live.august.ru:5060' over 'sip' protocol to
    'sip:[email protected]'.
    Microsoft.Rtc.Signaling.OperationFailureException: The GetInbandDataAsyncResult
    operation has failed with message: "The data session subscription to server
    failed.". See the InnerException and FailureReason properties as well as the
    logs for additional information. . Rule id:
    Subscription077dc311_59c0_4ba5_a432_072b486cd287
    At the same time the following event in the Application Event Log generates on the server with IM service:
    Event Type: Warning
    Event Source: Live Communications Server Authentication
    Event Category: (1003)
    Event ID: 16435
    User:  N/A
    Computer: LCS
    Description:
    At least one invalid authentication signature was detected.
    There were 2 messages with invalid signatures in the last 7112 minutes. The last one had the FROM header: sip:[email protected]
    Cause: This could be due to a client or server which is not handling authentication correctly, or it could be due to an attacker.
    Resolution:
    None needed unless the failure count is high (>100). Check your network for any rogue clients. Restart the server if problem persists.
    Notifications sent by the SMTP channel work fine!
    I Have the following Servers:
    LCS (live.august.ru) - Win 2003 EE SP2 + Live Communication Server 2005 SP1
    SCOM - Win 2012 + SCOM 2012 SP1
    Also I have a third server (Win 2003 + SCOM 2007 R2) and it sends notifications to the same VMLCS server successfully. The configurations of IM Channels are identical on both servers:
    IM server: live.august.ru
    Return address: sip:[email protected]
    Protocol option: TCP
    Authentication method: Kerberos
    IM port: 5060
    I tried to change the Authentication method to NTLM, and the port to 5061, but it doesn't help...

    Hi,
    Please refer to these following articles to configure IM channel correctly:
    How to Create and Configure the Notification Action Account
    http://technet.microsoft.com/en-us/library/hh212835.aspx
    How to Enable an Instant Message Notification Channel
    http://technet.microsoft.com/en-us/library/hh212690.aspx
    Enabling Instant Messaging Notifications in System Center 2012 Operations Manager
    http://opsmgrunleashed.wordpress.com/2012/02/24/enabling-instant-messaging-notifications-in-system-center-2012-operations-manager/
    Alex Zhao
    TechNet Community Support

  • Sending an object from client to server always on button press

    What I need is to send an object from client to server but I need to make server wait until another object is sent. What I have is the JFrame where you put the wanted name and surname, then you create a User object with these details and on button press you send this object to the server. I just can't hold the connection because when I send the first object, server doesn't wait for another button click and throws EOFexception. Creating the while loop isn't helpfull as well because it keeps sending the same object again and again. The code is here
    public class ClientFrame extends JFrame {
        private JButton btnSend;
        private JTextField txfName;
        private JTextField txfSurname;
        public ClientFrame() {
            this.setTitle(".. ");
            Container con = this.getContentPane();
            con.setLayout(new BorderLayout());
            txfName = new JTextField("name");
            txfSurname = new JTextField("surname");
            btnSend = new JButton(new AbstractAction() {
                @Override
                public void actionPerformed(ActionEvent e) {
                    SSLSocketFactory f =
                            (SSLSocketFactory) SSLSocketFactory.getDefault();
                    try {
                        SSLSocket c =
                                (SSLSocket) f.createSocket("localhost", 8888);
                        c.startHandshake();
                        OutputStream os = c.getOutputStream();
                        ObjectOutputStream oos = new ObjectOutputStream(os);
                        InputStream is = c.getInputStream();
                        ObjectInputStream ois = new ObjectInputStream(is);
                        boolean done = false;
                        while (!done) {
                            String first = txfName.getText();
                            String last = txfSurname.getText();
                            User u = new User();
                            u.setFirstName(first);
                            u.setLastName(last);
                            oos.reset();
                            oos.writeObject(u);
                            String str = (String) ois.readObject();
                            if (str.equals("rcvdOK")) {
                                System.out.println("received on the server side");
                            } else if (str.equals("ERROR")) {
                                System.out.println("ERROR");
                        //oos.writeObject(confirmString);
                        oos.close();
                        os.close();
                        c.close();
                    } catch (ClassNotFoundException ex) {
                        Logger.getLogger(ClientFrame.class.getName()).log(Level.SEVERE, null, ex);
                    } catch (IOException ex) {
                        System.err.println(ex.toString());
            btnSend.setText("send object");
            con.add(btnSend, BorderLayout.PAGE_START);
            con.add(txfName, BorderLayout.CENTER);
            con.add(txfSurname, BorderLayout.PAGE_END);
            this.pack();
            setSize(200, 150);
            setVisible(true);
    public class TestServer {
        public static void main(String[] args) {
            try {
                KeyStore ks = KeyStore.getInstance("JKS");
                ks.load(new FileInputStream(ksName), ksPass);
                KeyManagerFactory kmf =
                        KeyManagerFactory.getInstance("SunX509");
                kmf.init(ks, ctPass);
                SSLContext sc = SSLContext.getInstance("TLS");
                sc.init(kmf.getKeyManagers(), null, null);
                SSLServerSocketFactory ssf = sc.getServerSocketFactory();
                SSLServerSocket s = (SSLServerSocket) ssf.createServerSocket(8888);
                printServerSocketInfo(s);
                SSLSocket c = (SSLSocket) s.accept();
                InputStream is = c.getInputStream();
                ObjectInputStream ois = new ObjectInputStream(is);
                OutputStream os = c.getOutputStream();
                ObjectOutputStream oos = new ObjectOutputStream(os);
                boolean done = false;
                User u;
                  while(!done){
                    u = (User) ois.readObject();
                    String confirmString = "rcvdOK";
                    String errorString = "ERROR";
                    if (u != null) {
                        System.out.println(u.getFirstName() + " " + u.getLastName());
                        oos.writeObject(confirmString);
                    } else if (u == null) {
                        oos.writeObject(errorString);
                is.close();
                s.close();
                c.close();
            } catch (Exception e) {
                    System.err.println(e.toString());
    }Thanks for any help, btw this doesnt need to be via ssl, the problem would be the same using only http. Please anyone help me:)
    Edited by: Vencicek on 7.5.2012 2:19
    Edited by: EJP on 7/05/2012 19:53
    Edited by: Vencicek on 7.5.2012 3:36

    Current code fails because it's sending still the same entity again(using while loop)No it's not. You are creating a new User object every time around the loop.
    which makes the system freezeWhich means that you are executing network code in the event thread. Don't do that, use a separate thread. At the moment you're doing all that sending inside the constructor for ClientFrame which is an even worse idea: you can never get out of there to the rest of your client program. This is a program design problem, not a networking problem.
    and doesn't allow me to set new parameters of the new entityI do not understand.
    I need to find a way to keep Server running even when the client doesn't send any data and wait until the client doesnt press the send button again to read a new object.That's exactly what happens. readObject() blocks until data is received.

  • I want to send notifications to outside(i,e mail box) from oracle, and users will approve the notification from email

    Hi
    I have a client required to send notifications to outside email box, and also user will approve this notification through email.(i,e not logged into oracle and approve it) in 11i instance.
    i need to send mail from po department to finance department
    once finance department approves , then mail back to po department that your notificaiton approved.
    from address:=[email protected]
    to address:=[email protected]
    as part of this we did IMAP set up
    and used the following code. and getting the notifications from Oracle to my mail box.
    my main issue is when user approves the wf notifications, it is not showing my specified email address in the attribute #WFM_REPLYTO, always it is showing the IMAP set up wfdev address
    what is the value i need to use for this #WFM_REPLYTO
    eventhough i am sending the to_address email id to the following attribute(wf_engine.setitemattrtext), the workflow approval not working for that email id.
    only if i am using the '[email protected]' in the imap set up, then only approval is working.
    how can i override this to_email address value([email protected]) to my desired email address?
    wf_engine.setitemattrtext (itemtype => l_item_type,
    itemkey => l_item_key,
    aname => '#WFM_REPLYTO', -- to_ address
    avalue => '[email protected]' -- [email protected]
    if any body having some sample code related to this please share on this.
    Thanks
    sam

    Sam,
    Can you find any errors in the Workflow log file?
    Please review the following docs.
    Setting Different Values For Attributes #WFM_FROM & #WFM_REPLYTO Does Not Happen Or Results In SAXParseException (Doc ID 1455191.1)
    How To Change The Default From and Reply To Email Address For Workflow Email Notifications (Doc ID 760477.1)
    Thanks,
    Hussein

  • How to send ActionListener events to FX?

    I wrap a JFileChooser (with ActionListener) as a JComponent as below. How do I notify my JavaFX program that an event has occurred?
    JavaFX snippet to include JFileChooser:
    Class:
    public class SetupJFileChooser {
    public static JComponent create() {
    JFileChooser jFileChooser = new JFileChooser();
    jFileChooser.addActionListener(actionListener);
    return jFileChooser;
    static ActionListener actionListener = new ActionListener() {
    public void actionPerformed(ActionEvent actionEvent) {
    JFileChooser theFileChooser = (JFileChooser) actionEvent.getSource();
    String command = actionEvent.getActionCommand();
    if (command.equals(JFileChooser.APPROVE_SELECTION)) {
    System.out.println(JFileChooser.APPROVE_SELECTION);
    File selectedFile = theFileChooser.getSelectedFile();
    } else if (command.equals(JFileChooser.CANCEL_SELECTION)) {
    System.out.println(JFileChooser.CANCEL_SELECTION);
    }

    The best way to send notifications from Java code to JavaFX code depends on the circumstances. How are instances of SetupJFileChooser integrated into JavaFX?
    The simplest solution might be to define SetupJFileChooser as a JavaFX class and not as a Java class. This way, you don't have to pass information between Java and JavaFX at all. Depends on the architecture, if this is possible though.

  • Exception: Could not send notifications due to Error

    Hi experts...
    I have configure the Notification Message function for the new task in UWL follow the guide below.
    https://help.sap.com/saphelp_nwce711/helpdata/en/e4/32ff7865fa483dba3686160f5c6dd0/frameset.htm
    It does work on the server (BPM/CE7.11) in my office. (CE install in VMware along with mail Server, use same IP: 8.8.2.180)
    But when I do the same thing on client's side, it just doesn't work out. (use the same VM instance, but in different Network environment)
    I list the detail info. of settings and exception below:
    For BPM Mail Server Connectivity:
    host: 8.8.2.180 (also try bpm.hjoy.com.tw)
    user: jason
    e-mailAddress: jason @demo.hjoy.com.tw
    PSW: goodtry
    For BPM Notification Messages Configuration:
    Mark both option
    URL: http://bpm.hjoy.com.tw:50000
    Could not send notifications due to Error: (Failed in component: sap.com/tcbpemtmear, BC-BMT-BPM-DSK) Exception raised from invocation of public int com.sap.bpem.tm.notification.MailNotificationSender.startNotification(com.sap.bpem.tm.adapter.Action,com.sap.bpem.tm.ITaskInstance) throws java.lang.IllegalArgumentException method on bean instance com.sap.bpem.tm.notification.MailNotificationSender@1a44705 for bean sap.com/tcbpemtmearannotation|bpemtmejb.jarannotation|MailNotificationSender in application sap.com/tcbpemtmear.; nested exception is: javax.ejb.EJBTransactionRolledbackException: (Failed in component: sap.com/tcbpembaseear, BC-BMT-BPM-DSK) Exception raised from invocation of public void com.sap.bpem.base.mail.MailSenderBean.send(com.sap.bpem.base.mail.IMessage) throws com.sap.bpem.base.mail.MailException method on bean instance com.sap.bpem.base.mail.MailSenderBean@14d43e4 for bean sap.com/tcbpembaseear*annotation|bpembaseejb.jar*annotation|MailSenderBean in application sap.com/tcbpembaseear.; nested exception is: com.sap.bpem.base.mail.MailException: javax.mail.SendFailedException: Invalid Addresses;
      nested exception is:
    com.sun.mail.smtp.SMTPAddressFailedException: 554 User unknown
    Please kindly help me for this...

    Good day! I configured the notification but I stack with a problem.
    There is an error in logs:
    Could not send notifications due to Error: {...} nested exception is: com.sap.bpem.base.mail.MailException: com.sun.mail.smtp.SMTPSendFailedException: 550 authentication required
    But I've entered the login and the password to the smtp. Where can I find a reason of the error?
    Also I tried to configure notification service using the link http://help.sap.com/saphelp_nwce711/helpdata/EN/e4/32ff7865fa483dba3686160f5c6dd0/content.htm, but when I try to configure tcbpembase~ear service there is no edit button and the column "Modifiable" has no check. What it can be?

  • KIMYONG: Outbound Workflow Notification Event Message 를 tracking하는 방법

    Purpose
    Outbound Workflow Notification Event Message 가 발송됐으나 user가 받아보지 못한경우 가 발생했으나 user
    이를 tracking하는 방법을 알아보고자 한다.
    Solution
    1. notification 이 발송될때 oracle.apps.wf.notification.send event발생한다
    event key 로 Notification ID 를 사용한다.
    2. 다음 조건에서만 The e-mail notification이 발송된다.
    i) Notification status is OPEN or CANCELED
    ii) Notification mail_status is MAIL or INVALID
    SELECT status, mail_status
    FROM wf_notifications
    WHERE notification_id = '&nid';
    iii) Recipient Role has a valid e-mail address and notification preference is in the format MAIL%
    SELECT email_address,
    nvl(WF_PREF.get_pref(name, 'MAILTYPE'),notification_preference)
    FROM wf_roles
    WHERE name = upper('&recipient_role');
    iv) Workflow Deferred Agent Listener is running
    v) Workflow Notification Mailer is running
    3. e-mail로 발송되기전 message가 2번 정지한다.
    Raised --> WF_DEFERRED Queue --> Processed by Deferred Agent Listener --> WF_NOTIFICATION_OUT Queue --> Processed by Notification Mailer and sent as e-mail
    4. oracle.apps.wf.notification.send을 dispatch 할때 error가 발생하면
    message 는WF_ERROR queue에 enqueue되고 .
    Error Agent Listener 가 WF_XML.Error_Rule 을 수행하는 oracle.apps.wf.notification.send 의
    ERROR subscription 을 dispatch합니다.
    5. notification id 와 WF_DEFERRED and WF_NOTIFICATION_OUT queue 의 message stauts 등을 확인하기 위해 $FND_TOP/sql/wfmlrdbg.sql 를 수행합니다.
    PROCESSED in WF_DEFERRED - The message is enqueued to WF_NOTIFICATION_OUT
    PROCESSED in WF_NOTIFICATION_OUT - The message is sent as e-mail
    READY in WF_DEFERRED - Check if Deferred Agent Listener is running
    READY in WF_NOTIFICATION_OUT - Check if Notification Mailer is running
    6. notification id 의 outbound XML message 를 분석합니다.
    . The wfmlrdbg.sql output provides the XML message generated by WF_XML.Generate at the time the script is run. If the original XML message used by the mailer is required to be analyzed following SQL may be used.
    SELECT tab.user_data.text_lob text_lob
    FROM applsys.aq$wf_notification_out tab
    WHERE dbms_lob.instr(tab.user_data.text_lob,'&1') > 0
    7. 필요하다면 WF_NOTIFICATION_OUT queue 를 rebuild 합니다.
    The wfntfqup.sql script rebuilds the WF_NOTIFICATION_OUT queue by dropping and recreating
    that queue, removing pending notification messages from the WF_DEFERRED queue, and
    repopulating the WF_NOTIFICATION_OUT queue from the Oracle Workflow Notification System
    tables.
    Wfntfqup.sql Version >=115.9
    If you have implemented Oracle Alert and the WF_NOTIFICATION_OUT queue contains any pending
    alert e-mail messages, those messages must be processed before the queue can be rebuilt. The
    wfntfqup.sql script checks the queue for any alert e-mail messages and, if it finds any, the
    script returns an error message that specifies how many alert e-mail messages are pending
    and indicates that these messages must be processed before the script can run.
    Wfntfqup.sql Version <= 115.8
    If you have implemented Oracle Alert and the WF_NOTIFICATION_OUT queue contains any pending
    alert e-mail messages, those messages must be processed before the queue can be rebuilt. The
    wfntfqup.sql script checks the queue for any alert e-mail messages and, if it finds any,
    exits without performing any changes.
    Stop Notification Mailer, rebuild Mailer Queue using $FND_TOP/patch/115/sql/wfntfqup.sql.
    Reference
    Note 433359.1

    Thanks for your update.
    I have checked as per the metalink doc "242941.1" . i am getting below message only for IMAP.
    *C:\prod\scripts>%AFJVAPRG% -classpath %AF_CLASSPATH% -Dprotocol=imap  -Ddbcfile=
    c:\prod\prodappl\fnd\11.5.0\secure\PROD_qlng-s-012\prod.dbc -Dserver=qlng-s-003.
    qalhatlng.int -Dport=995 -Dconnect_timeout=120 -Ddebug=Y -Daccount=oracle1@qlng
    .om -Dpassword=System123 -DdebugMailSession=Y oracle.apps.fnd.wf.mailer.Mailer
    MLRTST : oracle.apps.fnd.cp.gsc.Logger.Logger(String, int) : Logging to System.o
    ut until necessary parameters are retrieved for Logger to be properly started.
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.
    IMAPStore,Sun Microsystems, Inc]*
    Kindly suggest need to any setup in ms exchange server or firewall level.
    Thanks

  • How can Webservice manage client sections and send back messages to clients

    Hi all.
    I am starting working with Webservice (jax-ws). Now i can make a good server side and on client side i can use method interface on webservice server side.
    But i want to make a advance feature as Server side manage client section and can send back message to client when Server change status...
    I know RMI and Corba can seems to support to send back messages to sections of cliens right ?
    So Webservice can do it ? Please help me !
    Thanks
    Diego
    Edited by: ThuCT on Sep 14, 2010 1:57 AM

    Hi all.
    I am starting working with Webservice (jax-ws). Now i can make a good server side and on client side i can use method interface on webservice server side.
    But i want to make a advance feature as Server side manage client section and can send back message to client when Server change status...
    I know RMI and Corba can seems to support to send back messages to sections of cliens right ?
    So Webservice can do it ? Please help me !
    Thanks
    Diego
    Edited by: ThuCT on Sep 14, 2010 1:57 AM

  • Send Notifications Manually and show in OAF Page

    Hello,
    i need some suggestions on how to send Notification in EBS.
    System description: R12, Database 11g
    Scenario:
    We have the standard Notifications (Worflow List) Region showing in a OAF Page.
    I want to send manually Notifications, so see these in the Notification Worklist.
    What standard methods are existing to handle this approach?
    Thank you very much!

    Hi,
    You have to start (trigger) the for workflow by calling an PL/SQL block when an event is raised from a OAF page.
    To set the OAF region on to the notification use a Document type attribute in the workflow and set the path
    like JSP:/OA_HTML/OA.jsp?OAFunc=<Registered Function Name>&Parameter1=<value>
    Hope this would help.
    Regards,
    achapla

  • How to keep track of client in rmi server

    how can I keep track of a disconnected client in a rmi server ?
    And what logic do I use to disconnect a client fro mthe server ?

    When a RMI client receives a stub to the remote object, RMI client runtime sends a dirty() call to the RMI server runtime which in turn helps the RMI server runtime in updating the client references to the remote object. Client reference is nothing but a unique identification generated by client RMI runtime for that instance of JVM. RMI uses a reference counting algorithm for destroying unreferenced remote objects. Once all references (all clients who are holding the stub to this remote object) to a remote object drops to zero, local garbage collector takes care of freeing this remote object.
    RMI client runtime initiates a TCP connection with the remote object only when a method is invoked on the stub. RMI transport layer uses a simple connection pooling mechanism to use already established TCP connections with server objects in further remote method invocations. Let's say the client is invoking a remote method on the remote object's stub fetched from the registry service. Now RMI transport layer initiates a TCP connection with the remote object (exported at ("host1", 4567)). After completion of the remote method, RMI client's transport layer keeps the connection open for some time (some configurable value) to take the advantage of the already established TCP connection in future remote method invocations on remote objects exported on the same host and port ("Host1", 4567"). RMI transport layer also takes care of closing these connections if the connections are idle more than configured value of connection open time.
    From the RMI server's perspective, once the RMI server runtime receives a remote method invocation request from the RMI client, it creates a new thread and try to dispatch the method on the designated remote object. After returning the results of the remote method to the client, RMI client's transport layer may not end this conservation with this remote object to take the advantage of this TCP connection in future remote method invocations. So the same thread may be used for dispatching another remote method in future. This is actually the side effect of re-using the established TCP connections on the client side.
    RMI server maintains client's reference in the client's reference set of the remote object as long as the client holds a normal reference to remote object's stub in its JVM. Once the client relinquishes the reference to the stub (goes out of the scope or setting it to the null), RMI client automatically sends clean() call to the RMI server runtime to update client reference set of the remote object. There is no public API to lookup or manipulate the client references for a given remote object, but you can always unexport the remote object even some clients are holding stubs to the remote object. Next time when the client invokes the remote method using this stub, client will receive a "connection refused exception" from the server because the remote object is already unexported. Let's say if the RMI server is started again (remote object is exported and registered with registry service), the client once again obtains the stub to the remote object from the registry service instead of using earlier stale stub. (This time remote object may have been exported on different port, so the port details in the old stub may not be valid any more).
    At any point of time there can be more than one established TCP connection with the RMI client. This may be the temporary condition; RMI client's transport layer automatically closes these connections if it does not receive any remote method invocation requests with in a pre-determined interval of time (default: 2 min). You can always find out RMI client's host in a given remote invocation by using getClientHost(), but how can you semantically define a "disconnected client in a rmi server" in your application context ? You can always force all the clients to fetch the stub again in future remote method invocations by unexporting the remote object in RMI server. I hope this information helps ...
    -- Srinath Mandalapu

Maybe you are looking for