How to trap applet window closing event?

Hi all,
I would like to know how could one trap the event of the browser window containing an applet being closed by the user?
Thank you,

Hi. this would be useful to me too.
Trouble is, I'm not sure that you can. applet.stop( )
and applet.destroy( ) might be called, but there is
no guarentee that you can complete processing before
you are terminated, especially if you need to do
something slow, like returning state data to your
server. And you can't stop the broswer closing.
I know that in Javascript, you can catch and even
stop the browser window being closed, which is how
things like goggledocs can ask for confirmation
before closing. (window.onbeforeunload( ) ).
I have toyed with the idea of having a
javascript/ajax thread in my html, to catch this
termination, and communicate back to the server from
java to say a document has changed, but it all seems
rather heavyweight for such a simple task.Look at Runtime.addShutdownHook()
You could also try using a WindowListener as well and trap the WindowClose Event.
stop() should do very little other than invalidate the current thread/run flags
and then exit. ie: a stop() example
public void stop()
task = null;
or
public void stop()
running = false;
Your run method should look for a stop condition and then exit.
Otherwise you could be doing stop processing while run is still
running.
(T)

Similar Messages

  • How to fire a window closing event, not clicking the X button of the UI

    I�ve an application that uses a WindowListener for the WindowClosing event of a JFrame. When the user presses CTRL-Q I needed to fire a windowClosing for that frame, in order to detect it and take some actions in the class referencig the JFrame (this class has the windowListener).
    setDefaultCloseOperation was not good for me, so i fire the windowClosing event with the following code:
    private void exitMenuItemActionPerformed(java.awt.event.ActionEvent evt) {
        WindowEvent we = new WindowEvent(this,WindowEvent.WINDOW_CLOSING, null, 0, 0);
        this.getWindowListeners()[0].windowClosing(we);
    }Hope this is the right way to fire the event and this helps someone. If not please code a better way,
    Alonso

    Yes, that works and looks better:
    private void exitMenuItemActionPerformed(java.awt.event.ActionEvent evt) {                                            
       this.dispatchEvent(new WindowEvent(this, WindowEvent.WINDOW_CLOSING));
    } "this" refers to the JFrame.

  • Detect window closing event in AIR application

    How do I detect the window closing event in an AIR app? Tried
    the following.
    deactivate and windowDeactivate events in the
    WindowedApplication tag.
    addEventListener(Event.CLOSING, onClose);
    addEventListener(AIREvent.APPLICATION_DEACTIVATE onClose);
    addEventListener(AIREvent.WINDOW_DEACTIVATE, onClose);
    None of them seem to work.
    Any ideas?
    Thanks
    CS

    The following works for me:
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    closing="traceEvent(event)"
    windowDeactivate="traceEvent(event)"
    applicationDeactivate="traceEvent(event)">
    <mx:Script>
    <![CDATA[
    public function traceEvent(event:Event):void{
    trace(event.type);
    ]]>
    </mx:Script>
    </mx:WindowedApplication>
    As does:
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    applicationComplete="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.AIREvent;
    public function init():void{
    this.addEventListener(Event.CLOSING, traceEvent);
    this.addEventListener(AIREvent.WINDOW_DEACTIVATE,
    traceEvent);
    this.addEventListener(AIREvent.APPLICATION_DEACTIVATE,
    traceEvent);
    public function traceEvent(event:Event):void{
    trace(event.type);
    ]]>
    </mx:Script>
    </mx:WindowedApplication>

  • Closing a Swing App with Window Closing Event With Dialogs On Close

    A while back I started a thread discussing how to neatly close a Swing app using both the standard window "X" button and a custom action such as a File menu with an Exit menu item. Ultimately, I came to the conclusion that the cleanest solution in many cases is to use a default close operation of JFrame.EXIT_ON_CLOSE and in any custom actions manually fire a WindowEvent with WindowEvent.WINDOW_CLOSING. Using this strategy, both the "X" button and the custom action act in the same manner and can be successfully intercepted by listening for a window closing event if any cleanup is required; furthermore, the cleanup could use dialogs to prompt for user actions without any ill effects.
    I did, however, encounter one oddity that I mentioned in the previous thread. A dialog launched through SwingUtilities.invokeLater in the cleanup method would cause the app to not shutdown. This is somewhat of an academic curiosity as I am not sure you would ever have a rational need to do this, but I thought it would be interesting to explore more fully. Here is a complete example that demonstrates; see what you think:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.BoxLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class CloseByWindowClosingTest {
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        launchGUI();
         private static void launchGUI() {
              final JFrame frame = new JFrame("Close By Window Closing Test");
              JPanel panel = new JPanel();
              panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
              JButton button1 = new JButton("No Dialog Close");
              JButton button2 = new JButton("Dialog On Close");
              JButton button3 = new JButton("Invoke Later Dialog On Close");
              button1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        postWindowClosingEvent(frame);
              button2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        JOptionPane.showMessageDialog(frame, "Test Dialog");
                        postWindowClosingEvent(frame);
              button3.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        SwingUtilities.invokeLater(new Runnable() {
                             public void run() {
                                  JOptionPane.showMessageDialog(frame, "Test Dialog");
                        postWindowClosingEvent(frame);
              panel.add(button1);
              panel.add(button2);
              panel.add(button3);
              frame.setContentPane(panel);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.addWindowListener(new WindowAdapter() {
                   @Override
                   public void windowClosing(WindowEvent event) {
                        System.out.println("Received Window Closing Event");
              frame.setVisible(true);
         private static void postWindowClosingEvent(JFrame frame) {
              WindowEvent windowClosingEvent = new WindowEvent(frame, WindowEvent.WINDOW_CLOSING);
              frame.getToolkit().getSystemEventQueue().postEvent(windowClosingEvent);
    }An additional note not in the example -- if in the button 3 scenario you were to put the window closing event posting inside the invoke later, the app then again closes. However, as implemented, what is it that causes button 3 to not result in the application closing?
    Edited by: Skotty on Aug 11, 2009 5:08 PM -- Modified example code -- added the WindowAdapter to the frame as a window listener to show which buttons cause listeners to receive the window closing event.

    I'm not sure I understand why any "cleanup" code would need to use SwingUtilities.invokeLater() to do anything. Assuming this "cleanup method" was called in response to a WindowEvent, it's already being called on the EDT.
    IIRC, my approach to this "problem" was to set the JFrame to DO_NOTHING_ON_CLOSE. I create a "doExit()" method that does any cleanup and exits the application (and possibly allows the user to cancel the app closing, if so desired). Then I create a WindowListener that calls doExit() on windowClosingEvents, and have my "exit action" call doExit() as well. Seems to work fine for me.

  • Catching window closing events from JFrame

    I'm having problems catching windowClosing() events from a JFrame (just doesn't get to my event listener it would seem!).
    I register and setup a window listener in the constructor of my JFrame class. Prior to this I set the default close operation as DO_NOTHING_ON_CLOSE (as you're suppose to if tyou want to handle window closing events).
    When user clicks on x (window terminate) button (in WIN systems), nothing is dispatched to my event listener. Any ideas?
    Extract from constructor:
    setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
    addWindowListener(new MainWindowListener(this));
    MainWindowListener looks as follows (EDImemConvert extends JFrame):
    class MainWindowListener extends WindowAdapter
    private EDImemConvert f;
    public MainWindowListener(EDImemConvert f)
    this.f = f;
    public void windowClosing(WindowEvent e)
    System.out.println("gets here...");
    f.ReturnResources();
    f.dispose();
    System.exit(0);
    }

    This works for meimport java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test extends JFrame {
      public Test() {
        addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent we) { System.exit(0); }
        setSize(300,300);
        setVisible(true);
      public static void main(String args[]) { new Test(); }
    }Normally, I just use this line
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    instead of adding a listener. It will clean up everything nicely.

  • How to trigger applet's EVEN_FORMATTED_SMS_PP_ENV  event using kannel?

    How to trigger applet's EVEN_FORMATTED_SMS_PP_ENV event using kannel?

    It seems that the freeze can be atributed to a problem with the limited number of proactive handlers and reentrance problem.
    I see this comment
    How to deal with re-entrance?
    · Requiring an SMS-Submit
    Can be used only: if the application has to send proactive commands only when
    triggered by EVENT_FORMATTED_SMS_PP_ENV.
    The remote server must require a response packet using SMS-Submit when sending a
    message to the application (the card shall implement the 3GPP 43.019 Rel-5)
    Advantages:
    o it is a standard mechanism
    o there is no need to implement anything related to this mechanism in the
    application
    How can I do that? Do I have to tinker the SMSC service and arrange for something like this?

  • How to trap opening and closing of adobe print dialog?

    I'm working on a asp.net page with dynamically embedded pdf document in it.
    I'm using embedded  javascript to print the pdf document after a button click and some processing serverside.
    As you know print dialog doesn't open immediately and it takes some to open.
    And now I'm in a situation where I need to trap opening and closing events of pdf print dialog,
    as internet explorer doesn't wait for print dialog to be closed before returning the page control flow to my
    script and as a consequence the user will not be aware of opening print dialog and maybe perform other actions
    without printing.
    Thanks in advance for any HELP!

    I'm working on a asp.net page with dynamically embedded pdf document in it.
    I'm using embedded  javascript to print the pdf document after a button click and some processing serverside.
    As you know print dialog doesn't open immediately and it takes some to open.
    And now I'm in a situation where I need to trap opening and closing events of pdf print dialog,
    as internet explorer doesn't wait for print dialog to be closed before returning the page control flow to my
    script and as a consequence the user will not be aware of opening print dialog and maybe perform other actions
    without printing.
    Thanks in advance for any HELP!

  • How to display Applet window in user browser?

    Hi,
    Can anyone help me in displaying the applet in the user browser.
    I am using a java script method(callApplet) in my JSp page which will be invoked when a button is clicked.
    So when the button is clicked the i am getting the new window, but the applet window is not displaying i am
    getting just a blank image.
    I guess we have to change in browser setting for enabling the applet window.
    Can anyone help me where we have to enable for applet setting in our browser (ie browser setting) or do we need to install any software for viewing the applet window.
    Here is my code to display the applet in browser:
    My JSP Page includes below code:-
    function callApplet()
         window.open("http://infch00878:8080/USMS-Local/jsp/home1.html");
    And home1.html file is :-
    <html>
    <applet code="aDraw.class" archive="aDraw.jar" width="520" height="330" name="aDraw">
    <param name="url" value="http://infch00878:8080/adraw/jsp/save.jsp">
    <param name="save" value="Save">
    <param name="bgcolor" value="#F0F0F0">
    <param name="image" value="test2.jpg">
    <param name="sizeW" value="430">
    <param name="sizeH" value="450">
    <param name="bouton" value="D:\test\bouton.gif">
    </applet>
    </html>
    Thanks in advance for your help.

    I'll ask the same question again: does the applet work in AppletViewer (if you do not know what appletviewer is, you should review Sun's documentation on applets - http://java.sun.com/docs/books/tutorial/deployment/applet/ )? It is easy to diagnose problems when you have certain steps to at which tobreak the problem apart...here, if the applet does not work in Appletviewer, than the problem is with the applet or your link to the applet in the html, and not anything downstream of that.

  • No such element exception when applet window closed

    My applet can throw a NoSuchElementException as it closes during sudden death. The Java Console reports:
    Exception in thread "AWT-EventQueue-2" java.util.NoSuchElementException
         at java.util.LinkedList.getFirst(Unknown Source)
         at java.awt.SequencedEvent.getFirst(Unknown Source)
         at java.awt.SequencedEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)Sometimes that sequence displays once, sometimes twice. The error appears to be 90% or more repeatable.
    1) open link in new window http://r0k.us/graphics/SIHwheel.html
    2) view Color Log (menu item Help -=> Show Log)
    3) close the whole browser window
    It does not appear to happen without the dialog for the Color Log displayed. Nor does it appear to happen simply upon leaving that page. I'm guessing it is some sort of race condition as the applet is shut down and it doesn't have the surrounding window it started with. It only happens when running as an applet. When ran as a program, it always shuts down cleanly.
    It occurs less often if you:
    1) open the link in new window
    2) leave the page
    ) come back to it while the Java Console is still alive (before JVM goes away)
    3) view the Color Log
    4) close the browser window.
    I am running 64-bit Windows 7, and have observed this problem in Firefox, IE, and Chrome.
    With no hints as to where within my code this is occurring (if indeed it is within "my" code), I have no idea how to write an SSCCE. The exception seems to relate to enumerations, which I believe must be occuring during the shut down seqence. See:
    * http://download.oracle.com/javase/1.5.0/docs/api/java/util/NoSuchElementException.html
    What can I try doing to prevent the error from occurring? (Besides not closing the browser window while my applet is running and has a dialog open. ;) )
    *(added immediately before posting)* I just noticed that if any of the first three dialogs in the Help Menu are open, this behavior can occur. So it probably has nothing to do with the tables in the Color Log. The fourth, About, item is a simpler modal dialog, and you aren't even able to close the browser window while it is open.
    Now that I know the crash can happen with any of the non-modal dialogs, I will write an SSCCE, just to see if it occurs in a much simpler applet, if nothing else.

    As promised, an SSCCE with build instructions and an applet environment.
    CloseMyWindow.java import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.IOException;
    import java.net.URL;
    import javax.swing.*;
    public class CloseMyWindow  extends JApplet
        public JPanel makeContent() {
         JButton help = new JButton("Help");
         help.addActionListener( new ActionListener() {
             public void actionPerformed(ActionEvent e) {
              Dimension size = new Dimension(400, 250);
              HelpBox hb = new HelpBox("CloseMyWindow Help",
                  "cmwHelp.html", false, size);
         JPanel jp = new JPanel();
         jp.add(help);
         return jp;
        // method expected by applets
        public void init()
         try {
             javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
              public void run() {
                  JPanel frame = makeContent();
                  setContentPane(frame);
         } catch (Exception e) {
             System.err.println("makeContent() failed to complete: " + e);
             e.printStackTrace();
        public static void main(String[] args)
            EventQueue.invokeLater(new Runnable() {
                public void run() {
                    JFrame frame = new JFrame("Test");
                    frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                    frame.add(new CloseMyWindow().makeContent());
                    frame.pack();
                    frame.setVisible(true);
    class HelpBox extends JDialog
    {   // general window for display of HTML page
        HelpBox(String title, String pUrlS, boolean modal, Dimension pSize)
         super((Frame)null, title, modal);
         final String     urlS  = pUrlS;
         final Dimension     size  = pSize;
         SwingUtilities.invokeLater(new Runnable() {
             public void run() {
              setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              JEditorPane ep = new JEditorPane();
              ep.setEditable(false);
              try {
                  URL url = getClass().getResource(urlS);
                  ep.setPage(url);
                  JScrollPane eps = new JScrollPane(ep);
                  eps.setPreferredSize(size);
                  getContentPane().add(eps, BorderLayout.CENTER);
              } catch (IOException ioE) {
                  System.err.println("Unable to display help pane");
                  ioE.printStackTrace();
              pack();
              setLocationRelativeTo(null);
              setVisible(true);
    }cmwManifest.txt (be sure to end line with a carriage return) Main-Class: CloseMyWindowcmwHelp.html <html>
    <head><title>Help for CloseMyWindow</title></head>
    <body>
    Good, you've opened this dialog.  Now close the browser window containing
    my applet.
    </applet>
    </body>
    </html>cmw.html <html>
    <head><title>Close My Window</title></head>
    <body>
    <applet code="CloseMyWindow.class"
            archive="CloseMyWindow.jar"
            width="450" height="300">
    Your browser is completely ignoring the <i>applet</i> tag!
    </applet>
    </body>
    </html>1) capture the 4 code segments above and save them as correspondingly-named files.
    2) compile:
    ] javac CloseMyWindow.java
    3) build the jar:
    ] jar cvfm CloseMyWindow.jar cmwManifest.txt *.class cmwHelp.html
    4) test the jar:
    ] java -jar CloseMyWindow.jar
    5) run the applet. Open page cmw.html in a new browser window
    6) enable Java Console (mine is set to autostart on any applet or JNLP)
    7) click the applet's Help button. A new dialog should open up.
    8) close the browser window
    9) observe if an error is reported in Java Console
    I am seeing the error in this small applet. Maybe the .java file will give you guys some clues.

  • How to Change Applet Windows Title in EBS 11.5.10.2?

    Dear All, would like to check How do I change the Applet Form Windows Title in EBS 11.5.10.2?
    Thanks.

    Hi,
    Anybody know how to change the wording in the red rectangle part ?Check my previous reply, it answers your question (login to System Administrator responsibility and navigate to Profile > System, search for the profile name, and change it at the Site level).
    Regards,
    Hussein

  • Window-Closing Events

    Please, clarify the sequence. When user clicks a "cancel" button on a JDialog's descedant, I make clean up and call dispose. I've hooked hide and dispose methods of the dialog and getting the followind sequence:
    disposing
    hiding
    disposing
    hiding
    That is, hide and dispose are called twice by swing. Initially, I was considering using a hook at hide or dispose for performing a clean-up action. However, doing clean-up twice is bad idea.

    Use java.awt.WindowListener and the Window.addWindowListener method (JDialog descends from Window). From the javadoc:
    void windowClosed(WindowEvent e)
    Invoked when a window has been closed as the result of calling dispose on the window.
    void windowClosing(WindowEvent e)
    Invoked when the user attempts to close the window from the window's system menu.
    I haven't tested it to see how many times it gets called, but I would guess only once.

  • IE locks out after applet window closed

    I am using an applet which communicates with the server through RMI.
    I am launching a browser window with my applet in it from a secure socket layer server.
    When I close this window IE locks out but Netscape doesn't.
    I tried overriding Applet.destroy() in order to dispose() any windows which I make using the browser frame and which might still be hanging around.
    I notice that Netscape calls Applet.destroy() but IE doesn't or does not get that far.
    Please can anyone tell me if I am on the right track and/or what I might try to fix this lockout.
    Thanks,
    Nick

    Hi,
    I have a similar problem. From watching he trace file of the Java plug-in, IE 5.50.4134.0600 is calling the STOP, DESTROY, DISPOSE, and QUIT applet events all together. It doesn't wait for the applet.stop and applet.distroy functions to finish. My applet saves the user settings in serialized objects and sends it to the server to be saved in the database. If this process finishes before the shutdown of IE, it goes through to the server. Unfortunately, it's not always that fast.
    My applet is not signed. That means that any restricted call in applet.stop() and applet.distroy() will be restricted because they are not called from inside the sand box. I read somewhere that signing the applet will solve this. However, Is that the cause of my problem?
    Thanks,
    BYTTNerd

  • How to tracking all windows open event?

    I have a pb 11.5 app. I want to track when user open any window. Firstly, use need to open login window and verified by username and password. After that, open a main frame window with menu.  Then user will open any window for the app. I want to track when a user open a window.
    Simple solution is: in open event script for each window add a code to track who and when open this window. This need too many code as the app has more 400 window object.
    Also thinking about a solution, like a global service, when open any window, log this open event. but not sure how to do it. W
    What's the best solution with minimum code for this issue?

    You can create a new ancestor for all the windows with the code you want. Any window that is inherited from window needs to be edited to inherit from your new ancestor. That's the simplest way to do it.
    If you edit source on windows inherited from window they look like this:
    forward
    global type w_child_gen from window
    end type
    end forward
    shared variables
    end variables
    global type w_child_gen from window
    Change the work window to w_newancestor or whatever you called it. That's the simplest solution with minimal code changes.
    To find these windows you can use pbsearch to look for "from window"

  • Applet window closing problem

    hi all,
    I am in need of some guidance, my program uses a GUI but i have a problem in that when the user clicks the window close button at the top right of the screen i need to execute some code but i am unable to do so, have i got the correct method? :o(
    public boolean handleEvent (Event e)
        boolean value = false;
        if ((e.target == this) && (e.id == Event.WINDOW_DESTROY))
          if (listener != null)
           //here i would like to execute some code before setting the boolean variable
            value = true;
          else
             value = false;
        return value;
      }//end handle event()

    Good day,
    As far as I'm concered, the "handleEvent (Event e)" has been deprecated and "processEvent(AWTEvent event)" should be used instead since JDK 1.1.
    I have an occurance of that "handleEvent" thing that I would like to "convert" to "processEvent", however I'm having problems with that.
    The first, which is simple, is to remove the true/false on the return statement of the handler. "handleEvent()" returns a boolean, whereas "processEvent()" returns nothing.
    When I try to get the value of the "event.id" or "event.target", the compiler claims that the information is protected.
    Can someone be nice enough to provide a code snippet to ease the transition between the "handleEvent()" and "processEvent()" things ?
    Best regards.

  • Window closeing event

    Hi all,
    I,ve created a Bank Class, that creates Atm ,s from a button in the bank
    can someone show me how to close each frame individually instead of all at once
    this is were i create the atm class
         public void actionPerformed(ActionEvent {
    if(ae.getSource( ) == b1)
    laB2.setText("Atm "+index+" now Created");
    b1.setLabel("Atm"+index);//creates atm labeled in bank     
    Atm Atm1 = new Atm(hsbc);
    //Atm1.setText("Atm"+index);
    [code\]
    Thank you very much

    Ref Above, i get the following Error,
    Hope you can Help
    Thanks Again
    public void actionPerformed(ActionEvent ae){
    if(ae.getSource( ) == b1)
    Atm Atm1 = new Atm(hsbc);
    Atm1 .addWindowListener(new vWindowAdapter()                
    public void windowClosing(WindowEvent win_eve)
    Atm1 .setVisible(false);
    [code\]
    --------------------Configuration: j2sdk1.4.0_01 <Default>--------------------
    C:\Assignment2\Ass2 Code\Assignment2.java:189: local variable Atm1 is accessed from within inner class; needs to be declared final
                                  Atm1 .setVisible(false);
                                                    ^
    C:\Assignment2\Ass2 Code\Assignment2.java:189: cannot resolve symbol
    symbol  : method setVisible  (boolean)
    location: class Assignment2.Atm
                                  Atm1 .setVisible(false);
                                                         ^
    C:\Assignment2\Ass2 Code\Assignment2.java:185: cannot resolve symbol
    symbol  : method addWindowListener  (<anonymous java.awt.event.WindowAdapter>)
    location: class Assignment2.Atm
                               Atm1 .addWindowListener(new WindowAdapter()

Maybe you are looking for

  • Mail crashes after 10.6.4 update

    I tried the usual things. Boot into safe mode. Fix permissions. Install the 10.6.4 combo updater. Delete the envelope files and reimported all my mails. all to no avail. So what happens? I start Mail. Mail begins downloading,synchronizing and filteri

  • Unable to create a webi report and 3 times it prompting for logon credentai

    Hi, We have a issue, 1.We are  unable to create a webi report and 3 times it is prompting for logon credentials. 3.After giving the logon credentials 3 times then it is working fine. 4.We are  using IIS Jakarta redirector . 5.We are  able to view the

  • Soap Receiver Adapter problem. very urgent..

    Hi, When I am sending data from XI to CRM through soap receiver communication channel I am getting error: Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: response message contains an error XIAdapter/PARSING/ADAP

  • Adding objectClass to existing context...

    I'm a newbie so bare w/ me =). How do I add an objectClass in JNDI to an existing entry/context in a directory? e.g. I wasnt to add: objectClass=psAddress to a current entry that has: cn=Brian Van,o=Home objectClass=top objectClass=person objectClass

  • SBO generated FormID for FS

    Hi, SBO will generate a FormID for every Formated Search form. May I know which table should I reference for the FormID? I need to capture events in the FS form so, I need to further understand how this FormID is generated/stored. Any suggestion will