Problem when add component

Hi all!
I am newbie at swing and i want to ask something..
I create a swing interface with some components but when i call a function and a player component in a JPanel, all the other components of the application disappear!
Why?
Thank in advance,
muldergr

ok ok.. i post some code:
public class FrameMain extends JFrame {
     public FrameMain() {
          initialize();
     private void initialize() {
          this.setSize(1024, 768);
          this.setContentPane(getJPanel());
          this.setVisible(true);
     private JPanel getJPanel() {
          if (jPanel == null) {
               jPanel = new JPanel();
               jPanel.setLayout(null);
               jPanel.add(getJTabbedPane(), null);
          return jPanel;
     private JTabbedPane getJTabbedPane() {
          if (jTabbedPane == null) {
               jTabbedPane = new JTabbedPane();
               jTabbedPane.setSize(new java.awt.Dimension(1024,768));
               jTabbedPane.setLocation(new java.awt.Point(0,10));
               jTabbedPane.addTab("", null, getJPanel1(), null);
          return jTabbedPane;
     private JPanel getJPanel1() {
          if (jPanel1 == null) {
               jPanel1 = new JPanel();
               jPanel1.setLayout(null);
               jPanel1.setPreferredSize(new java.awt.Dimension(1,1));
               jPanel1.add(getJTabbedPane1(), null);
               jPanel1.add(getJPanel3(), null);
               jPanel1.add(getJPanel5(), null);
               jPanel1.add(getJPanel4(), null);
          return jPanel1;
          private JPanel getJPanel5() {
          if (jPanel5 == null) {
               jPanel5 = new JPanel();
               jPanel5.setLayout(null);
               jPanel5.setLocation(new java.awt.Point(650,18));
               jPanel5.setSize(new java.awt.Dimension(340,425));
               jPanel5.setBorder(new TitledBorder(null,"Video"));
               jPanel5.add(getPanelPlayer(), null);
               jPanel5.add(getPanelControl(), null);
          return jPanel5;
          private JPanel getPanelPlayer() {
          if (panelPlayer == null) {
               panelPlayer = new JPanel();
               panelPlayer.setSize(new java.awt.Dimension(320,240));
               panelPlayer.setLocation(new java.awt.Point(10,50));
               panelPlayer.setLayout(new GridLayout(1,1));
               panelPlayer.add(player.getVisualComponent());
          return panelPlayer;
          private JPanel getPanelControl() {
          if (panelControl == null) {
               panelControl = new JPanel();
               panelControl.setSize(new java.awt.Dimension(320,20));
               panelControl.setLocation(new java.awt.Point(10,290));
               panelControl.setLayout(new GridLayout(1,1));
               panelControl.add(player.getControlPanelComponent());
          return panelControl;
}     and i also have a function like this:
          private void createVideoWindow(String inVideoFile){
          this.getPlayer(inVideoFile);
          jPanel5.add(getPanelPlayer(), null);
          jPanel5.add(getPanelControl(), null);
     }but when i call this, all the other components of jpanel1 disappear..
any help?

Similar Messages

  • Facing problem to add component in a panel dynamically

    I face serious problem to add component dynamically on a jpanel. can any one help me?
    I have one panel inside a frame. And I have another 3 or 4 panel. dynamically i want to change the panel inside the frame with the other panel.
    can anybody help me with source code?
    Your earliest response is highly appreciated.

    remove is reflected immediately without calling
    validate() but it does not work for adding. please
    give me some code.Post a small demo code that is generally compilable, runnable and could reproduce your problem. See: http://homepage1.nifty.com/algafield/sscce.html and http://www.yoda.arachsys.com/java/newsgroups.html

  • Problem when Add Serial Number for Goods Receipt PO Document

    Dear All,
    In my App I have function to Add goods receipt PO and Serial for these items of this document as code bellows:
    oGrp = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes)
                'Add Header Goods Receipt
                oGrp.CardCode = "CC1"
                oGrp.CardName = "Card Code 1."
                oGrp.DocDate = now
                oGrp.DocDueDate = now
                oGrp.TaxDate = now
                Dim Qty As Int32 = 2
                For i As Integer = 0 To Qty - 1
                    oGrp.Lines.SerialNumbers.SystemSerialNumber = 1
                    oGrp.Lines.SerialNumbers.ManufacturerSerialNumber = "MSR01" & "-" & i
                    oGrp.Lines.SerialNumbers.InternalSerialNumber = "ISR01" & "-" & i
                    oGrp.Lines.SerialNumbers.SetCurrentLine(i)
                    oGrp.Lines.SerialNumbers.Add()
                Next
                oGrp.Lines.ItemCode = "YMY2H-BLACK"
                oGrp.Lines.ItemDescription = "My Item"
                oGrp.Lines.Currency = "USD"
                oGrp.Lines.Quantity = Qty
                oGrp.Lines.Price = 10000
                oGrp.Lines.DiscountPercent = 0
                RetVal = oGrp.Add()
                If RetVal <> 0 Then
                    oCompany.GetLastError(ErrCode, ErrMsg)
                    Return -1
                Else
                  End If
    When Add this document I have Error : "You should use existing serial/batch numbers for this document type ". Please help me fix this problem. In my SAP doesn't have Serial for these item. Please let me know How to add serial master data?
    Thanks & Regards

    Dear,
    Thanks for your support but when I chaged code as bellows:
    oGrp = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes)
                'Add Header Goods Receipt
                oGrp.CardCode = "CC1"
                oGrp.CardName = "Card Name."
                oGrp.DocDate = MyArrContainDocInfo(2)
                oGrp.DocDueDate = MyArrContainDocInfo(3)
                oGrp.TaxDate = MyArrContainDocInfo(4)
                Dim Qty As Int32 = 2
                oGrp.Lines.ItemCode = "YMY2H-BLACK"
                oGrp.Lines.ItemDescription = "My Item"
                oGrp.Lines.Currency = "USD"
                oGrp.Lines.Quantity = Qty
                oGrp.Lines.Price = 10000
                oGrp.Lines.DiscountPercent = 0
                For i As Integer = 0 To Qty - 1
                    oGrp.Lines.SerialNumbers.SetCurrentLine(i)
                    oGrp.Lines.SerialNumbers.SystemSerialNumber = i
                    oGrp.Lines.SerialNumbers.ManufacturerSerialNumber = "MSR01" & "-" & i
                    oGrp.Lines.SerialNumbers.InternalSerialNumber = "ISR01" & "-" & i
                    oGrp.Lines.SerialNumbers.Add()
                Next
                RetVal = oGrp.Add()
                If RetVal <> 0 Then
                    oCompany.GetLastError(ErrCode, ErrMsg)
                    Return -1
                Else
                              End If
    I have the same Error: "You should use existing serial/batch numbers for this document type". I try config in Gerneral Setting Form as image bellow: [http://www.hoanghaicap.com/GS.png|http://www.hoanghaicap.com/GS.png]. Please help me fix this problem. I try Add Goods receipt PO with items manage by Serial it's OK but by SDK it's not OK.
    Thanks & Regards,
    Edited by: Tao lao on Mar 10, 2010 2:44 AM

  • Problem when add the subject

    hi.. i'm trying to send email from a ASA Sybase database.. i register the class or the jar and call to the java method wrapper.. easy.. the problem is when adding the subject or the text of the email.. the proccess stuck there and don't send the mail.. but i try send outside the database from the main method and the mail is sended..
    which could be the problem?
    appreciate your help
    miguel

    i'm sure.. no exceptions.. i set to true the debug option in the session object and i log everywhere.. after all the statements.. and all are wrapped between a huge try/catch.. when i set the subject or the text the execution only stop and wait there like a infinite loop.. i say stop because the execution of the method don't log anymore.. the last tree statements of my send method is: add the subject, add the text and send the email via the Transport class.. the static method send.. when i comment the lines that add the subject and the text, the execution stuck when try to send the email without a subject and text.. is strange.. because i try outside the database and the email is sended.. i don't think that is a security problem.. is the same user that run the class and the same jvm..
    any ideas?
    thanks..

  • Premiere Elements 4.0, Crash problems when add trasition features

    Operate a VAIO VGN-AW11XU,which was purchased in Dec. 2008 and was loaded with Premiere Elements 4.0
    This is the most powerful multimedia VAIo, with all features installed like 4GB memory,Intel Centrino 2 processor T9600 (2.8 GHz),VISTA Ultimate, NVDIA 9600GT and dedicated GDDR3 Video Memory of 512 Mb.
    I keep on getting CRASH problems especially when I try to add transition to my video clips. The problem message details are :
    Problem Event Name: APPCRASH
    Application Name: Adobe Premiere Elements.exe
    Application Version: 4.0.0.0
    Application Timestamp: 46f98f81
    Fault Module Name: StackHash_06a9
    Fault Module Version: 6.0.6001.18000
    Fault Module Timestamp: 4791a7a6
    Exception Code: c0000374
    Exception Offset: 000b015d
    OS Version: 6.0.6001.2.1.0.256.1
    Locale ID: 1032
    Additional Information 1: 06a9
    Additional Information 2: bc3df167e4e07c2f973b80c7de9b1a5b
    Additional Information 3: a44f
    Additional Information 4: 2a1b05c4d7cdba5c95e750c734db17fa
    I have the latest QuickTime installed.
    The camcorder is the SONY Handycam HDR-SR12E which records on a 120GB hard disc.
    The video clips which were recorded with above camcorder, are ( SD )MPEG-2PS
    Your help will be highly appreciated.
    Thank you
    Ilias

    Μακάρι να μπορούσα να μιλήσω πολύ πράσινο, Ηλία! Αλλά θα χρησιμοποιείται μόνο το Google μεταφραστή! Εάν λειτουργεί, όμως, θα σας στείλουμε μια απάντηση στα αγγλικά και στα ελληνικά.
    I do not know about the SD recording format with that camcorder. I am sorry. But, if your Premiere Elements project is set up for AVCHD, you should be able to edit AVCHD with that computer.
    I do recommend optimizing Vista, however, so that you will get the best performance. Here's how to do it:
    Δεν ξέρω για την SD μορφή εγγραφής που με βιντεοκάμερα. Λυπάμαι. Αλλά, αν σας Premiere Elements έργο που έχει συσταθεί για AVCHD, θα πρέπει να μπορείτε να επεξεργαστείτε AVCHD με αυτό τον υπολογιστή.
    Εγώ συνιστούμε να βελτιστοποιήσετε Vista, όμως, έτσι ώστε θα έχετε την καλύτερη απόδοση. Να πώς να το κάνουμε:
    http://www.adobeforums.com/webx/.3bc448a7
    Also, make sure your Vista is updated to Service Pack 1.
    Επίσης, βεβαιωθείτε ότι η ενημέρωση να είναι Vista Service Pack 1.

  • Time loop problem when add a parellel subvi in another time loop

    I have four time loops in parellel, they work find
    without any problem. However when I add a third party
    Vi as a subvi in parellel inside a another time loop.
    The first four time loops start working eraticly.
    Is there any way I can make them work independently
    time wise. There is no data transfering between any
    of the loops

    Hello
    The VI with the timing loop is set to cycle once every second, and all it does
    Is turn on a boolean light indicator off and on every second. It has a boolean
    inverter connected to the shift registers of the loop. Its priority is set to Normal.
    The third party VI interacts with a spectrometer hardware. The spectrometer measures
    The amount of light and transform the data collected by the spectrometer into digital information, which is then passes to LabView. LabView then compares the sample information to a reference measurement and displays the processed spectral information.
    The timing loops of the main VI is manually set by me the user.
    The timing loops would loose its sequence; the loops would run normal for a couple
    Of cycle the
    n either run fast or run slow. If I take out the third party subvi everything
    Runs fine
    I am using windows XP with LabView 7.1
    Attachments:
    Dr_Grady_Solinoid_HM_3.vi ‏129 KB
    USB2000_SUBVI.vi ‏238 KB

  • Problem when add Chroma Key filter to DVCPRO HD

    I ingested some DVCPRO HD 720Pn footage into FCP. The footage was shot against a green screen. I started by creating a 4-point garbage matte around the person and then I added Color Smoothing and when I add the Chroma Key filter, the green screen comes back and a large grey area appears on screen. What is going on?

    Ok, I just tried it again by creating the 4-pt matte and as soon as I drag the Chroma Key Filter to the clip, the points disappear, and the entire green screen comes back. Is this the way it is supposed to behave? Is there some type of apply button that I need to select after adjusting the last point of the garbage matte before doing anything else?
    Thanks!
    Message was edited by: rick.pearl

  • Personalization Problem when add a Custom Region

    Hi all,
    Scenario:
    Via Jdeveloper i have create a custom region with associated AMxx, VOxx, CO and works fine.
    I need to "add" the region to a standard page of Apprisal (/oracle/apps/per/selfservice/appraisals/webui/EmpAppraisalsPG).
    Two way:
    1. add the region to the page modifing the EmpAppraisalsPG page
    2. personalize the original page with "flexible layout" and then add the region.
    if I try 2, i receive the error: VOxx not found in Application module AM (not AMxx),
    bacause seems that the AM associated with the custom region is not the 'custom' AM ( AMxx) but the root AM (the AM of EmpAppraisalsPG).
    Question:
    It's true? So, is not possible to add via personalization a custom region with a custom AM associated?
    Thanks in advance
    Chaly

    Adding it using personalization using a flexibleLayout is the right approach. I am assuming the VOxx is part of AMxx, if yes then which API are you using to get handle to the AM, getRootApplicationModule or getApplicationModule(webBean). The second API should be used to fetch the nested AM and not the first one.

  • Error when add Purchase Order

    Hi all,
    I have a problem when Add new Purchase Order, plz help me!
    I add new Purchase Order, system alter error as below:
    ''Document cannot contain both regular and fixed asset items"
    I checked Item Master Data and I'm sure items in this PO is not Fixed Asset
    Thanks and Best Regard!

    Hi Sudhir,
    I'm using SAP Version 9.0 PL 09 and I don't see checkbox Fixed Asset in Item Master Data.
    I selected in SQL Itemtype = 'I' and AssetItem ='N'.
    Please see below pictures and help me again.
    Many thanks!
    Regards,
    Hong Bich

  • Tree component display problem when text too long???

    hi all
    whenever i use a tree component to display some sort of text, i run into problems when the width of the text being display for a node is larger than the width of the tree component.
    Given: Tree tree1 with Node node1 and Child Node child1
    When the text of either node1 or child1 is longer than the width of tree1, the text is displayed on its own single line UNDERNEATH the node images. this makes the text look like it does not belong to the group of children of a given node.
    is there anyway to add maybe a text area or some sort of scrolling region to allow for any length of text for any node??
    thanks everyone!

    Yes, you can change the size of the tree node text field. Please see the "Tree Node Component Properties Window" section in the Help Contents within the IDE. Look at the info under the "Appearance" section.

  • I am unable to view google ads running alongside and under videos on YouTube. This is only a problem when I use Firefox. If I use another browser, I can see the ads. I do not have adlock as it does not appear in my plug-ins/add ons. Please help..

    I have been using Firefox for about two years. For about a month now I have been unable to view any Google advertisements that run on YouTube pages alongside and under videos. This is important for my business. I would like to stay with Firefox, but this is only a problem when I use Firefox and is not a problem with Internet Explorer or Google Chrome as I checked. I tried uninstalling Firefox and all plugs ins and add ons and then reinstalling it. This did not work. Firefox seems to be blocking the Google codes that enable the ads to run on the pages. I look forward to your help. Thank you.

    CS2 is very old and reached its "end of life" a while back.  So probably won't run on modern operating systems.  If you can still run it, you'll need to uninstall what you have and re-install with the download link below to activate it.
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3
    Nancy O.

  • Add row to tabular form pagination problem when sorted

    Hi,
    I have a problem with a tabular form that has various sortable columns. If the user tries to add a row when the sort order is set to something where possibly the nulls are appearing first in the list, then the user cannot enter any data (since the last page of results is always shown after clicking the add row button).
    I know the empty record is in the list somewhere since the pagination page count is increased by 1, but there is no way for the user to enter data into that record since traversing back pages then removes the empty record. How can I fix this? Is it possible to programatically reset all column sorting?
    Cheers!

    Hi,
    Sort orders in reports are stored as user preferences - these can be removed using PL/SQL. Have a look at: Need to do column SORTING only when I click the column heading and Re: Default sort and pagination placement not working in reports
    Or, you could try adding a blank row in your SQL statement itself: Problems With "Add A Row"
    Andy

  • Problem when installing a Adobe ES component

    Hi, all,
    I encounter problems when installing a custom authentication provider component. Belows are the error logs prompt. However, I don't know what is going wrong. Does anyone has idea?
    (It said that LifeCycleImpl.class not found, however, the file is already in the adobe-authentication-spi.jar)
    Thanks a lot!
    Jacky
    ==============================================================================
    Error log
    !ENTRY com.adobe.DSC_Admin_UI 4 4 2009-05-12 16:42:52.839
    !MESSAGE install of C:\Adobe\adobe-authentication-spi.jar failed
    !STACK 0
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl._install(ComponentRegistr yImpl.java:456)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl.install(ComponentRegistry Impl.java:254)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doBMT(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:109)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:315)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invokeCall(SoapSdkEndpoint. java:138)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invoke(SoapSdkEndpoint.java :81)
    at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:930)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
    at com.adobe.idp.dsc.provider.impl.soap.axis.InvocationFilter.doFilter(InvocationFilter.java :43)
    at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 190)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:761)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:673)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:498)
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
    at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:90)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
    at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1439)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:112)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:454)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink .java:383)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:263)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitia lReadCallback.java:113)
    at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
    at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
    at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:784)
    at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)
    Caused by: java.io.FileNotFoundException: C:\temp\adobews_A3441ZD455DXPS4Node01Cell_A3441ZD455DXPS4Node01_server1\ArchiveStore\401\ com\test\authentication\LifeCycleImpl.class (The system cannot find the path specified.)
    at com.adobe.idp.dsc.management.impl.ArchiveFileManagerImpl.inflateArchiveIntoLocalCache(Arc hiveFileManagerImpl.java:300)
    at com.adobe.idp.dsc.management.impl.ArchiveFileManagerImpl.getArchiveDirectory(ArchiveFileM anagerImpl.java:113)
    at com.adobe.idp.dsc.management.impl.ArchiveStoreImpl.getArchiveDirectory(ArchiveStoreImpl.j ava:586)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl._install(ComponentRegistr yImpl.java:305)
    ... 70 more
    Caused by: java.io.FileNotFoundException: C:\temp\adobews_A3441ZD455DXPS4Node01Cell_A3441ZD455DXPS4Node01_server1\ArchiveStore\401\ com\test\authentication\LifeCycleImpl.class (The system cannot find the path specified.)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:205)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:157)
    at com.adobe.idp.dsc.management.impl.ArchiveFileManagerImpl$1.doInTransaction(ArchiveFileMan agerImpl.java:276)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:342)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequiresNew (EjbTransactionCMTAdapterBean.java:284)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionCMTAdapter_ caf58c4f.doRequiresNew(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:143)
    at com.adobe.idp.dsc.transaction.impl.DefaultTransactionTemplate.execute(DefaultTransactionT emplate.java:79)
    at com.adobe.idp.dsc.management.impl.ArchiveFileManagerImpl.inflateArchiveIntoLocalCache(Arc hiveFileManagerImpl.java:258)
    ... 73 more

    I also got the same error to deploy LCES2 components.
    I used Windows server 2008 64 bit R2,WAS v7.0.0.9 and run manually LCM.
    I can't deploy LCES2 components and i am stack in  that case.
    I got many errors those deployments
    Error are below:
    [2010-11-08 17:22:25,328], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. See the stack trace for details.
    com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    [2010-11-08 17:22:25,328], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. See the stack trace for details.
    com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    [2010-11-08 17:22:25,328], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. While doing first time passivation for a document..
    com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    Caused by: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        ... 44 more
    [2010-11-08 17:22:25,328], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. While doing first time passivation for a document..
    com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    Caused by: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        ... 44 more
    [2010-11-08 17:22:25,328], SEVERE, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCs, Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-lccplm-dsc.jar.
    com.adobe.livecycle.lcm.core.LCMException[ALC-LCM-030-200]: Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-lccplm-dsc.jar.
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:403)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    Caused by: com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        ... 5 more
    Caused by: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        ... 44 more
    [2010-11-08 17:22:25,328], SEVERE, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCs, Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-lccplm-dsc.jar.
    com.adobe.livecycle.lcm.core.LCMException[ALC-LCM-030-200]: Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-lccplm-dsc.jar.
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:403)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    Caused by: com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        ... 5 more
    Caused by: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        ... 44 more
    [2010-11-08 17:22:25,328], INFO, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCsDialog, Progress: [64%,    Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-lccplm-dsc.jar.]
    [2010-11-08 17:22:25,328], INFO, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCsDialog, Progress: [66%, Deploying DSC   adobe-barcodedforms-dsc.jar]
    [2010-11-08 17:22:25,343], INFO, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCs, Installing DSC [C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-barcodedforms-dsc.jar, com.adobe.livecycle.BarcodedForms, 9.0.0.2.20100908.1.136973]
    [2010-11-08 17:22:25,343], INFO, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCs, DSC not installed. DSC will now be installed: com.adobe.livecycle.BarcodedForms C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-barcodedforms-dsc.jar
    [2010-11-08 17:22:25,375], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. See the stack trace for details.
    com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    [2010-11-08 17:22:25,375], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. See the stack trace for details.
    com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    [2010-11-08 17:22:25,375], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. While doing first time passivation for a document..
    com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    Caused by: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        ... 44 more
    [2010-11-08 17:22:25,375], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. While doing first time passivation for a document..
    com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    Caused by: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        ... 44 more
    [2010-11-08 17:22:25,375], SEVERE, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCs, Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-barcodedforms-dsc.jar.
    com.adobe.livecycle.lcm.core.LCMException[ALC-LCM-030-200]: Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-barcodedforms-dsc.jar.
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:403)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    Caused by: com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        ... 5 more
    Caused by: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        ... 44 more
    [2010-11-08 17:22:25,375], SEVERE, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCs, Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-barcodedforms-dsc.jar.
    com.adobe.livecycle.lcm.core.LCMException[ALC-LCM-030-200]: Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-barcodedforms-dsc.jar.
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:403)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    Caused by: com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        ... 5 more
    Caused by: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        ... 44 more
    [2010-11-08 17:22:25,375], INFO, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCsDialog, Progress: [66%,    Failed to deploy component C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-barcodedforms-dsc.jar.]
    [2010-11-08 17:22:25,375], INFO, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCsDialog, Progress: [67%, Deploying DSC   adobe-forms-dsc.jar]
    [2010-11-08 17:22:25,421], INFO, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCs, Installing DSC [C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-forms-dsc.jar, com.adobe.livecycle.Forms, 9.0.0.2.20100902.3.712286]
    [2010-11-08 17:22:25,421], INFO, Thread-10, com.adobe.livecycle.lcm.feature.deployment.DeployDSCs, DSC not installed. DSC will now be installed: com.adobe.livecycle.Forms C:\Adobe\Adobe LiveCycle ES2\deploy\adobe-forms-dsc.jar
    [2010-11-08 17:22:25,500], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. See the stack trace for details.
    com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    [2010-11-08 17:22:25,500], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. See the stack trace for details.
    com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:344)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCFiles(DeployDSCs.java:369)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.deployDSCs(DeployDSCs.java:151)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$ActualTask.<init>(DeployDSCsTas k.java:88)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCsTask$1.construct(DeployDSCsTask.java :56)
        at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
        at java.lang.Thread.run(Unknown Source)
    [2010-11-08 17:22:25,500], SEVERE, Thread-10, com.adobe.idp.Document, DOCS001: Unexpected exception. While doing first time passivation for a document..
    com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: 500: Internal Server Error
        at com.adobe.idp.DocumentManagerClient.clientSidePush(DocumentManagerClient.java:425)
        at com.adobe.idp.Document.doInputStream(Document.java:1693)
        at com.adobe.idp.Document.passivateInitData(Document.java:1481)
        at com.adobe.idp.Document.passivate(Document.java:1252)
        at com.adobe.idp.Document.passivate(Document.java:1196)
        at com.adobe.idp.DocumentManagerClient.passivate(DocumentManagerClient.java:258)
        at com.adobe.idp.dsc.provider.impl.base.RequestOutputStream.defaultPassivate(RequestOutputSt ream.java:40)
        at com.adobe.idp.DocumentRequestOutputStream.passivate(DocumentRequestOutputStream.java:56)
        at com.adobe.idp.Document.writeObject(Document.java:882)
        at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at java.util.HashMap.writeObject(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
        at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
        at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
        at java.io.ObjectOutputStream.writeObject0(Unknown Source)
        at java.io.ObjectOutputStream.writeObject(Unknown Source)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.serializeRequest(Soa pSdkBindingStubUtil.java:78)
        at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:124)
        at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
        at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.invoke(ComponentRegis tryClient.java:373)
        at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.install(ComponentRegi stryClient.java:131)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponentUsingDoc(DeployDSCs .java:634)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installComponent(DeployDSCs.java:61 2)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.installAndStartComponent(DeployDSCs .java:603)
        at com.adobe.livecycle.lcm.feature.deployment.DeployDSCs.de

  • C7 conversation message auto add in problem when i...

    I am facing the problem when i send sms using the conversation function, when i send click send sms out, it will auto add in wording message inside my text message. example of my content message : "hello how are u there?"....after i click send, it will auto add in text message inside my current message "hello how are u there?today really a busy day for me" and auto send it out. When i check back only know that "today really a busy day for me" is a vy long time ago message....what is happen? can anyone here help?

    Hi,
    my last question.... do i need to modify something else or i only modify the edidd table???
    I'm going crazy, I try with your suggestions but it doesn't work like i want.
    Do i need modify the nast or the edidc structures??
    I show you my code:
    LOOP AT int_edidd.
    Control flag
        IF ( control IS INITIAL ).
    Predecessor segment.
          IF ( int_edidd-segnam EQ 'E1EDK14').
            control = 'X'.
            num_seg = int_edidd-segnum.
            gs_edidd = int_edidd.
            var_sn = int_edidd-segnum + 1 .
            gs_edidd-segnum = var_sn.
            MODIFY int_edidd FROM gs_edidd.
            CLEAR gs_edidd.
          ENDIF.
        ELSE.
    Modify the segnum
          gs_edidd = int_edidd.
          IF ( NOT gs_edidd-psgnum IS INITIAL ).
            num_dep = gs_edidd-psgnum + 1.
            gs_edidd-psgnum = num_dep.
          ENDIF.
    Guardamos la modificación.
          var_sn = int_edidd-segnum + 1.
          MODIFY int_edidd FROM gs_edidd.
          CLEAR gs_edidd.
        ENDIF.
      ENDLOOP.
    num_dep = num_seg.
      READ TABLE int_edidd INTO gs_edidd INDEX 1.
      gs_edidd-segnum = num_seg .
      gs_edidd-segnam = 'E1EDKT1'.
      gs_edidd-psgnum = '000000'.
      gs_edidd-hlevel = '02'.
      new_e1edkt1-tdid = 'ZFRM'.
      gs_edidd-sdata = new_e1edkt1.
      INSERT gs_edidd INTO int_edidd INDEX num_seg .
    Many thanks

  • I receive "Database access denied" when trying to add component 4543BD

    I receive "Database access denied" when trying to add component 4543BD to my schematic. This component was added from a previous version. I'm using Multisim version 12.0.0  Student edition.
    Solved!
    Go to Solution.

    Hi Diarra,
    I checked my database and  the  4543 is not in the Student Edition. If you opened a schematic that was created in a higher version such as the Educaiton Edition and copied the part to your database, when you place this part you will get the access denied message. 
    Attached is a schematic with the part, you can open it and build you circuit around it.
    Tien P.
    National Instruments
    Attachments:
    4543.ms12 ‏62 KB

Maybe you are looking for