Redraw problem when overlapping components

As part of a project to automatically generate a GUI for a legacy application I found a problem that occures when I have to overlap JComponents (have to - because the basic layout is given by the legacy application). The following code demonstrates the problem:
import java.awt.*;
import javax.swing.*;
public class Overlap
    public static void main(String args[]) {
        JFrame frame=new JFrame("test");
        JTextField text1=new JTextField("text1");
        JTextField text2=new JTextField("text2");
        JLabel label=new JLabel("LabelTest");
        label.setOpaque(true);
        Container content=frame.getContentPane();
        content.setLayout(new GridBagLayout());
        GridBagConstraints c=new GridBagConstraints();
        c.gridx=c.gridy=1;
        c.gridwidth=2;
        c.fill=GridBagConstraints.BOTH;
        content.add(label, c);
        c=new GridBagConstraints();
        c.gridx=c.gridy=c.gridwidth=1;
        c.fill=GridBagConstraints.BOTH;
        content.add(text1, c);
        c=new GridBagConstraints();
        c.gridx=2;
        c.gridy=c.gridwidth=1;
        c.fill=GridBagConstraints.BOTH;
        content.add(text2, c);
        frame.setVisible(true);
        frame.pack();
}This gives a JFrame with a JLabel over two JTextField's - the JTextField's shoud be invisible. Actually you have a blinking cursor, the text of both JTextField's is selectable with the mouse, you are able to switch the focus between the JTextField's with the mouse ...
Is there a way to force correct Z-order handling in this case?
Tested with linux JDK 1.4, with 1.3 and 1.2 the initial drawing is done correctly but you are still able to select the JTextField's with the mouse.

try to explain what you whant to doMh - as I said - it is a cooked down version of the problem. Imagine a 80x25 GridBagLayout (the base of this problem is a form based text mode application) with up to about 500 separate widgets in it. The problem now is that it is possible that some of these widgets overlap some others. So it is possible to place a label like widget over something that behaves like a textfield.
Z order of a component is best made by using
JLayeredPane objects can be added to the same layer
but there will be problems if they overlapIn the case of JLayeredPane I think need to optimize the usage of them - when I take one for each widget then I'm sure I'm running out of the design specifications. But then I've to detect overlapping by myself.
All this is a bit strange because there already is a Z-order defined when adding all this to one single JPanel - is the actual behaviour a swing bug or am I running out of the specified limits even there?

Similar Messages

  • Screen sharing redraw problem

    I am seeing graphical redraw problems when I try screen sharing with another Mac 10.8 computer, Mac Mini mid 2011. For example, when switching menus, the old ones remain. This always worked just fine in Lion. I tried turning adaptive and scaling off and on, but no difference.

    Don't know whether I found the problem, but I did manage to get Screen Sharing working reasonably again.
    Things had gotten so bad that even mouse moves and keystrokes were getting mangled and delayed, so I decided to try a VNC client (Chicken of the VNC) to see whether things were better. I had to set the host machine to accept VNC connections, so you could say I "touched" the screen sharing panel in System Preferences. I also shut down the Screen Sharing app on the client side so I could use the VNC. The VNC worked OK but would not display the entre screen, so I quit. Then I restarted the Screen Sharing client, and--hey presto--it worked! Response to mouse & keyboard were back, and video was good enough to watch a video.
    So, I guess folks could try (1) jiggling something in the Screen Sharing prefs on the host machine, and (2) restarting the Screen Sharing client.
    -- rick

  • Overlapping components problem

    Hello,
    I have been developing an applet for Quickplaces. Basically it shows what is happening in the Quickplace from different kind of views. A view from a document where people can see who has been viewing it for example. Or a view from a member where one can see what documents the member wrote.
    Now I have chosen to implement a sort of circle visualisation for this. In the center is the object the view is about, a document, a member, etc. Outwards are other objects. In the case of a document view, the members that responded to it, in a circle more outward: members that viewed it. Etc. It's sort of a dartboard.
    I have written a custom layoutmanager for each view for this. A problem I have encountered is that once I tell a member or document component to let itself be placed by the layout managerr I get a fixed size component. It looks ok until you for example hover over it, wich I have keyed to a zooming in on details method. When you do that your usually overlapping other components. Why, components can be overlapped without zooming in some views. The problem is the mouselistener I have attached fires when I hover over de component size. Not the size of the actual graphical representation. My members for example are represented by a sphere. They are bounded by a rectangle component though. So if I enter my mouse anywhere near the sphere... it already zooms in, resulting in the user zooming in on a member, but actually he wanted to zoom in on a member that was close to this one, but for the code was "underneath" the component of the other member.
    It's a bit hard to explain without posting a screenshot.
    How do I fix this?

    Hi,
    I need a clarification, taking the example you
    provided:
    you have a rectangle components, that display spheres.I have a viewer class for document's member's and room's. RoomViewer, MemberViewer, etc. These paint the actual graphic. They are given a size by the custom layoutmanager i wrote like this:
            //Layout members
            int mems = members.size();
            if(mems != 0){
                double angle = 360 / mems;
                double baseAngle = 0;
                synchronized(members){
                     Iterator iter = members.iterator();
                     while(iter.hasNext()){
                         MemberViewer tempMember = (MemberViewer)iter.next();
                         Dimension d = tempMember.getSize();
                         double lastLog = tempMember.getMember().getLastLog() * 160 + Math.sqrt((Math.pow(50, (double)2) + Math.pow(50, (double)2)));
                         int xCoord = (int)((xCenter + (Math.cos(Math.toRadians(baseAngle)) * lastLog)) - (0.5 * d.getWidth()));
                         int yCoord = (int)((yCenter + (Math.sin(Math.toRadians(baseAngle)) * lastLog)) - (0.5 * d.getHeight()));
                         tempMember.setBounds(xCoord, yCoord, container_size, container_size);
                         baseAngle += angle;
            }A viewer get's it's data from the model class. MemberViewer from Member, etc.
    First you want to zoom only when the mouse is hovered
    on the sphere. Is that right ?Yes I have implemented the enters part of the mouselistener. As soon as the mouse enters the component in wich the graphical representation is drawn it zooms. with zoom I multiply the size by some and add some different graphs inside the circle, but that is not important. What is interesting is probably that the size of the component when it is not zoomed is the size for when it is zoomed in, or the zoom in would be cut off by the component boundaries.
    What about the overlapping ? could you clarify a bit
    please.
    Basically it overlaps nicely on the view. Once you interact though I get stuck. Clicking, entering and exiting is supposed to do things. But all these 3 fire when your mouse does that thing inside the component, not inside the graphical representation. So you start zooming quite a bit away from the circle of a member btw, because that distance is already part of the component, but not of the drawing.
    Who is reponsible for drawing the shapes ?The Viewers paint themselves. The Layoutmanager gives them a basic place to start their own painting and a View class controls the layoutmanager.
    And who listens to mouse motion ?The viewers themselves do. They implement mouseListener.
    in mouseMoved(MouseEvent e)
    you can get the point with e.getPoint(); where the
    mouse points to.
    This will help you to handle the event only when
    hovered on the shape,
    but it will maybe not solve the hovering over
    overlapped components.I don't quite follow that. A Shape can still not implement MouseListener.

  • Problems with Logical Components

    Hi All,
    I am having problems with Logical Components with our project. We are implemeents SAP HCM and we have defined a logical component Z_ERP for the ECC server. now when you look at the transaction from SOLAR02 it seems they also have a logical Component SAP Learning Solution that is assigned to them. what could be the cause of this???

    Hi Trevor,
    If you brought them in from the Business Process Repository, the logical component is going to be the default one. If you want to use your own, you need to replace the default one with yours.
    You can do this in SOLAR_PROJECT_ADMIN by going to the System Landscape tab > Systems tab > highlight the SAP Learning Solution logical component row > press F4 > replace it with Z_ERP.
    If for some reason SAP Learning Solution isn't listed as a logical component you may have to add it, you can also just go to SOLAR02 > Edit > Replace Log. Comp > Enter SAP Learning Solution in the top box and Z_ERP in the bottom one > click Save.
    regards,
    Jason

  • Mac Pro 2007 with Nvidia 8800GT screen redraw problems on Mac OS 10.5.2

    I seem to be having a slight screen redraw problem. Such as when grabbing the browser window and moving up and down it seems the redraw can't keep up,also seems problematic when watching flash or other video online. It does it in the finder too for windows listings or in icon view there is a fluttering or flashing back and forth, kind of like a white super split second flash when dragging the window box smaller or larger not as bad as when making smaller. Hard to describe but my original Ge-force that I pulled was not having these characteristics. I figure that the drivers need tweaking. In windows I am not getting these results. I have newer boot camp installed as well as the leopard graphics update done so I am trying to see if others are having a slight problem or maybe it is me.
    Also I make certain it is not heat related as I monitor that and it does not matter at what temp it is.

    Here's another similar experience -- and my solution.
    I bought a Quad-core 2.8GHz (8GB RAM) Mac Pro in May and got the "better" Nvidia 8800GT. I thought I was happy, but there were redraw issues after sleeping and a display "roughness" I found annoying. Upgrading to OSX 10.5.4 didn't help.
    I found it to be mostly absent on startup, but sleeping the Mac would bring it on. I.e., after sleep, the relatiionship between the 8800GT would be different than before. when I logged out and in again, the problem woud vanish. No what I expect from a "superior" graphics card. I ascribed it to funky drivers from Apple.
    The store I bought the Mac from offered to swap for my suggestion of an ATI HD 3870, so I went for it about a week ago.
    This card is far smoother than the 8800GT and just as fast in rendering benchmerks for graphics. (I'm not a gamer.) I am a happy camper! There is no stuttering, oddball redraw, or jerkiness as there had been with the 8800. It's perfect! Never mind that it may be 5% slower for gamers, it feels faster for my use.
    BUT NOTE: As I now see from reading several forums, I wasn't alone is getting a screaming-Mimi at first! The first 3870 ran at nearly full fan speed at power-up. The speed changed a little with resolution changes on my big Mitsubishi CRT monitor, and actually stopped when I switched to 1080x1920 @ 72Hz! Then the fan would start and quit, start and quit randomly -- convincing me it was defective.
    I returned this RED-shrouded unit and the store replaced it, this time with (randomly) a BLUE-shrouded unit. (Slightly lower serial.)
    Bottom Line: This replacement 3870 is quiet as a mouse! Fan runs near-silently at startup and after hours of regular use in a 75ºF room. I get the distinct feeling that a bunch of cards with wonky fan controllers were built, and some of us got 'em.
    Bad News: The ATI HD 3870 does NOT support multiple refresh rates under Windows XP-SP2 booting the Mac Pro, with or without Boot Camp drivers installed. No version of the ATI drivers fixes this, and ATI does not officially support Boot Camp yet. You can choose a resolution okay, but you're stuck at 60Hz refresh -- a pain for those of us who hate 60Hz flicker. (I like 100Hz refresh.)

  • I have a problem when I run the DTP

    hello
    the day before , I load  data in a PSA "MASTER DATA" mode full,
    then in the morning  I load data again this "MASTER DATA."
    I can see  that the same lines do not not present a problem but the lines were changed, i have a problem when I run the DTP?
    I get this messages errors:
    .« the time interval & (from/to) for the data
    ecords 1 & and 2 & overlaps in characteristic 0COSTCENTER &.u201D
    u201CMessages for data records saved; request is red acc. to configurationu201D
    best regard
    francoise dinatale

    As this is a master data load, the attribute change run is mandatory before performing the next load.
    The probable reason for this is in the master data table there is an entry for a characterisitic value and the load resulted in another value. The difference between these two records is the object version. Exisitng record will have A version and the changed record has M version.
    So when we active master data(attribute change run ) then M version overwrites A version and hence on a net we have only one record in master data table.
    Post the above task if we again load master data, as is in your case, then the record will find its place in M version.
    As the activation is not performed(probably), the system finds it difficult, with previously loaded M version and currently loaded M version and hence the reason for the message.
    Naveen.A

  • A namespace problem when doing Create InfoArea in bw system

    Dear all,
    we met a problem when excute a process in our bw system:
    our process as follow:
    rsa1(Data Warehousing Workbench:Modeling) --> InfoProvider --> Create InfoArea
    then a error message window came out as below.
    error in object editing
    No valid change license available for n
    /BPR3R/
    Choose 'Display object' or 'Cancel'.
    its detail message is as follow:
    Message no. TO127
    Diagnosis
    You cannot edit the object AREA 0INDUSTRIES. This may be due to the following reasons:
    The corresponding namespace /BPR3R/ is not entered in the namespace table with a valid change license.
    In the namespace table there is no entry with a valid change license that matches the template /BPR3R/.
    System Response
    The function terminates.
    Procedure
    Check the name of the object AREA 0INDUSTRIES. If necessary, choose another object name.
    Otherwise, let the system administrator check the change licenses of the namespaces in your SAP system.
    Maintain the namespaces in the Tools of the Transport Organizer under Administration -> Display/Change Namespaces.
    You need to check and correct the entries that match the template /BPR3R/.
    You need to distinguish between the following cases:
    The namespace is /0SAP/:
    Make sure that the namespace role is C (recipient) and the flags SSCR popup and SAP standard are activated. The license fields remain empty.
    You did not create the namespace yourself. Instead, the namespace owner is SAP or another software vendor.
    Make sure that the namespace role is C (recipient). The field Repair license must either contain the valid license, or the flag SSCR popup must be activated. Contact the namespace owner and ask what you should now do, and what the valid repair license is.
    You are the namespace owner:
    Proceed according to the documentation on applying for and setting up namespaces. If the namespace role is P (producer) then you need a valid development license. For information on this, see the SAP Library under BC - Basis Components -> Change and Transport System -> BC - Namespaces and Naming Conventions -> Reservation of Namespaces).
    Then we did the below action:
    se06 --> system change option
    in this view, we found  /BPR3R/ this Prefix.
    And it is empty in  /BPR3R/ 's namespace/name range volume.
    What is next action we should take to solve this problem?
    Anyone experienced or expert,
    Please kindly give advice.
    Regards,
    Allen

    Hello Allen,
    Cold you please check the following notes which explain about this namespace creation and transport ?
    401778 - Using namespaces to develop individual BW objects
    150451 - Setting up development namespaces
    105132 - Reserving namespaces
    150451 - Setting up development namespaces
    Best regards,
    Rafa

  • Met a problem when excute a process about Create InfoArea

    Dear all,
    we met a problem when excute a process in our bw system:
    our process as follow:
    rsa1(Data Warehousing Workbench:Modeling) --> InfoProvider --> Create InfoArea
    the below error message window came out.
    error in object editing
    No valid change license available for n
    /BPR3R/
    Choose 'Display object' or 'Cancel'.
    its detail as follow:
    Message no. TO127
    Diagnosis
    You cannot edit the object AREA 0INDUSTRIES. This may be due to the following reasons:
    The corresponding namespace /BPR3R/ is not entered in the namespace table with a valid change license.
    In the namespace table there is no entry with a valid change license that matches the template /BPR3R/.
    System Response
    The function terminates.
    Procedure
    Check the name of the object AREA 0INDUSTRIES. If necessary, choose another object name.
    Otherwise, let the system administrator check the change licenses of the namespaces in your SAP system.
    Maintain the namespaces in the Tools of the Transport Organizer under Administration -> Display/Change Namespaces.
    You need to check and correct the entries that match the template /BPR3R/.
    You need to distinguish between the following cases:
    The namespace is /0SAP/:
    Make sure that the namespace role is C (recipient) and the flags SSCR popup and SAP standard are activated. The license fields remain empty.
    You did not create the namespace yourself. Instead, the namespace owner is SAP or another software vendor.
    Make sure that the namespace role is C (recipient). The field Repair license must either contain the valid license, or the flag SSCR popup must be activated. Contact the namespace owner and ask what you should now do, and what the valid repair license is.
    You are the namespace owner:
    Proceed according to the documentation on applying for and setting up namespaces. If the namespace role is P (producer) then you need a valid development license. For information on this, see the SAP Library under BC - Basis Components -> Change and Transport System -> BC - Namespaces and Naming Conventions -> Reservation of Namespaces).
    Please give your advice.
    Regards

    Hi,
    this forum is about the SAP BusinessObjects BI Solution architecture. I would suggest you post your question into the SAP BW Forum.
    regards
    Ingo Hilgefort

  • 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

  • 8350i: Changing the font size results in screen redraw problems

    Hey everyone.  
    BlackBerry 8350i
    v4.6.1.204 (3.0.0.73)
    BBAlpha Sans, size 8
    When the screen redraws to account for a change in font or font size, there is a redraw problem that overwrites portions of the menu.  Steps to repro and some supporting dialogue from a 3rd party software developer are below.
    Steps needed to observe the problem:
    Go to Options -> Screen / Keyboard.
    Select Font size.
    Roll up and down between the different available font sizes.
    Observe that sections of the font size menu disappear and reappear as the "Quick brown fox" example text is redrawn.
    I have always thought that menus should receive visual preference, meaning that anything redrawn in the background should not overwrite them.  The 8350i does not seem to honor this convention, however.  Instead, the sample text renders in front of portions of the font size menu list, making those portions of the menu disappear.
    Case in point: AstraSync 3.0, just out of beta, uses some nice stylization for its main email presentation screen.  However, when you click the menu button, the menus are slowly devoured by the background text and eventually become invisible.  I reported this issue to AstraSync tech support and they have stated that this appears to be a bug in the 8350i, not their software:  
    James and others, Unfortunately the problems with the menu disappearing 
    appear to be a device issue and as such is not something that we are 
    able to fix.
    -Vicky Cwilewicz, Wednesday, April 08, 2009 
    http://forum.astrasync.com/Default.aspx?g=posts&t=649
    This conversation occurred while the AstraSync software was in beta, and I have confirmed that the issue continues now that the software is out of beta.  Given the phone's own rendering issues within Screen/Keyboard, I think their claim, that this represents a bug in the phone itself, has some merit.  Any thoughts or advice on a workaround?  Assuming that this is truly a bug in the device software itself, will RIM please consider addressing it?
    Thanks,
    James 
    Message Edited by jmegna on 06-02-2009 01:16 PM

    This problem is also evident in Opera Mini. A bit of googling revealed it was introduced in OS version 4.6.1.128. This is quite clearly a device bug and we would appreciate a response from RIM on the matter.
    Cheers

  • Redraw problems in iTunes 7

    Just ugraded to iTunes 7.0.0, and I'm having window redraw problems. Whenever I play a video or go to one of the new fancy album art views (the latter of which usually won't display at all), it ends up causing a semi-random rectangular portion of the iTunes window to not redraw. So if I go back to the song list, it'll still be displaying the previous screen's information, though it still functions correctly as far as playing songs is concerned. If I drag the window down so that area is off-screen, then back again (or minimize and restore), it redraws the correct current screen. But then as soon as I scroll or anything, the visual bit gets stuck in that section again. (At least the program itself isn't freezing.)
    I do have a fairly old video card. I have a four-year-old dual-867 G4 (MDD). I thought I had the cheapest video card available at the time, which I thought was an ATI, but my System Profiler claims I have an nVIDIA 32MB GeForce4 MX (AGP). It's driving two 1600x1200 displays.
    I really like all the new features of iTunes 7, and the higher-quality video from the store. And I'm not really mad since I can still make everything work. But I'd have to agree with others here that Apple didn't do thorough enough testing this time around.
    Ironically, everything I've tried so far worked fine on my Windows box at work... but it is brand new (3GHz dual core, just got them last week)... and only driving a single 1280x1024 display.
    Anybody else find any fixes? I hope Apple has an update soon that fixes this.

    It only partially fixed the problem for me. Prior to doing it, I was okay if I started up in old-style list mode and stayed there. If I switch to another mode, updates would just immediately die and I couldn't really do anything.
    After the fix, I can now switch between the modes and things continue to work. I can also use the album view just fine. However, the cover view is still broken. It at least draws the covers now (instead of just a white box or an un-updated portion of the library list, which is what I got before), but the scroll controls in the covers area are just white boxes.
    I'm on a G4/450 (Sawtooth) upgraded to a G4/1.4. I have two monitors running at 1600x1200, one on a 16 MB ATI Rage 128 Pro and the other on a 16 MB ATI Rage 128. My iTunes window is roughly 1600x960 pixels in size.
    I saw that someone posted the minimum VRAM requirement for iTunes 7 as 16 MB. Where did they find this? All I saw on the download page when I checked yesterday was that it required some G3 variant - nothing about VRAM. And, I don't think many (an?) G3-era machines had 16 MB VRAM, so making that requirement explicit would seem important.
    PB G4 12 1.33; PM G4/450->1.4   Mac OS X (10.4.7)  

  • Hi, i have problem when installing itune. it said:  Could not open key HKEY_LOCAL_MACHINE32\SOFTWARE|Microsoft\Windows\CurrentVersion\Run. Verify that you have sufficient access to that key, or contact your support personnel. please help me!

    hi,
    i have problem when installing itune. it said: 
    Could not open key HKEY_LOCAL_MACHINE32\SOFTWARE|Microsoft\Windows\CurrentVersion\Run. Verify that you have sufficient access to that key, or contact your support personnel.
    Please help me i can't do anything without itune

    For "Could not open key/write value" errors when reinstalling try b noir's user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\
    [LongStringOfLettersAndNumbers]" error messages when installing iTunes for Windows.
    The technique can be applied to the branch of the registry mentioned in the error message.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Strange problem when copying files to NAS

    Hello all. I have a strange problem when trying to copy files from my intel iMac to my Seagate NAS. I am copying files from my HD and when the file is nearly copyied i get an error message saying that the file can't be copied because it is already in use by another application. Well... it surely isn't. I try copying them by ftp (Filezilla) and everything works fine. I can then access them through my media server but !!!! NOT THROUGH MY iMac!!!! It is like the files are not there!!!! But they definetely are! I tried fixing the disk permissions, rebooting NAS, iMac etc but nothing seems to solve the problem. Is there any suggestion of what might be wrong? I am under Mavericks and i am pretty sure that the problem started after the update. When copying from my external USB hard drive to my iMac HD everything works fine. The problem is from my iMac to my NAS.

    Wow... thanks for the time you devote Linc.... Well below are the results of the above commands....
    Step 1 returned no text.
    Step 2 returned the following text:
    com.tunabellysoftware.checkmytemp.GNTPClientService
    jp.co.canon.MasterInstaller
    com.WesternDigital.WDSmartWareD
    com.wdc.WDDMservice
    com.teamviewer.service
    com.tappin.agent.plist
    com.microsoft.office.licensing.helper
    com.klieme.TimeMachineScheduler
    com.adobe.SwitchBoard
    com.adobe.fpsaud
    Step 3 returned the following text:
    com.adobe.PDApp.AAMUpdatesNotifier.59168.9D679ECB-757D-43DD-920E-153524EA697A
    jp.co.canon.cijscannerregister.67792
    jp.co.canon.ij.CNSSelectorAgent.66384
    OpenObject.fuspredownloader.65328
    com.tappin.TappIn.53712
    com.ecamm.PhoneViewHelper.65680
    com.pratikkumar.RemoteHelper.51424
    com.elgato.eyetvhelper.10064
    6.0.65152
    com.tunabellysoftware.TemperatureGaugeHelper
    com.paragon.ntfs.trial
    com.teamviewer.desktop
    com.teamviewer.teamviewer
    com.sony.PMBPortable.AutoRun
    com.google.keystone.user.agent
    com.adobe.ARM.df0ab5bbe6f698196fcc21e3c1e66dcb758bd911f4d637272d9d8109
    com.adobe.AAM.Scheduler-1.0
    Step 4 returned the following text:
    /Library/Components:
    /Library/Extensions:
    ATTOCelerityFC8.kext
    ATTOExpressSASHBA2.kext
    ATTOExpressSASRAID2.kext
    ArcMSR.kext
    CalDigitHDProDrv.kext
    HighPointIOP.kext
    HighPointRR.kext
    PromiseSTEX.kext
    SoftRAID.kext
    /Library/Frameworks:
    AEProfiling.framework
    AERegistration.framework
    Adobe AIR.framework
    AudioMixEngine.framework
    NyxAudioAnalysis.framework
    PluginManager.framework
    TSLicense.framework
    WesternDigital
    iLifeFaceRecognition.framework
    iLifeKit.framework
    iLifePageLayout.framework
    iLifeSQLAccess.framework
    iLifeSlideshow.framework
    iTunesLibrary.framework
    /Library/Input Methods:
    /Library/Internet Plug-Ins:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    Aspera Web.plugin
    Default Browser.plugin
    EPPEX Plugin.plugin
    Flash Player.plugin
    Flip4Mac WMV Plugin.plugin
    JavaAppletPlugin.plugin
    NavIn.plugin
    Quartz Composer.webplugin
    QuickTime Plugin.plugin
    SharePointBrowserPlugin.plugin
    SharePointWebKitPlugin.webplugin
    Silverlight.plugin
    flashplayer.xpt
    iPhotoPhotocast.plugin
    nsIQTScriptablePlugin.xpt
    /Library/Keyboard Layouts:
    /Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.apple.NavService.plist
    com.oracle.java.Java-Updater.plist
    com.sony.PMBPortable.AutoRun.plist
    com.teamviewer.teamviewer.plist
    com.teamviewer.teamviewer_desktop.plist
    /Library/LaunchDaemons:
    com.WesternDigital.WDSmartWareD.plist
    com.adobe.SwitchBoard.plist
    com.adobe.fpsaud.plist
    com.klieme.TimeMachineScheduler.plist
    com.microsoft.office.licensing.helper.plist
    com.oracle.java.Helper-Tool.plist
    com.tappin.agent.plist
    com.teamviewer.teamviewer_service.plist
    com.wdc.WDDMservice.plist
    jp.co.canon.MasterInstaller.plist
    /Library/PreferencePanes:
    EyeConnect.prefPane
    Flash Player.prefPane
    Flip4Mac WMV.prefPane
    GRproofing.prefPane
    Growl.prefPane
    JavaControlPanel.prefPane
    NTFSforMacOSX.prefPane
    Perian.prefPane
    TappIn.prefPane
    TimeMachineScheduler.prefPane
    /Library/PrivilegedHelperTools:
    com.microsoft.office.licensing.helper
    jp.co.canon.MasterInstaller
    /Library/QuickLook:
    GBQLGenerator.qlgenerator
    QuickLookEyeTV.qlgenerator
    iBooksAuthor.qlgenerator
    iWork.qlgenerator
    /Library/QuickTime:
    AC3MovieImport.component
    AppleIntermediateCodec.component
    AppleMPEG2Codec.component
    EyeTV MPEG Support.component
    Perian.component
    /Library/ScriptingAdditions:
    Adobe Unit Types.osax
    /Library/Spotlight:
    GBSpotlightImporter.mdimporter
    LogicPro.mdimporter
    Microsoft Office.mdimporter
    iBooksAuthor.mdimporter
    iWork.mdimporter
    /Library/StartupItems:
    ChmodBPF
    DynDNSUpdater
    EyeConnect
    /etc/mach_init.d:
    /etc/mach_init_per_login_session.d:
    /etc/mach_init_per_user.d:
    Library/Address Book Plug-Ins:
    SkypeABDialer.bundle
    SkypeABSMS.bundle
    Library/Fonts:
    AC-CondensedScript_Unicode.otf
    AC-CuttingEdge.otf
    AC-FrenchToast.otf
    AC-Gorgi.otf
    AC-HiSchool.otf
    AC-Hollow_Unicode.otf
    AC-Lundi.otf
    AC-Lycee.otf
    AC-Pathetic_unicode.otf
    AC-mutlu_unicode.otf
    ACRealAdult.otf
    AVI-BonatiPT-Bold.ttf
    AVI-BonatiPT-BoldItalic.ttf
    AVI-BonatiPT-Italic.ttf
    AVI-BonatiPT-Normal.ttf
    AVI-Jacobs-Bold.ttf
    AVI-Jacobs-BoldItalic.ttf
    AVI-Jacobs-Italic.ttf
    AVI-Jacobs-Normal.ttf
    AVI-Optima-Bold.ttf
    AVI-Optima-BoldItalic.ttf
    AVI-Optima-Italic.ttf
    AVI-Optima-Normal.ttf
    AVI-OptimaCollege-Italic.ttf
    AVI-OptimaCollege.ttf
    AVI-ParisAifel-Medium.ttf
    AVI-ParisAifel-MediumItalic.ttf
    AdLib BT.suit
    AdLibBTReg
    Andale Mono
    ArbuckleShadowNF.otf
    Arial
    Arial Black
    Arial Narrow
    BleeckerStreetShadedNF.otf
    BundleofJoyOutlineNF.otf
    CF Bac
    CF Bar
    CF Bar-Bold
    CF BarText
    CF BarText-Bold
    CF Big
    CF Compacta Bold
    CF Compacta ExtraBold
    CF Compacta Light
    CF Compacta Medium
    CF Compacta Regular
    CF Criton
    CF Criton-Contrafos
    CF Criton-Heavy
    CF Derrida-Bold
    CF Derrida-Book
    CF Derrida-Heavy
    CF Derrida-Light
    CF Derrida-SemiBold
    CF DogEatDog
    CF Fat
    CF Holly
    CF Holly-Bold
    CF Holly-Light
    CF Holly-Medium
    CF Initials
    CF Jet
    CF Jet-Alter
    CF Jet-Left
    CF Jet-Right
    CF Jet-Simple
    CF K-Graffiti
    CF K-Select
    CF KouroudiSelect-Bold
    CF KouroudiSelect-Fun
    CF KouroudiSelect-Regular
    CF KouroudisGraffiti-Dust
    CF KouroudisGraffiti-Light
    CF KouroudisGraffiti-Regular
    CF LetterGothic
    CF MatrixDot
    CF MatrixFax
    CF MatrixMonospace
    CF MatrixNegative
    CF Newspaper
    CF PainterBlack
    CF PainterBold
    CF PainterRegular
    CF Poster
    CF Sans
    CF Sans-Bold
    CF Sans-Heavy
    CF SempliceBold
    CF SempliceRegular
    CF SempliceThin
    CF Smooth
    CF Smooth-CondBold
    CF Smooth-CondNorm
    CF Smooth-ExtraBold
    CF Smooth-Revenge
    CF Smooth-Toy
    CF Sophia
    CF Sophia-Bold
    CF Sophia-BoldItalic
    CF Sophia-Italic
    CF Stamp
    CF Stencil
    CF Suprematica
    CF Twins
    CF Venus
    CFBarSG
    CFBarSGBol
    CFBarTexSG
    CFBarTexSGBol
    CFBigSG
    CFCriSGCon
    CFCriSGHea
    CFDogEatDogSG
    CFEteoclesContrafos
    CFEteoclesHeavy
    CFEteoclesRegular
    CFFatSG
    CFHolSGBol
    CFHolSGLig
    CFHolSGMed
    CFIniSG
    CFJetAlt
    CFJetLef
    CFJetRig
    CFJetSim
    CFKouGraSGDus
    CFKouGraSGLig
    CFKouGraSGReg
    CFKouSelSGBol
    CFKouSelSGFun
    CFKouSelSGReg
    CFLetGotSG
    CFNewSG
    CFSanSG
    CFSanSGBol
    CFSanSGHea
    CFSmoSGConBol
    CFSmoSGConNor
    CFSmoSGExtBol
    CFSmoSGRev
    CFSmoSGToy
    CFSopSG
    CFSopSGBol
    CFSopSGBolIta
    CFSopSGIta
    CFSteSG
    CFSupSG
    CFTwiSG
    Century
    ChicaGogoOpenNF.otf
    D-Regular.suit
    DReg
    DejaVuSans-Bold.ttf
    DejaVuSans-BoldOblique.ttf
    DejaVuSans-ExtraLight.ttf
    DejaVuSans-Oblique.ttf
    DejaVuSans.ttf
    DejaVuSansCondensed-Bold.ttf
    DejaVuSansCondensed-BoldOblique.ttf
    DejaVuSansCondensed-Oblique.ttf
    DejaVuSansCondensed.ttf
    DejaVuSansMono-Bold.ttf
    DejaVuSansMono-BoldOblique.ttf
    DejaVuSansMono-Oblique.ttf
    DejaVuSansMono.ttf
    DejaVuSerif-Bold.ttf
    DejaVuSerif-BoldOblique.ttf
    DejaVuSerif-Oblique.ttf
    DejaVuSerif.ttf
    DejaVuSerifCondensed-Bold.ttf
    DejaVuSerifCondensed-BoldOblique.ttf
    DejaVuSerifCondensed-Oblique.ttf
    DejaVuSerifCondensed.ttf
    Demo_ConeriaScript.ttf
    Demo_ConeriaScript_Slanted.ttf
    Demon
    Demonstrator.suit
    DidgereeDoodleOutlineNF.otf
    DrumagStudioOutlineNF.otf
    ElektromotoNarrowOutlineNF.otf
    Franklin Gothic Demi
    Franklin Gothic Heavy
    FuturBTBol
    FuturCon
    Futura Bd BT.suit
    Futura Condensed.suit
    GFS Goschen-Italic.otf
    GFSAmbrosia.otf
    GFSDecker.otf
    GFSEustace.otf
    GFSFleischman.otf
    GFSGaraldus.otf
    GFSIgnacio.otf
    GFSJackson.otf
    GFSNeohellenic.otf
    GFSNeohellenicBold.otf
    GFSNeohellenicBoldIt.otf
    GFSNeohellenicIt.otf
    GFSNicefore.otf
    GFSPhilostratos.otf
    GFSPolyglot.otf
    GFSTheokritos.otf
    Georgia
    Gill Sans Hel
    Gill Sans Hel Pt-SCOS
    Gill Sans Hel Pt-SCOSBold
    Gill Sans Hel-Bold
    Gill Sans Hel-BoldItalic
    Gill Sans Hel-Con
    Gill Sans Hel-ConBold
    Gill Sans Hel-Demi
    Gill Sans Hel-DemiItalic
    Gill Sans Hel-ExBold
    Gill Sans Hel-ExConBold
    Gill Sans Hel-ExLight
    Gill Sans Hel-Italic
    Gill Sans Hel-Light
    Gill Sans Hel-LightItalic
    Gill Sans Hel-SCOS
    Gill Sans Hel-SCOSBold
    Gill Sans Hel-SemCon
    Gill Sans Hel-SemConBdIt
    Gill Sans Hel-SemConBold
    Gill Sans Hel-SemConIt
    Gill Sans Hel-SemConLight
    Gill Sans Hel-SemConThin
    Gill Sans Hel-Thin
    Gill Sans Hel-UltBold
    Gulim.ttf
    HelveConBol
    HelveNeuMedCon
    Helvetica Condensed.suit
    HelveticaNeue MediumCond.suit
    Looney Tunes Tilt BT.ttf
    LooseCabooseOutlineNF.otf
    Lucida Sans
    PF DaVinciScriptPoly-Inked.ttf
    PF DaVinciScriptPoly-Reg.ttf
    PFAlfabeta
    PFAlfabetaOS Poly Bold.ttf
    PFAlfabetaOS Poly BoldItal.ttf
    PFAlfabetaOS Poly Italic.ttf
    PFAlfabetaOS Poly Regular.ttf
    PFAmateur
    PFArabats.ttf
    PFBarApart
    PFBaseline
    PFBaselineDisplay
    PFBeatnick
    PFBedroom
    PFBellGothicText
    PFBerkleyBlue
    PFBevel
    PFBodoniScriptOne
    PFBodoniScriptTwo
    PFBodoniText
    PFBodoniText Poly-Bold.ttf
    PFBodoniText PolyBoldItalic.ttf
    PFBodoniText-Poly Italic.ttf
    PFBodoniText-Poly Regular.ttf
    PFBulletin
    PFCatalog
    PFCatalogPoly-Bold.ttf
    PFCatalogPoly-BoldItalic.ttf
    PFCatalogPoly-Italic.ttf
    PFCatalogPoly-Regular.ttf
    PFCentury
    PFCereal
    PFCheltenham
    PFCosmonut
    PFCosmonut-Astrobats.ttf
    PFDaVinciScript
    PFDeeJay
    PFDidotOsPoly-Bold.ttf
    PFDidotOsPoly-BoldItalic.ttf
    PFDidotOsPoly-Italic.ttf
    PFDidotOsPoly-Regular.ttf
    PFDigicons-One.ttf
    PFDigicons-Two.ttf
    PFDigidotSemiSquare
    PFDigidotSquare
    PFDinDisplay
    PFDinText
    PFDinTextCompressed
    PFDinTextCondensed
    PFDiplomat
    PFDiplomatPoly-Bold.ttf
    PFDiplomatPoly-BoldItalic.ttf
    PFDiplomatPoly-Italic.ttf
    PFDiplomatPoly-Regular.ttf
    PFDiplomatSans
    PFEarthbound
    PFEphemera
    PFEphemera Poly-Bold.ttf
    PFEphemera Poly-BoldItalic.ttf
    PFEphemera Poly-Italic.ttf
    PFEphemera Poly-Regular.ttf
    PFEtnica
    PFFragment
    PFFranklinGothic
    PFFreeScript
    PFFuel
    PFFusionSans
    PFFuturaNeu
    PFGaramondClassic
    PFGlobal
    PFGoudyInitials.ttf
    PFGrid
    PFHardkore
    PFHausSquare
    PFHighwayGothic
    PFHighwayGothicCompressed
    PFHighwayGothicCondensed
    PFHighwayGothicExtended
    PFHighwayGothicXtraCond
    PFHipster
    PFHitower
    PFHybrid
    PFIndex
    PFInnercity
    PFIsotext
    PFIsotextExtended
    PFJunior
    PFKids
    PFKids-LilStuff.ttf
    PFKonstantinople
    PFKonstantinople Initials.ttf
    PFLetterGothicDisplay
    PFLetterGothicNext
    PFLibera
    PFLithoText
    PFMacsimile
    PFManicAttack
    PFMechanica
    PFMediterra
    PFMonumenta
    PFNext
    PFOnline
    PFPanel
    PFPaperback
    PFPapernote
    PFPlasmatic
    PFPlayskool
    PFPremierDisplay
    PFPremierFrame
    PFPremierText
    PFPress
    PFPsychedelia
    PFRadikale
    PFRafSkript
    PFReminder
    PFReport
    PFRetrospace
    PFRoyalscript
    PFScriptor-Ligatures.ttf
    PFScriptor-Ornaments.ttf
    PFScriptor-Regular.ttf
    PFSectorA
    PFSectorB
    PFSidetrip
    PFSignSkript
    PFSignSkript-AdClips.ttf
    PFStamps
    PFStudio
    PFSugar
    PFSystemplus
    PFTemple
    PFTemple-Icons.ttf
    PFTempleSerif
    PFTextbook
    PFTraffic
    PFTransport
    PFUniversal
    PFVenue
    PFVideotext
    PFWonderland
    PFWonderland-Wonderbats.ttf
    Palatino Linotype
    SketchIcons.ttf
    SketchIconsbold.ttf
    SnoopySnailsOutlineNF.otf
    StadionGreek
    Tahoma
    That_'s Font Folks!.ttf
    Times New Roman
    Times.suit
    TimesRom
    Trebuchet MS
    UB-Aircraft
    UB-AntiqueOlive
    UB-AntiqueOlive-Bold
    UB-AntiqueOlive-BoldItalic
    UB-AntiqueOlive-Italic
    UB-AntiqueOliveBlack
    UB-AntiqueOliveBlack-Italic
    UB-AntiqueOliveCompact
    UB-AntiqueOliveCompact-Ita
    UB-AntiqueOliveLight
    UB-AntiqueOliveLight-Italic
    UB-AvantGarde
    UB-Baskerville
    UB-Baskerville-Bold
    UB-Baskerville-BoldItalic
    UB-Baskerville-Italic
    UB-Bonati
    UB-BonatiCond
    UB-BonatiHeavy
    UB-Byzantine
    UB-Calculator
    UB-Calligula
    UB-Century
    UB-Century-Bold
    UB-Century-BoldItalic
    UB-Century-Italic
    UB-Donuts
    UB-DonutsCond
    UB-End
    UB-Europa
    UB-FarWest
    UB-FarWestExt
    UB-Fashion
    UB-Fine
    UB-Flores
    UB-Free
    UB-Front
    UB-Future
    UB-FutureCond
    UB-Goudies
    UB-Helvetica
    UB-Helvetica-Bold
    UB-Helvetica-BoldItalic
    UB-Helvetica-Italic
    UB-HelveticaBlack
    UB-HelveticaBlack-Italic
    UB-HelveticaCond
    UB-HelveticaCond-Bold
    UB-HelveticaCond-BoldItalic
    UB-HelveticaLight
    UB-HelveticaLight-Italic
    UB-HelveticaThin
    UB-HelveticaThinCond
    UB-King
    UB-Lucky
    UB-Maskat
    UB-Muratti
    UB-MurattiCond
    UB-NewsLetter
    UB-Ninza
    UB-Omnius
    UB-Optima
    UB-Optima-Bold
    UB-Optima-BoldItalic
    UB-Optima-Italic
    UB-Paris
    UB-Rich
    UB-Rockwell
    UB-Rockwell-Bold
    UB-Rockwell-BoldItalic
    UB-Rockwell-Italic
    UB-RockwellBlack
    UB-RockwellBlack-Italic
    UB-RockwellLight
    UB-RockwellLight-Italic
    UB-Script
    UB-Sherlock
    UB-SherlockCond
    UB-Shop
    UB-Sign
    UB-Slogan
    UB-Soccer
    UB-SoccerCondOblique
    UB-Souvenir
    UB-Souvenir-Bold
    UB-Souvenir-BoldItalic
    UB-Souvenir-Italic
    UB-SouvenirBlack
    UB-SouvenirBlack-Italic
    UB-SouvenirLight
    UB-SouvenirLight-Italic
    UB-Times
    UB-Times-Bold
    UB-Times-BoldItalic
    UB-Times-Italic
    UB-Unifine
    UB-Vampire
    UB-World
    Verdana
    VinnieBoombahOutlineNF.otf
    Wingdings
    Wingdings 2
    Wingdings 3
    nbyzn.ttf
    soundfx.ttf
    Library/Frameworks:
    SamsungKiesFoundation.framework
    SamsungKiesSerialPort.framework
    Library/Input Methods:
    .localized
    Library/InputManagers:
    Library/Internet Plug-Ins:
    Google Earth Web Plug-in.plugin
    iGetterBundle.plugin
    Library/Keyboard Layouts:
    Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.adobe.ARM.df0ab5bbe6f698196fcc21e3c1e66dcb758bd911f4d637272d9d8109.plist
    [email protected]t.plist
    com.google.keystone.agent.plist
    Library/PreferencePanes:
    .TVPC93ED0576A
    Library/ScriptingAdditions:
    iGetterScriptingAddition.osax
    Library/Services:
    ToastIt.service
    Finallu step 5 returned the following text:
    Skype, EyeTV Helper, RemoteHelper, PhoneViewHelper, TappIn, Dropbox, Canon IJ Network Scanner Selector EX, fuspredownloader, StatusMenu
    I hope you find it helpful Linc. Many thanks for all the attention!

  • Premiere Pro  CS4 After Effects CS4 Redraw problem

    Greetings. I can't quite figure out how to research this problem. I have included some pics to the
    screen grabs to illustrate my point.
    The problem is, I have a redraw problem with all Adobe programs that have a timeline in them. Flash, After Effects, Premiere Pro;
    I am using a 8800GTS card with the latest drivers from nVidia's website.
    As you can see I have multiple mouse images that remain on the screen when I scrube the time line ( in all adobe programs). There is also another really weird problem; when I open a quicktime movie with PPro CS4 open the audio runs at half speed or slower. When I close PPro the audio reverts back to normal speed?
    I am using: Borris CC6 Boris 9.2 Boris Red 4.3, Genarts Sapphir Effects, Pixelan Spicmaster 2.5, and Hollywood FX 5 plugins.
    Any light on the subject would help or if you could point me in the right direction I'll do the research.
    Thanks for the help.
    Jan

    assuming the problem is only in adobe apps and not anything else right?
    Hmm...
    Well, you can try some of these things
    trash the prefs and clean media cache, though I doubt it will help you in this case
    try with a new project and see if the problem persists
    uninstall ALL plugins and see if that corrects the issue (clearly HFX5 was never meant for CS4 at a minimum and I'm not a fan of old boris stuff - very buggy)
    uninstall and reinstall the Adobe apps and see if that fixes the issue.  If it does add back in CS4 compatible plugins only one at a time and see if the problem returns.
    also what os are you using and how much memory do you have?  could you be running out of memory on a 32bit os?
    Dennis

  • Problems when exporting HD video to tape

    I have edited several hours of HD video from a Sony HDR HC7 camcorder into a one-hour video.  Capturing and editing the video with CS4 went just fine, although opening the footage and rendering it is very time consuming.  However, I have been unable to export to tape without encountering several glitches on the tape.  I define a glitch as a stop and start in the video, ranging from one-half to one second.  I have discussed my problem with Adobe technical support numerous times, and have tried everything recommended.  This includes the installation of a dedicated dual internal hard drive in the RAID 0 configuration, adding one GB of RAM using Windows, striping the tape, optimizing the system according to Adobe instructions, etc. etc.  I have a quad system, 2.33 GHz, with 3.2 GHz RAM (apparently only 3 GB is effective), which contains all of the components recommended by Adobe for using CS4 with HD.  I am using Windows XP, version 3, 32 bit.  I have no problems when I export a standard definition version of the video.  I even rented a different camcorder, a Canon HD20, which resulted in fewer glitches (in fact I was able to export one complete tape with no glitches, but only one.)  I welcome any suggestions!

    I guess first I have to ask why you want to recompress and go back to tape?
    On to comments on solving your problem.  Are you trying to reuse old tapes?
    Recently I have started even having a few glitches in new tapes and yes I have run a cleaning tape several times through the cameras and the only tape I have ever used is Sony HDV tapes.

Maybe you are looking for

  • Change font in notes

    Is there any way to change font or size of font in iCal notes?

  • ITunes (and Safari) won't connect; Firefox fine

    I'm not having any difficulty accessing the internet through Firefox, but iTunes (and Safari, for that matter) don't seem to be connected. I've tried checking the proxies for both of them and nothing appears set in the wrong way. Any ideas? Thanks.

  • Standby not applying the online redo logs

    Hi, The redo apply process does not seem to apply the current logs to the standby database. The output from the query Select last_change#, sequence# from v$standby_log; LAST_CHANGE# GROUP# SEQUENCE# 4 0 10120537 5 8586 6 0 7 0 gives me the current SC

  • Single Click registers as Double Click

    Hi guys, my current issue is a bit hard to explain but here goes:... In CS 5.5 I now have an issue where a single mouse click is often registered as a double-click. This means if, for example, if I single-click on a clip that is placed on the timelin

  • Thread in JTree GUI

    I have a GUI with a JTree. Each time I select a node, the valueChanged method is called and a new thread is being started. Now, for various reasons, I only want to have ONE single thread, that is, i don't want Java to start a new thread each time i s