BI Publisher hangs when manually deploying through OAS

Hi.
We are trying to manual deploy the xmlpserver.ear file in an Oracle AS10g 10.1.3.3 installation. The BI Publisher version is 10.1.3.3.
I enter all the information correctly, and it seems to be working, but hangs at the end of the deployment process.
I've seen entries on the forum that other people had issues, but I have not seen a resolution.
Anyone encounter this problem and get it resolved?
Thanks,
Jim

Yes I am using App Server Control to deploy following the BI Publisher install manual. I'm putting it in it's own OC4J container, and deploying the xmlpserver.ear file to it.
It hangs at the final step. I didn't see anything in the logs. I tried this several times, always uninstalling the app server and installing from the beginning, but always get the same results.
We are running on Red Hat Linux, AS10g rel 3, BI Publisher 10.1.3.3.
I would think this would have to be reproducable.
Any ideas?
Thanks,
Jim

Similar Messages

  • Publisher hangs when I try to open an image file

    Publisher hangs when I try to open an image file from:
    right-click on image->Change Picture->Change Picture
    The image is on my hard drive.
    It also happens with powerpoint

    Few Questions:
    a. What version of publisher/PowerPoint are you using ?
    b. Are you able to insert this image through Insert -> Image ? Image itself could be corrupt. Try to open it with some other editor ?

  • Crystal Reports 13 for VS2013 Hangs when report deployed via Clickonce

    Hi,
    We have upgraded from vs2008 to vs2013 one of our .net C# projects. Project consist of a Server and a windows client. Reports are run in the client, and data transported with disconnected Datasets ( No direct connection to the database ). We use Microsoft clickonce to deploy this application to our users.
    The problem we have is that after the migration clients deployed with clickonce experience a delay of about 1 minute while the report is shown with a message "please wait while the document is processing". However if we run the application directly from the filesystem the report is shown immediately.
    running the clickonce deployed shows the following message using process monitor, however after ~1 minute the report displays correctly.
    6:08:05.5863138 PM
    ECMWin.exe
    18156
    CreateFileMapping
    D:\Users\o\AppData\Local\Temp\2\temp_6a4d2478-2cab-45d5-8e21-af5d5d3a761a {56013444-9297-4F76-A8DE-00A08C289BBF}.rpt
    FILE LOCKED WITH WRITERS
    SyncType: SyncTypeCreateSection, PageProtection:
    Code:
            CrystalReport1 c = new CrystalReport1();
            public Form1()
                InitializeComponent();
                c.Load();
            Stopwatch s = new Stopwatch();
            private void Form1_Load(object sender, EventArgs e)
                if (c.IsLoaded)
                    crystalReportViewer1.ReportSource = c.FileName.Replace("rassdk://", ""); ;
                    Console.WriteLine("crystalReportViewer1.ReportSource = c;:" + s.Elapsed.TotalMilliseconds.ToString());
    * Note:
    1. the report from the code above is empty and has no connections to database.
    2. Using Vs2013
    3. Using SAP Crystal Reports, developer version for Microsoft Visual Studio - Service Pack 9 - Fixed Issues and updates - Busines…

    Hi,
    Finally found the issue:
    Our windows application every 20 minutes ( 1 minute in debug ) check for clickonce updates in an independent thread using CheckForDetailedUpdate method and then it sleeps.
    public void ApplicationUpdateTimerThread()
      int updateInterval = applicationUpdateTimer.Interval = 1200000; // 20 mins
      if (ApplicationDataAccess.IsDebug) { updateInterval = 60000; }
      while (true)
         UpdateCheckInfo updateInfo = appDeployment.CheckForDetailedUpdate();
         Thread.Sleep(updateInterval);
    Doing this was locking the filesystem where now Crystal is putting their temporary report files and therefore preventing file access until the thread was active again ( The reason for the 60 seconds delay )
    So Creating a new thread to only check for update and let it die inmediately fixed the issue.
    public void ApplicationUpdateTimerThread()
      int updateInterval = applicationUpdateTimer.Interval = 1200000; // 20 mins
      if (ApplicationDataAccess.IsDebug) { updateInterval = 60000; }
      while (true)
      System.Threading.Thread t1 = new System.Threading.Thread (delegate()
      { UpdateCheckInfo updateInfo = appDeployment.CheckForDetailedUpdate(); });
      t1.Start();
      Thread.Sleep(updateInterval);

  • Manual deploy dbservlet in OAS

    help me. I need a Manual detail Manual about how I deploy a Servlet (made in jdeveloper 3.0) in OAS because
    I cant publish a Jservlet wizard in my OAS.
    Please Answer me to [email protected]

    Carlos please see:
    http://otn.oracle.com/doc/jdev3/readme.html#ID2417
    -Chris

  • Have made some slide show libraries on publisher then saved as jpg however when I sync through itunes to my ipad the previous import is over written. Can anyone offer a solution. Thanks

    Have made some slide show libraries on publisher then saved as jpg however when I sync through itunes to my ipad the previous import is over written. Can anyone offer a solution. Thanks

    I have tried much of the same - still no joy.
    I also reported it as a bug to Apple although the response page said "we can't reply to messages"
    For now I have had to turn off auto syncing and keep plugging and unplugging until the device is recognised correctly - about 1 in 10.
    In my email to apple I also listed the contents of the xml file that keeps track of the devices that iTunes has seen:
    When seen as an ipad:
    <dict>
    <key>Connected</key>
    <date>2010-06-08T21:33:57Z</date>
    <key>Device Class</key>
    <string>iPad</string>
    <key>Family ID</key>
    <integer>10006</integer>
    <key>Firmware Version</key>
    <integer>256</integer>
    <key>Firmware Version String</key>
    <string>3.2</string>
    <key>ID</key>
    <string>8F98884620E0F9FF</string>
    <key>Serial Number</key>
    <string>V5020116Z39</string>
    <key>Updater Family ID</key>
    <integer>10006</integer>
    <key>Use Count</key>
    <integer>21</integer>
    </dict>
    When seen as an iPhone:
    <dict>
    <key>Connected</key>
    <date>2010-06-08T21:39:07Z</date>
    <key>Device Class</key>
    <string>iPhone</string>
    <key>Family ID</key>
    <integer>10006</integer>
    <key>Firmware Version</key>
    <integer>256</integer>
    <key>Firmware Version String</key>
    <string>3.2</string>
    <key>ID</key>
    <string>8F98884620E0F9FF</string>
    <key>Serial Number</key>
    <string>V5020116Z39</string>
    <key>Updater Family ID</key>
    <integer>10006</integer>
    <key>Use Count</key>
    <integer>22</integer>
    </dict>
    You will see from the Use Count that these are adjacent connections, ie plugged in as ipad then as iphone. Apart from the device class, everything else is the same.

  • Stateless bean giving error when deployed through j2ee 1.3RI

    I have written a simple stateless bean and deployed through j2ee 1.3 RI
    Context initial = new InitialContext(h);
    Object obj = initial.lookup("SampleObject"); // SampleObject -jndi name
    SampleHome home = (SampleHome)PortableRemoteObject.narrow(obj, SampleHome.class);
    But when running the Client , getting the error
    java.lang.ClassCastException
    at com.sun.corba.se.internal.javax.rmi.PoartableRemoteObject.narrow(Unknown Source)
    at javax.rmi.PortableRemoteObject.narrow(Unknown Source)     at SampleClient.main(SampleClient.java:27)
    Is it a system error or what

    Hi sessionbean,
    The most common cause of this exception is when the RMI-IIOP stubs are not found within the client's classpath. The client stubs are returned from the deployment step.
    Also, it's better to use the no-arg initial context constructor "new InitialContext()" and let the J2EE 1.3 RI code bootstrap the correct naming service.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • HT6154 iphone 5s reminder app is not reminding at all. Rather I input in manually or through Siri; the reminder is there but the date & time is not. When input manually; the date & is deleted after a few seconds. How is this corrected?

    After the latest software update; the iPhone 5s reminder app is not reminding at all. Rather I input in manually or through Siri; the reminder is there but the date & time is not. When inputed manually; the date & is deleted after a few seconds. How can this be corrected?
    big Geo.

    After the latest software update; the iPhone 5s reminder app is not reminding at all. Rather I input in manually or through Siri; the reminder is there but the date & time is not. When inputed manually; the date & is deleted after a few seconds. How can this be corrected?
    big Geo.

  • Deployment Utility hangs when placing support VIs in SupportVIs.llb

    Hello,
    I am trying to deploy a TestStand 4 workspace and a LabView 8.5 UI. Normally this takes about 5 minutes (which is quite long, I think), but when I chose to put the support vi's in a VI library instead of in a directory, then the deploying takes very long and after half an hour, it is still not finished.
    I think it is hanging on adding VIs to the SupportVIs.llb, because during this half an hour the SupportVIs.llb is growing to 20 mb. And when it reached that size its size keeps changing with a few kb up and down.
    After more then half an hour I abort the deploying process.
    If I put the support VIs in a directory,then the directory size is also 20 mb, so it seems to be that the deployment utility is almost finished putting the support VIs in the VI library.
    I am I doing something wrong? Is there a solution for this problem?
    Regards,
    Niek

    Niek
    We are doing speed optimizations on the deployment utility- would you mind if we contacted you via email to get a copy of your system as a test case?
    >Why does deploying of the project takes so much time (I think 5 minutes is also a lot of time for deploying such a simple project) and why does it take more time if Locking of the >VIs is enabled?
    It's hard to know if the absolute times are reasonable without knowing the details of your system.   The deployment utility must save every subVI for your systems therefore if you are using a VI from VI.lib tht contains many subVIs then it will take a long time to save all of the subVIs.   Using LLBs will always be slower than directories.  LLBs are compressed so every write must compress the data and every read must uncompress it.   Unless you have a specific reason to use an LLB I would suggest using a directory instead.
    When the deployment utility Locks VIs it reloads each VI, locks the VI, and then re-saves it.  If there is a large number of VIs locking VIs could easily double the build time.  If you have several simple top level VIs that share a large number of subVIs then it isn't unreasonable that it would take three times as long.
    -Rick Francis

  • SDM hang when try to deploy aii_adapter_jms_app from SP9

    Hello Everyone,
    I trying to apply SP9, when SDM try to apply SAPXIAF09_0-20000273.SCA and more specifically aii_adapter_jms_app have a long time (more than 2 hours) and I can't see any errors in any file (.out, .err, .log). I proceed closing SDM and restart the whole process but I can´t deploy the aii_adapter_jms_app.
    Any idea???
    Kinds regards,
    Carlos

    Did you get any answer??
    Mine is also hanging when deploying SAPXIAF10_P_1.SCA. the following is the error log.
            ... 13 more
    #1.5#00306EF3A78F005600000009000035450003F28790E59207#1111088995604#/Applications/AdminConsole/ABAPConnector#sap.com/tcwebadministratoraba
    pco#com.sap.sup.admin.connector.AbapConnectorLauncher#J2EE_GUEST#0####bc434030971d11d98c4700306ef3a78f#SAPEngine_Application_Thread[impl:3]_
    19##0#0#Error#1#com.sap.sup.admin.connector.AbapConnectorLauncher#Plain###Cannot start ABAP Connector Listener. Please try to configure the
    connection in ABAP Systems Management (Setup Local Connectivity).
    java.rmi.RemoteException: com.sap.engine.services.ejb.exceptions.BaseRemoteException: Exception in method startListener.
            at com.sap.sup.admin.connector.rfc.AbapConnectorObjectImpl0.startListener(AbapConnectorObjectImpl0.java:206)
            at com.sap.sup.admin.connector.rfc.AbapConnector_Stub.startListener(AbapConnector_Stub.java:145)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187)
            at $Proxy20.startListener(Unknown Source)
            at com.sap.sup.admin.connector.AbapConnectorLauncher.contextInitialized(AbapConnectorLauncher.java:42)
            at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
            at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.lang.NullPointerException
            at com.sap.sup.admin.connector.rfc.RfcRuntimeProxy.isListenerRuning(RfcRuntimeProxy.java:169)
            at com.sap.sup.admin.connector.rfc.RfcRuntimeProxy.startListener(RfcRuntimeProxy.java:102)
            at com.sap.sup.admin.connector.rfc.AbapConnectorBean.startListener(AbapConnectorBean.java:34)
            at com.sap.sup.admin.connector.rfc.AbapConnectorObjectImpl0.startListener(AbapConnectorObjectImpl0.java:188)

  • Reader 10.1 update deployment through SCUP losing customizations.

    Hi All,
    I am currently in the process of testing the deployment of Adobe reader updates through the published SCUP catalogs and SCCM in a very large enterprise environment. I have run into an issue whereby %95 of workstations appear to be falling in scope for the base 10.1 update package and not just the msp patch. When testing this 'Adobe Reader 10.1 English' update the result is all corporate customizations that were built into the original 10.0.1 package are removed and the application returned to default settings.
    Is anyone able to provide any guidance on the deployment of Reader X updates through SCUP in such a way the corporate settings are not lost?
    Regards,
    Ben

    Hi Akshat,
    Unfortunately we have a third party company repackage applications for internal use so to obtain a full list of customizations will take a little time however I am confirming this behaviour through previously hidden categories within the application preferences reappearing such as the 'Updater' entry. I believe our custom corporate settings were added through the customization tools provided by Adobe resulting in an MST which is installed with the base Reader 10.0.1 package.
    I have also attempted to manually install the 10.1 msp update over our repackages Adobe Reader 10.0.1 install (AdbeRdrUpd1010_MUI.msp) and receive the following error.
    'The upgrade patch cannot be installed by the windows installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program...'
    Is there a reason why the 'APSB11-16 Reader Multi Lingual User Interface 10.1.0 Update \ AdbeRdrUpd1010_MUI.msp' would not a) scan for applicability when Reader 10.0.1 is installed and b) cannot be manually installed over an existing Reader 10.0.1 install.
    At this time we cannot begin approving the 'APSB11-16 Reader English 10.1.0 Update \ AdbeRdr1010_en_US.msi' imported through the published Adobe catalog for deployment as it appears machines would revert to default settings such as having auto update re-enabled as an example.
    Can anyone else confirm this behaviour whereby deploying 'APSB11-16 Reader English 10.1.0 Update' through SCCM\SCUP appears to perform a full reinstall of the application resulting in the loss of originally packaged settings?
    Ben
    Message was edited by: Ben2011
    In reading the linked post below, am I to assume that the correct method to manage Adobe Reader 10.x in the enterprise with SCCM\SCUP is to redeploy the new quarterly updated base MSI's with MST's containing corporate settings and then only use SCUP to deploy interum quarterly patches? I was expecting that we can continue to use our packaged 10.0.1 base package and then deploy patches as released without having to redeploy the entire application each quarter.
    http://forums.adobe.com/thread/865822?tstart=0

  • Photoshop Cs6 is hanging when trying to work in 3D when it wasn't before

    When I first started using 3D in Photoshop it was working rather smoothly and seemed to chug along fairly fast. Then one day when I was working in it as usual and tried to perform some random action it just started hanging with the spinning blue circle for about 2 or 3 minutes. It continued to do this ever since, sometimes hanging for up to 5 minutes before performing my command. Some actions cause it to hang longer than others, such as creating a new light and changing the diffuse color of a material, which is by far the worst in terms of the amount of time it will hang. I have searched the forums and google and tried all suggestions to any problem that seemed to have a similar nature. The only time that I had a partial success was after I had uninstalled Photoshop, then ran the adobe creative suite cleaner tool, then manually searched through the registry for every reference to adobe and Photoshop I could find and deleted them. I then reinstalled Photoshop and updated it. When I started using it in 3D after that it was running smooth as butter, no hangs or stalls on anything, including creating lights and changing diffuse colors. But my joy was not long lived, as after about 2 hours of use it started to do its usual behavior of hanging again.So I tried that approach again and it did not seem to work a second or third or fourth time. So out of desperation and all out of options, I decided to run process monitor from sysinternals to see if it showed me anything even though I knew that I probably would not understand what it were showing me. I noticed a lot of errors with the results of "name not found" for registry calls, "invalid parameter" for directory quarries, and "no such file" for file reads. But the one that seems to be happening the most whenever the program is hanging is it is trying to open a file from C:\program files\Adobe\photoshop x64\required\CgShaders, but that directory is nonexistent on my system. I was hoping that someone would be able to solve this for me as 3D in Photoshop is a big part of my workflow and I am all out of ideas. I'm going to include the process monitor log file and it will be in pml format which you will need process monitor to read, but it is a very small, portable, and free program which can be downloaded from http://technet.microsoft.com/en-us/sysinternals/bb896645. The Log file Can be downloaded from http://sdrv.ms/Xxcmuu (skydrive) or https://www.box.com/s/jzdmgmdmz7xe47smalv2 (box) .
    And here is my system info from Photoshop (I have a first generation I3 processor with intel HD graphics, which as I said was running fairly smooth before my problem started):
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows NT
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:5, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2394 MHz
    Built-in memory: 7989 MB
    Free memory: 3903 MB
    Memory available to Photoshop: 7036 MB
    Memory used by Photoshop: 65 %
    Image tile size: 128K
    Image cache levels: 4
    The GPU Sniffer crashed on 1/22/2013 at 6:33:53 PM
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) HD Graphics
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1280
    Video Card Number: 1
    Video Card: Intel(R) HD Graphics
    OpenCL Unavailable
    Driver Version: 8.15.10.2858
    Driver Date: 20121009000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Video Mode:
    Video Card Caption: Intel(R) HD Graphics
    Video Card Memory: 3770 MB
    Video Rect Texture Size: 8192
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\RYANS_~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 341.9G, 102.3G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    (post shortened)
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Thank you very much for your reply. And yes I have tried all of these suggestions that you have just made. And as for the GPU crash I did not notice that in there before but I also didn't look for it because every time I looked before it wasn't there, and looking at the date that was when that I was rolling back\uninstalling\reinstalling\trying modded drivers, etc., Which is probably the reason why the gpu sniper crashed.
    One interesting thing that you said was whether there is the same failure in a new design as opposed to an existing one. The answer to that is yes and no. To elaborate, when the program was working as it is supposed to eve and creating new lights and positioning them did not cause any slowdown despite the file that I was working on, but after the problem starts occurring it is like a snowball rolling down a hill. Every time I open the file (the one I was working on when the problem started to happen) to continue work on it be sluggish response of Photoshop is still there and only gets worse. If I start over on a new file the program will run much more smoothly, but will still had a slight amount of sluggishness with less intensive task whereas the more intensive task such as working with lights is still moderately sluggish but not to the extent as it was working in the previous file. As you said in your post it seems the father all along I get in my document the more pronounced and time consuming the freezes become. But nonetheless wants the problem has occurred it does not go away I can only lesson that by starting from scratch, which is not very convenient.
    If you look at the process monitor log file linked in my first post and search through it pretty quickly you will see photoshop doing this
    1-Operation: unknown     Path:C:\
    2-Operation: unknown     Path:C:\Program Files
    3-Operation: unknown     Path:C:\Program Files\Adobe
    4-Operation: unknown     Path:C:\Program Files\Adobe\Adobe Photoshop                                 Cs6 (64 bit)
    5-Operation: unknown     Path:C:\Program Files\Adobe\Adobe Photoshop                                 Cs6 (64 bit)\Required
    6-Operation: unknown     Path:C:\Program Files\Adobe\Adobe Photoshop                                 Cs6 (64 bit)\Required\CgShaders
    7-Operation: unknown     Path:C:\Program Files\Adobe\Adobe Photoshop                                 Cs6 (64 bit)\Required\CgShaders
    1-Result: INVALIDATE PARAMETER
    2-Result: INVALIDATE PARAMETER
    3-Result: INVALIDATE PARAMETER
    4-Result: INVALIDATE PARAMETER
    5-Result: INVALIDATE PARAMETER
    6-Result: NO SUCH FILE
    7-Result: NAME NOT FOUND
    It does this repeatedly over and over again, specifically when I tried to work with lights. The weird thing is that there is no directory in required called CgShaders. I see 1 CG.dll & 1 cgGL.dll in the Photoshop (64 bit) directory. To meet that just seems very strange and probably more than a coincidence and probably does not happen on everybody else's system.
    This is the process monitor log file that I saved in csv format and edited the first three blocks so that it fit correctly. Open it up in wordpad and you'll see what I mean. This is what I was talking about right above.
    https://www.dropbox.com/s/43waqf9wvc8xo7m/Logfile.CSV.rtf

  • Acrobat Pro 9.51 Hangs When Printing to PDF from WordPerfect.

    Seems Adobe Acrobat 9.51 is hanging when attempting to do a conversion to PDF by printing to PDF from WordPerfect (using X3/X5).  Problem is it also hangs the rest of the PC.  Have to attempt to kill the process (though it is so slow I end up having to restart the PC).  Anybody have any thoughts on this.  Attempted to do a repair (no help), removed the program and reinstalled (also no help).  Thought maybe another process was killing this but turned off all startup items.  Maybe I missed some uninstall items I need to manually remove?  Any help would be appreciated.

    Knowing the OS would be helpful as it may be a factor.
    If the OS is Windows 7 Acrobat 9.x will not provide full functionality.
    Regardless, WP file format(s) are not compatible / supported by Acrobat PDFMaker.
    Corel uses its own publish to PDF process rather than anything Adobe.
    With Acrobat installed you can print to the Adobe PDF virtual printer.
    If you are not doing a File - Print and selecting the Adobe PDF printer then you are using a WP rather than an Adobe process provided by Acrobat.
    Be well...

  • I'm getting the below issue when I try to deploy a report with Dynamic parameters, when I deploy it with static parameters I'm not getting this issue.

    I’m getting the below issue when I try to deploy a crystal report with Dynamic parameters in BI Launch Pad, when I deploy the same report with static parameters I can deploy and run it. I have Restarted the BI server, still the issue exitno use. kindly help me on this issue.
    “This error occurred: Adding Crystal Report "CrystalReport1.rpt" failed. The server with kind rptappserver returned an error result. Failed to copy the report file to the report object. Refreshing the report object properties might have failed. Failed to read data from report file CrystalReport1. Reason: Failed to read parameter object”.

    BO does not run dynamic params through the report as would happen without BusinessObjects (BO) or Crystal Reports Server (CRS).  When you publish a report with dynamic parameters to BO/CRS, the prompt is published to the repository so that it can be accessed through the Business View Manager (which can be installed as part of the client tools).  In order for this to work a couple of things need to happen:
    1.  You need to be sure that you check the "Update Repository" box on the Save As screen the first time you publish the report.
    2.  Your BO/CRS user needs to have "view" access to the Crystal2013ReportApplicationServer in the Servers section in the CMC - in fact, the Everyone group should be given view access to the server in order for dynamic prompts to work correctly.
    3.  In the Business View Manager, the Administrator user needs to give your user, or, even better, a Crystal Developers group full control access to the "Dynamic Cascading Prompts" folder.
    Best practice for dynamic prompts in a BO/CRS environment is to actually create the prompts in the Business View Manager.  This will allow you to create a single data connection that can be reused and also create lists of values such that the same list or prompt can be reused by multiple reports.  If you just create the prompts in Crystal, you will end up with multiple data connections to the same database, the prompts will use the whole query for the reports to get the dynamic values instead of just a focused query to the lookup table that contains the values, and there ends up being lots of duplication and chaos.
    -Dell

  • Fusion 11 Deployment on OAS

    Hello All,
    My company is looking at upgrading to Oracle EPM Fusion 11 version using OAS as the app server. We are currently on 9.3.0.1 with Web-Sphere as the application server.
    When trying to install in a test environment, our installation is going on fine. I cannot deploy my Shared services to OAS though (neither automatic nor manual). I have tried deploying using the embedded java container and the deployment is successful without any issues. The error it keeps showing when trying to deploy using the OAS with manual deployment as an option is that Shared Services is not started. This is immaterial to whether I start the deployment with OpenLDAP service started or not.
    Any idea as to where I am going wrong or if there is some step any one think that I am missing?
    Thanks in advance,
    Jas.

    Did you run the EPM System Diagnostic utility to check the status of the services?
    This might give you a clue, if there're issues with the very services.

  • Manual deployment of LC EARs?

    Hi all, i was wondering if anyone knew if there was a away to manually deploy an LC component. We're having trouble deploying the EMC documentum connector (ontop of an ES2 installation on weblogic in Centos (RedHat)). We've been going through the Configuration manager and it looks like it goes through ok, and we restart weblogic but the service doesn't seem to show up. So we're trying a few variations of the settings as we go through, but if there is a manual process that we can do as well we're hoping that we'll understand LC's inner workings better.
    Thanks

    Hey Guys,
    OS: Windows 2003
    App Server: Websphere 6.1
    Hyperion version: 9.3.1
    DB: SQL Server 2008
    When i initially started out trying to deploy the hyperion system 9.3.1 using SQL server 2008 with Websphere 6.1 as my app server it gave me problems but i found a workaround and i have the shared services screen coming up however it says...
    SEVERE ERROR: The Hyperion Shared Services database is not configured correctly. Please contact your system administrator.
    And an idea someone gave on a thread was to mess with the HubProductBean.jar file and remove the classes of the javax/crypto - however that did not work. If anyone has any suggestions to get passed this issue it would be great. Thank you!
    ZS

Maybe you are looking for