Error when I push a button in an applet

hi,
I created a class wich extends JApplet. I made several button objects and added actionlisteners to them. One button is supposed to create an object of the class Outcall. I wrote this Outcall class and put it into the directory.
Now when I make an object of this class in a console application (in the main method) there's no problem. But when I do it attached to a actionlistener i get an error in my appletviewer window but the program compiles fine.
can anyone help me
thanx,
olivier
here's my applet
import javax.telephony.*;
import javax.telephony.events.*;
import javax.telephony.media.*;
import javax.telephony.media.events.*;
import java.net.*;
import java.util.*;
import javax.sound.sampled.*;
import java.io.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Test extends JApplet implements ItemListener{
//klasse variabelen
JLabel tekiezennummer;
JTextField nummerinput;
JLabel statuslabel;
JTextField status;     
JPanel kaarten;
String input="";
final static String TELEFOONKIEZER = "TELEFOONKIEZER";
final static String ANTWOORDAPPARAAT = "ANTWOORDAPPARAAT";
//actionlisteners
class luister implements ActionListener{
     public void actionPerformed(ActionEvent e){
     input += ((JButton)e.getSource()).getText();
     nummerinput.setText(input);
class belluister implements ActionListener{
     public void actionPerformed(ActionEvent e){
          Outcall gesprek=new Outcall(input);
          gesprek.bellen();
class clearluister implements ActionListener{
     public void actionPerformed(ActionEvent e){
          input="";
          nummerinput.setText("");
luister luisteraar=new luister();
belluister belluisteraar=new belluister();
clearluister clearluisteraar=new clearluister();
//init
     public void init(){
     Container doos = getContentPane();
          String comboBoxItems[] = { TELEFOONKIEZER, ANTWOORDAPPARAAT };
          JPanel paneel = new JPanel();
          JComboBox keuze = new JComboBox(comboBoxItems);
          keuze.setEditable(false);
          keuze.addItemListener(this);
          paneel.add(keuze);
          doos.add(paneel, BorderLayout.NORTH);
          kaarten = new JPanel();
          kaarten.setLayout(new CardLayout());
          //alles wat met de telefoonkiezer te maken heeft
          JPanel p1 = new JPanel();
          JPanel paneel1=new JPanel();
          JPanel paneeltje1=new JPanel();
          paneeltje1.setLayout(new FlowLayout());
          tekiezennummer=new JLabel("Het te bellen nummer");
          paneeltje1.add(tekiezennummer);
          nummerinput=new JTextField();
          nummerinput.setColumns(20);
          paneeltje1.add(nummerinput);
          JButton clear=new JButton("Clear");
          clear.addActionListener(clearluisteraar);
          paneeltje1.add(clear);
          JPanel paneeltje2=new JPanel();
          paneeltje2.setLayout(new FlowLayout());
          statuslabel=new JLabel("Status");          
          paneeltje2.add(statuslabel);
          status=new JTextField();
          status.setColumns(20);
          status.setEditable(false);
          paneeltje2.add(status);
          paneel1.add(paneeltje1,BorderLayout.NORTH);
          paneel1.add(paneeltje2,BorderLayout.CENTER);
          JPanel paneel2=new JPanel();
          paneel2.setLayout(new GridLayout(0,3));
                    for(int i=1;i<=3;i++){
                    Integer opdruk=new Integer(i);
                    String text=opdruk.toString();
                    JButton knop=new JButton(text);
                    knop.addActionListener(luisteraar);
                    paneel2.add(knop);
               for(int i=4;i<=6;i++){
                    Integer opdruk=new Integer(i);
                    String text=opdruk.toString();
                    JButton knop=new JButton(text);
                    knop.addActionListener(luisteraar);
                    paneel2.add(knop);}
               for(int i=7;i<=9;i++){
                    Integer opdruk=new Integer(i);
                    String text=opdruk.toString();
                    JButton knop=new JButton(text);
                    knop.addActionListener(luisteraar);
                         paneel2.add(knop);
               JButton ster=new JButton("*");
               JButton nul=new JButton("0");
               JButton hek=new JButton("#");
               ster.addActionListener(luisteraar);
               nul.addActionListener(luisteraar);
               hek.addActionListener(luisteraar);
               paneel2.add(ster);
               paneel2.add(nul);
               paneel2.add(hek);
               JPanel paneel3=new JPanel();
               JButton bel=new JButton("Bellen");
               JButton hangup=new JButton("Ophangen");
               bel.addActionListener(belluisteraar);
               paneel3.add("North",bel);
               paneel3.add("Center",hangup);
          p1.add("North",paneel1);
          p1.add("Center",paneel2);
          p1.add("South",paneel3);
     //alles wat met het antwoordapparaat te maken heeft
     JPanel p2 = new JPanel();
     kaarten.add(p1, TELEFOONKIEZER);
          kaarten.add(p2, ANTWOORDAPPARAAT);
          doos.add(kaarten, BorderLayout.CENTER);
//de itemlistener om van paneel te veranderen
public void itemStateChanged(ItemEvent event) {
CardLayout cl = (CardLayout)(kaarten.getLayout());
cl.show(kaarten, (String)event.getItem());
public static

By the way I get the mistake
Exception occurred during event dispatching:
java.lang.NoClassDefFoundError: javax/telephony/CallObserver
     at Test$belluister.actionPerformed(Test.java:35)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1450)
     at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1504)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:216)
     at java.awt.Component.processMouseEvent(Component.java:3715)
     at java.awt.Component.processEvent(Component.java:3544)
     at java.awt.Container.processEvent(Container.java:1164)
     at java.awt.Component.dispatchEventImpl(Component.java:2593)
     at java.awt.Container.dispatchEventImpl(Container.java:1213)
     at java.awt.Component.dispatchEvent(Component.java:2497)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
     at java.awt.Container.dispatchEventImpl(Container.java:1200)
     at java.awt.Component.dispatchEvent(Component.java:2497)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
Exception occurred during event dispatching:
java.lang.NoClassDefFoundError: javax/telephony/CallObserver
     at Test$belluister.actionPerformed(Test.java:35)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1450)
     at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1504)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:216)
     at java.awt.Component.processMouseEvent(Component.java:3715)
     at java.awt.Component.processEvent(Component.java:3544)
     at java.awt.Container.processEvent(Container.java:1164)
     at java.awt.Component.dispatchEventImpl(Component.java:2593)
     at java.awt.Container.dispatchEventImpl(Container.java:1213)
     at java.awt.Component.dispatchEvent(Component.java:2497)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
     at java.awt.Container.dispatchEventImpl(Container.java:1200)
     at java.awt.Component.dispatchEvent(Component.java:2497)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
why do I get this in my applet and not in my console application???
greetz,
olivier

Similar Messages

  • I bought the Dreamweaver CS5 for Windows a few years ago. Now I have also a Mac Book pro, where I have to Install the Dreamweaver CS5. I have made the Download for Mac, but I can't Install it. When I push the button, I got an error message.

    I bought the Dreamweaver CS5 for Windows a few years ago. Now I have also a Mac Book pro, where I have to Install the Dreamweaver CS5. I have made the Download for Mac, but I can't Install it. When I push the button, I got an error message.

    CS5 for Windows can only be installed on Windows operating system.
    You would need to purchase CS5 for Mac OS.
    Given that CS5 is now 4 versions back, it's unlikely you'll find a copy.
    You could get DW CC from the Creative Cloud which supports both Win/Mac platforms.
    Creative Cloud pricing and membership plans | Adobe Creative Cloud
    Nancy O.

  • HT201263 Unable to update, restore or recover. Slider doesn't slide and number pad doesn't work for passcode. What next? Worked last night . Battery charged. When I push Home button I get my backgroung but can't slide slider. Device is recognized by iTune

    Unable to update, restore or recover. Slider doesn't slide and number pad doesn't work for passcode. What next? Worked last night . Battery charged. When I push Home button I get my backgroung but can't slide slider. Device is recognized by iTunes.Help! Thank you.

    Besweet, I'm having the very same problem with 60GB colour which was bought new and worked for 6 months before suddenly just not being recognised by PC. I hadn't changed anything at all.
    I've followed all troubleshooting advice and reinstalled and updated iTunes and iPod updater software but all troubleshooting routes seem to hit the dead end of either the need to access the iPod via the PC (which isn't possible as it's not showing up at all) or the iPod in disc mode stuck at "ok to disconnect".
    It's still under 1yr warranty so will have to take to a dealer.
    I'm sorry that's not much help for you but at least you know it's not a unique problem.
    PC   Windows XP  

  • While using my Iphone 5, all of a sudden  black and white stripes where on the screen. I have tryed to turn the phone off and on again, but there are only the stripes. I can't use it, and nothing happens when I push the buttons. Can someone help me?

    While using my Iphone 5, all of a sudden  black and white stripes where on the screen. I have tryed to turn the phone off and on again, but there are only the stripes. I can't use it, and nothing happens when I push the buttons. Can someone help me?

    Try resetting your phone, hold the home and sleep/wake button down until the apple symbol comes up, then release. If that doesnt work, you may have damaged your phone and need to take it to an apple genius bar.

  • When you push the button VL02N that is in the  post output of goods)

    En inglés:
    Hello, in Peru is required to account when delivery by VL02N, the document is assigned a serial tax (calculated by ranges in a table z), the point is that I have not got any user exit is activated when you push the button VL02N that is in the (post output of goods), I reviewed the user exit and is not active MV50AFZ1 the button and the methods of the badi LE_SHP_DELIVERY_PROC (transaction SE18) were not actively using the button to count the output of goods VL02N transaction delivery
    Would know as one might do this?
    thanks and regards
    En español:
    Hola, en Peru se necesita que cuando de contabilize la entrega por la VL02N, se asigne al documento un consecutivo fiscal (calculado por rangos en una tabla z), el punto es que no he conseguido ningun user exit que se active cuando presiono el boton que está en la VL02N , (contabilizar salida de mercancias), revisé el user exit MV50AFZ1 y no se activa en el botón y los métodos de la badi LE_SHP_DELIVERY_PROC ( transacción se18) tampoco se activam con el botón de contabilizar la salida de mercancia en la transacción VL02N  de la entrega
    Sabrian como se podria hacer esto?
    gracias y saludos

    Hi,
    you can use the BADI " LE_SHP_GOODSMOVEMENT" in SE18 implement and see we have the Parameter IS-LIKP using which you can put values.
    Regards

  • Get Header Texts from a Sales Order when you push 'Save Button'

    Hello,
    I am developing a user exit run when you push 'Save' Button in Sales Document and I do not know how to retrieve current header texts.
    I cannot access to database tables because they haven't been saved yet and I cannot the sales document number.
    Does anyone have any ideas?
    Many thanks!!

    Hi Fernando,
    use the below sample code to get the run time header text.
    write the below code in USEREXIT_SAVE_DOCUMENT_PREPARE.
    DATA : begin of wa_tline,
            tdformat like tline-tdformat,
            tdline like tline-tdline,
       end of wa_tline.
       data it_tline like table of wa_tline.
    data temp_vbeln(70) type c.
           temp_vbeln = xvbak-vbeln.
           CALL FUNCTION 'READ_TEXT'
             EXPORTING
    *         CLIENT                        = SY-MANDT
               id                            = 'Z053'
               language                      = 'E'
               name                          = temp_vbeln
               object                        = 'VBBK'
    *         ARCHIVE_HANDLE                = 0
    *         LOCAL_CAT                     = ' '
    *       IMPORTING
    *         HEADER                        =
             tables
               lines                         = IT_TLINE
    *       EXCEPTIONS
    *         ID                            = 1
    *         LANGUAGE                      = 2
    *         NAME                          = 3
    *         NOT_FOUND                     = 4
    *         OBJECT                        = 5
    *         REFERENCE_CHECK               = 6
    *         WRONG_ACCESS_TO_ARCHIVE       = 7
    *         OTHERS                        = 8
           IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
           ENDIF.
    Thanks,
    Sumanth P

  • Nothing happens when I push download button

    When I try and download Digital Editions using download button, nothing happens. Any solutions?

    Thank you for the help!
    Date: Thu, 13 Aug 2009 16:45:59 -0600
    From: [email protected]
    To: [email protected]
    Subject: Nothing happens when I push download button
    I experienced the same thing on my Mac.  I openned the downloads window in my browser.  Selected the file I had just downloaded.  pressed control + left click.  Then selected show in finder.  Finder openned with the download nnnn.acsm.  I doubled clicked that file and it installed into my ebook reader.
    >

  • I have an iPod touch, 3rd generation, and when I push the button to put it to sleep, my iPod takes a screen shot.  It's really annoying.  Is this a result from updating to iOS 4.3.3?  Also, my screen is EXTREMELY sensitive-breathe on it and it turns on.

    I have an iPod touch, 3rd generation, and when I push the button to put it to sleep, my iPod takes a screen shot.  It's really annoying.  Is this a result from updating to iOS 4.3.3?  Also, my screen is EXTREMELY sensitive—breathe on it and it turns on.

    - Are you also having problems with the Home button?  Maybe it is sticking a little since to take a screen shot you depress the Home and Power/Sleep buttons at the same time.
    - I have not seen your problem discussed here before.
    - I would first try resetting the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Next would be to restore the iPod via iTunes.  First from backup and if problem persists, restore to factory defaults/new iPod.

  • My iphone will not switch screens when I push the button

    my iphone will not switch screens when I push the button

    -try restarting the device
    -reset the device
    -restore the device as new
    -replace the device

  • HT5278 i did this update and now the volume on my phone doesn't appear when i push the buttons on the side of the phone. occasionally i see them, but my speakers won't work for playing videos or music either. it does ring when i receive a call though! ne1

    i did the ios5.1.1 update and now the volume on my phone doesn't appear when i push the buttons on the side of the phone. occasionally i see them, but my speakers won't work for playing videos or music either. it does ring when i receive a call though, and for my alarm. ne1 else had these problems?

    I have had this happen to me on 3GS, 4 and 4s.   Usually the solution is one of the following:
    1-  If  your volume indicator says  headphones even though they are not plugged in, then:
    Stick your headphones into the headphone jack and then remove quickly.
    2. If that does not work Power your phone off. Then when restarting Reset the phone by pressing the home button and the power button at the same time until the apple logo appears.
    3. Make sure you have not chosen to send audio to an Airplay device such as Apple Tv.
    Hope one of these works for you

  • I have an older Power Mac but when i push on button it shuts down, is there a way to re-start?

    I have an older Power Mac but when i push on button it shuts down, is there a way to re-start?

    HI, might help if we knew which model...
    If you don't know the model, find the Serial# & use it on one of these sites, but don't post the Serial# here...
    http://www.chipmunk.nl/klantenservice/applemodel.html
    http://www.appleserialnumberinfo.com/Desktop/index.php
    How to find the serial number of your Apple hardware product...
    http://support.apple.com/kb/HT1349

  • Elite 2540p laptop won't when I push power button

    When I push power button, my laptop Elite 2540p won,t turn on. I used charger, then found a blue light appeared and closed. then I removed battery and supplied power from charger, nothing happened. again I used battery and and pushed power button to turn on, but of no use. Now charger again connected and power given, "orange light is blinking".
    What should I do now?

    This could be a hardware issue, refer:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c01443317
    or
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c03463381
    Wish you luck,
    Karthik
    --Say "Thanks" by clicking the Kudos (purple thumbs up icon in the lower right corner of a post)
    --Please mark the post that solves your problem as "Accepted Solution"

  • Error when clicking on EDIT button on CCM 2.0

    Hi Experts,
    we are experiencing lot of errors when we click on the "EDIT" or any other button on CCM of a CATALOG.
    The Error message we are getting is "Errors while reading catalogs,errors while reading master catalog".
    When we check the Display logs for the catalog, we are having these two error messages
    "Error when generating catalog SRM 200"
    "Error when creating the catalog. "
    Can anyone provide us with a solution on this and pls tell us which SAP program runs for the catalog.
    Thanks in advance
    Dharma

    Hi Dharma,
    You can download the complete guide in SMP.
    https://websmp103.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000567072006E
    Hope this solves your problem.
    Regards
    Kathirvel

  • How can I do to delete some lines of a 2D array when I push a button ?

    With Labview 5.1 : I have a 2D array and I want to delete a line ( I think to delete its first one or its last one could be easier) when I push a control button. How can I do ?
    Regards.
    Cyril.

    I only have LV 6.1, take a look the pic and hopefully that will help. You need to use delete from array and then select which row or column you want to delete. then put it inside the case structure.
    Best Regards,
    Saw
    Attachments:
    test.bmp ‏81 KB

  • 500 internal server error,when clicking review /save button.

    Hi
    Iam facing the problem with pcr  forms in portal .Forms are displaying in portal. when i click the button Review and save button .It is showing 500 internal server error.But sometimes it is working fine upto completed step.There is irregularity in display.
    Iam not understanding why this is  happening like this.So let me know the solution for it.To display properly.
    Here iam sending tracefile to.
    Webresource could not be exchanged!
    [EXCEPTION]
    com.sap.tc.webdynpro.services.sal.util.cache.ResourceNotFoundException: Stream is not valid
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.setInputStream(ResourcePool.java:475)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.datatransport.MassDataSource.setInputStream(MassDataSource.java:106)
         at com.sap.tc.webdynpro.services.sal.datatransport.core.InternalMassDataTransport.replaceInputMassDatasourceByKey(InternalMassDataTransport.java:96)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.replaceCachedResource(WebDynproExchangeHandler.java:217)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.doExchange(WebDynproExchangeHandler.java:181)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doExchangeProcessing(ClientSession.java:1166)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:763)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:174)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:207)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.services.httpserver.exceptions.HttpIOException: Read timeout. The client has disconnected or a synchronization error has occurred. Read [4380] bytes. Expected [14205].
         at com.sap.engine.services.httpserver.server.io.HttpInputStream.read(HttpInputStream.java:186)
         at java.io.InputStream.read(InputStream.java:109)
         at com.sap.tc.webdynpro.basesrvc.util.IOUtil.writeEncrypted(IOUtil.java:154)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$AbstractResourceElement.copyUnique(ResourcePool.java:245)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.save(ResourcePool.java:537)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.setInputStream(ResourcePool.java:471)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.datatransport.MassDataSource.setInputStream(MassDataSource.java:106)
         at com.sap.tc.webdynpro.services.sal.datatransport.core.InternalMassDataTransport.replaceInputMassDatasourceByKey(InternalMassDataTransport.java:96)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.replaceCachedResource(WebDynproExchangeHandler.java:217)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.doExchange(WebDynproExchangeHandler.java:181)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doExchangeProcessing(ClientSession.java:1166)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:763)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:174)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:207)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    with regards,
    Eswar.

    Hi
    Any update information for this issue.
    with rgds,
    Eswar.

Maybe you are looking for

  • Error message. Please help Eagle project lost.

    Please wait... If this message is not eventually replaced by the proper contents of the document your PDF viewer may not be able to display this type of document. You can upgrade to the latest version of Adobe Reader for Mac by visiting http://www.ad

  • SB Audigy (24bit) & Digital

    Hi Will be very grateful if someone can advise, whether the SB Audigy (st Gen Audigy) can work with the Internal Digital I/O card the is used for the SB Li've Series. Regards, Knite00

  • Solaris SAPGUI for Java 7.10 rev 8 try  error JniAgiLibAdaptor. init

    i have a problem java sapgui. Launch the Sapgui and then try to connect to any one of the three choices and it should produce the following error. i am running this on a Solaris 10 32bit. This sam java SAPGUI runs fine when i boot into the windows xp

  • I don't want Foxytunes, but I can't get rid of it even after following various techniques, how do i DO IT?

    I want to get Foxytunes off of my machine, and Windows Remove & Ccleaner can't seem to do it. I'VE FOLLOWED INSTRUCTIONS ON http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on, to no avail. When I tried Help/Troubleshooting, there wa

  • Web Dynpro UI Elements not appearing in GP

    Hi everyone, I have been developing some Development Components using the GP guide found on SDN. The first CO works just fine but for some reason, the second one I created doesn't show any UI elements and it doesn't return any error messages. Has any