WebCenter Sites - Export to Disk with Images

Using WebCenter Sites (11.1.1.6.0), I've followed the 'export to disk' instructions for FirstSiteII but no images are exported. I have selected all types in 'Approve Multiple Assets' query (including images) before publishing. There are a list of totals from the query results, and it appears to have found images and approved them, however there are messages saying:
"Rendered page returns -4 rendering asset, ItemImage.jpg. Please preview asset and check template, FirstSiteII/Media_C/FSIIDetail."
(Although this message is presented in a green notification box with a tick)
How can I include images in the export?
The plan was to use the 'export to disk' feature as the primary method of publishing site content. I'm using the sample sites to test how feasible this is. I also haven't been able to locate a suitable entry point asset on the avisports sample to test it as well. The 'Home' asset cannot be selected as entry point as 'no templates can be found' (despite it listing that it uses HomeLayout in the form).
How can I export avisports site to disk?
Many thanks.

Still looking for some detail on how to export avisports to disk, and include images in a FirstSiteII export to disk. The image issue may be related to how the images are stored (as an asset in the database served by the blobserver, or separably on disk). I would have thought that if they are database stored, they would be extracted on publishing (export to disk) but this doesn't seem to be happening?

Similar Messages

  • Exception while Exporting Datagridview data with Images to Excel...

    Hi Everyone,
    I have datagridview in that 17 columns are text columns and 5 columns are Image columns,when I'm trying to export whole gridview data's along with images to EXCEL,getting "HRESULT:
    0x800A03EC" Error..While debugging the code I'm getting the error on image column not able to export..
    Can anybody help us to resolve this issue..
    Here is my code which i used:
    private void btnexportexcel_Click(object sender, EventArgs e)
    try
    SaveFileDialog savefile = new SaveFileDialog();
    savefile.Filter = "Excel (*.xls)|*.xls";
    if (savefile.ShowDialog() == DialogResult.OK)
    if (!savefile.FileName.Equals(string.Empty))
    FileInfo finfo = new FileInfo(savefile.FileName);
    if (finfo.Extension.Equals(".xls"))
    Excel.Application xlApp;
    Excel.Workbook xlWorkBook;
    Excel.Worksheet xlWorkSheet;
    object misValue = System.Reflection.Missing.Value;
    xlApp = new Excel.Application();
    xlWorkBook = xlApp.Workbooks.Add(misValue);
    xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(2) ;
    int i = 0;
    int j = 0;
    for (i = 0; i <= dataGridView1.RowCount - 1; i++)
    for (j = 0; j <= dataGridView1.ColumnCount - 1; j++)
    DataGridViewCell cell = dataGridView1[j, i];
    xlWorkSheet.Cells.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;
    xlWorkSheet.Columns.AutoFit();
    if (cell.Value.GetType() == typeof(Bitmap))
    string image =Convert.ToString(dataGridView1.CurrentRow.Cells[i].Value); 
    Excel.Range oRange = (Excel.Range)xlWorkSheet.Cells[i + 1, j + 1];
    float Left = (float)((double)oRange.Left);
    float Top = (float)((double)oRange.Top);
    const float ImageSize = 32;
    xlWorkSheet.Shapes.AddPicture(image, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoCTrue, Left, Top, ImageSize, ImageSize);
    oRange.RowHeight = ImageSize + 2; 
    else
    xlWorkSheet.Cells[i + 1, j + 1] = cell.Value;
    xlWorkBook.SaveAs(savefile.FileName, Excel.XlFileFormat.xlWorkbookNormal, misValue, misValue, misValue, misValue,
    Excel.XlSaveAsAccessMode.xlExclusive, misValue, misValue, misValue, misValue, misValue);
    xlWorkBook.Close(true, misValue, misValue);
    xlApp.Quit();
    releaseObject(xlWorkSheet);
    releaseObject(xlWorkBook);
    releaseObject(xlApp);
    MessageBox.Show("Excel file created , you can find the file " + savefile.FileName);
    else
    MessageBox.Show("Invalid file type");
    else
    MessageBox.Show("You did pick a location " + "to save file to");
    catch (Exception ex)
    MessageBox.Show("Exception Occured", ex.Message);
    Thanks & Regards RAJENDRAN M

    Hi Everyone,
    I have datagridview in that 17 columns are text columns and 5 columns are Image columns,when I'm trying to export whole gridview data's along with images to EXCEL,getting "HRESULT:
    0x800A03EC" Error..While debugging the code I'm getting the error on image column not able to export..
    Can anybody help us to resolve this issue..
    Here is my code which i used:
    private void btnexportexcel_Click(object sender, EventArgs e)
    try
    SaveFileDialog savefile = new SaveFileDialog();
    savefile.Filter = "Excel (*.xls)|*.xls";
    if (savefile.ShowDialog() == DialogResult.OK)
    if (!savefile.FileName.Equals(string.Empty))
    FileInfo finfo = new FileInfo(savefile.FileName);
    if (finfo.Extension.Equals(".xls"))
    Excel.Application xlApp;
    Excel.Workbook xlWorkBook;
    Excel.Worksheet xlWorkSheet;
    object misValue = System.Reflection.Missing.Value;
    xlApp = new Excel.Application();
    xlWorkBook = xlApp.Workbooks.Add(misValue);
    xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(2) ;
    int i = 0;
    int j = 0;
    for (i = 0; i <= dataGridView1.RowCount - 1; i++)
    for (j = 0; j <= dataGridView1.ColumnCount - 1; j++)
    DataGridViewCell cell = dataGridView1[j, i];
    xlWorkSheet.Cells.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;
    xlWorkSheet.Columns.AutoFit();
    if (cell.Value.GetType() == typeof(Bitmap))
    string image =Convert.ToString(dataGridView1.CurrentRow.Cells[i].Value); 
    Excel.Range oRange = (Excel.Range)xlWorkSheet.Cells[i + 1, j + 1];
    float Left = (float)((double)oRange.Left);
    float Top = (float)((double)oRange.Top);
    const float ImageSize = 32;
    xlWorkSheet.Shapes.AddPicture(image, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoCTrue, Left, Top, ImageSize, ImageSize);
    oRange.RowHeight = ImageSize + 2; 
    else
    xlWorkSheet.Cells[i + 1, j + 1] = cell.Value;
    xlWorkBook.SaveAs(savefile.FileName, Excel.XlFileFormat.xlWorkbookNormal, misValue, misValue, misValue, misValue,
    Excel.XlSaveAsAccessMode.xlExclusive, misValue, misValue, misValue, misValue, misValue);
    xlWorkBook.Close(true, misValue, misValue);
    xlApp.Quit();
    releaseObject(xlWorkSheet);
    releaseObject(xlWorkBook);
    releaseObject(xlApp);
    MessageBox.Show("Excel file created , you can find the file " + savefile.FileName);
    else
    MessageBox.Show("Invalid file type");
    else
    MessageBox.Show("You did pick a location " + "to save file to");
    catch (Exception ex)
    MessageBox.Show("Exception Occured", ex.Message);
    Thanks & Regards RAJENDRAN M

  • Export to Disk with 64 bit version

    I need to be able to export images that I have edited in LR3 to disk to give to someone and the dialog box tells me that this is not possible in the 64 bit version.  I had to go back to Bridge to do this and my changes to the images were not seen in Bridge.   If I run LR on an xp machine that is not 64 bit will I be able to export to disk?  Does this mean that I need to use LR on my old machne or use Bridge on my 64 bit machnine? This mkaes LR much less attractive and useful especially if these are my only answers.

    I just learned about this limitation the hard way. It's not excuse that the
    Adobe vendor for burning does not support 64 bit. It's Adobe's responsibiility to make their software function. Get a new vendor asap. I'm mad.

  • Webdynpro abap ALV export to excel with images problem

    Hello experts,
    I'm having problems with standard excel export functionality in webdynpro abap ALV.
    In my table i have images taken from content server (employee photos) linked with URL to a table_cell Image, when i export the table to excel using standard function the images is showed as a broken picture with the following text:
    "The linked image cannot displayed. The file may have been moved, or deleted. Verify that the link points to the correct file and location."
    I'm running on sap basis 7.02 SP13 and implemented the notes 1975765 and 1985288 but not resolved this issue.
    Do you have any ideas?
    Thank you.

    Hi Jorge,
    Are you able to download the ICONs from alv table? try to use some icon source '~Icon/Add' and check out if you can download it to excel successfully.
    FYR:
    Regards,
    Rama

  • Out of memory Exception in webcenter sites

    Hi experts,
    I installed webcenter sites 11gR1 on weblogic with Jrocket.
    In development system ,if no.of users accessing at a time its getting down.
    Could some one help me to resolve this issue.
    For Ref. in sites.log i found
    [2013-03-21 15:20:33,777] [fatwire.logging.cs.request] Exception including resource /jsp/cs_deployed/Page/MainNav.jsp
    javax.servlet.ServletException: java.lang.OutOfMemoryError: allocLargeObjectOrArray: [I, size 262160
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:342)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:447)
         at COM.FutureTense.Servlet.ServletRequest.include(ServletRequest.java:1411)
         at COM.FutureTense.Servlet.FRequestObj.include(FRequestObj.java:1429)
         at COM.FutureTense.Servlet.JSPServices.runJSP(JSPServices.java:102)
         at COM.FutureTense.Platform.FileSystem.FILESYSTEMJSPManager.runJSP(FILESYSTEMJSPManager.java:463)
         at COM.FutureTense.Servlet.JSPServices.runJSPObject(JSPServices.java:50)
         at COM.FutureTense.Platform.FileSystem.FILESYSTEMJSPManager$JSPDataFile.run(FILESYSTEMJSPManager.java:190)
         at COM.FutureTense.Common.ContentServer.jspExecute(ContentServer.java:2923)
         at COM.FutureTense.Common.ContentServer.evalTemplate(ContentServer.java:2517)
         at COM.FutureTense.Common.ContentServer.generatePage(ContentServer.java:1536)
         at COM.FutureTense.Common.ContentServer.evalPage(ContentServer.java:1247)
         at COM.FutureTense.Common.ContentServer.execute(ContentServer.java:455)
         at COM.FutureTense.Common.ContentServer.runManager(ContentServer.java:3339)
         at COM.FutureTense.Common.CS.getPage(CS.java:1361)
         at COM.FutureTense.Common.CS.ReadPage(CS.java:1307)
         at com.openmarket.Satellite.CoResidentContentServerEh._handlePage(CoResidentContentServerEh.java:200)
         at com.openmarket.Satellite.CoResidentContentServerEh.fetchCacheObject(CoResidentContentServerEh.java:131)
         at com.openmarket.Satellite.AbstractContentServer$CacheObjectFetchFunction.doWork(AbstractContentServer.java:413)
         at com.openmarket.Satellite.AbstractContentServer.getCacheObject(AbstractContentServer.java:220)
         at com.openmarket.Satellite.AbstractContentServerEh.getCacheObject(AbstractContentServerEh.java:168)
         at com.openmarket.Satellite.CoResidentContentServerEh.getCacheObject(CoResidentContentServerEh.java:31)
         at com.openmarket.Satellite.PagePiece.stream(DataPiece.java:307)
         at com.openmarket.Satellite.ComplexList.stream(DataPiece.java:565)
         at com.openmarket.Satellite.CacheObjectImpl.stream(CacheObjectImpl.java:653)
         at com.openmarket.Satellite.WrapperAwareResponder.respond(WrapperAwareResponder.java:42)
         at com.openmarket.Satellite.PagePiece.stream(DataPiece.java:330)
         at com.openmarket.Satellite.ComplexList.stream(DataPiece.java:565)
         at com.openmarket.Satellite.CacheObjectImpl.stream(CacheObjectImpl.java:653)
         at com.openmarket.Satellite.WrapperAwareResponder.respond(WrapperAwareResponder.java:42)
         at com.openmarket.Satellite.PagePiece.stream(DataPiece.java:330)
         at com.openmarket.Satellite.CacheObjectImpl.stream(CacheObjectImpl.java:653)
         at com.openmarket.Satellite.Http11Responder.respondForWrapper(Http11Responder.java:143)
         at com.openmarket.Satellite.WrapperAwareResponder.respond(WrapperAwareResponder.java:36)
         at com.openmarket.Satellite.SatelliteServer.execute(SatelliteServer.java:85)
         at com.openmarket.Satellite.servlet.BaseServlet.doGet(BaseServlet.java:118)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at com.fatwire.gst.foundation.httpstatus.HttpResponseStatusFilter.doFilter(HttpResponseStatusFilter.java:83)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at com.fatwire.wem.sso.cas.filter.CASFilter.doFilter(CASFilter.java:557)
         at com.fatwire.wem.sso.SSOFilter.doFilter(SSOFilter.java:51)
    Thanks
    Rajendar.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Sankar,
    Thank for your Response and support.
    In my environment webcentersites application is getting down frequently.
    every day we are facing this issue when multiple users are working with the application.
    and my system configurations are
    8GB RAM, UNIX-OS, WebCenterSites11gR1 and weblogic 10.3.6 with JRocket.
    Could you please help me to resolve this problem.
    I found the following error in CAS.log..
    2013-04-15 02:52:36,306 ERROR [org.jgroups] - uncaught exception in Thread[Timer,null,null,5,Timers] (thread group=org.jgroups.util.Util$1[name=JGroups,maxpri=10] )
    java.lang.OutOfMemoryError
    2013-04-15 02:52:56,318 ERROR [org.jgroups] - uncaught exception in Thread[UDP mcast,TreeCache-Cluster,172.25.125.100:34273,10,JGroups] (thread group=org.jgroups.util.Util$1[name=JGroups,maxpri=10] )
    java.lang.OutOfMemoryError
    2013-04-15 02:52:58,163 ERROR [org.jgroups] - uncaught exception in Thread[Timer,TreeCache-Cluster,172.25.125.100:34273,5,Timers] (thread group=org.jgroups.util.Util$1[name=JGroups,maxpri=10] )
    java.lang.OutOfMemoryError: getNewTla
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.addConditionWaiter(AbstractQueuedSynchronizer.java:1801)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2016)
         at java.util.concurrent.DelayQueue.take(DelayQueue.java:164)
         at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:609)
         at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:602)
         at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
         at java.lang.Thread.run(Thread.java:662)
    in csDomain.log file i found the following error
    ####<Apr 16, 2013 1:42:23 AM EDT> <Error> <WebLogicServer> <tacfmwmt02.dibos02.di-cloud.com> <AdminServer> <[STANDBY] ExecuteThread: '197' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1366090943133> <BEA-000337> <[STUCK] ExecuteThread: '71' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "667" seconds working on the request "Workmanager: default, Version: 1, Scheduled=true, Started=true, Started time: 667524 ms
    GET /cs/ContentServer?action=getPubTargetStatus&target=1347209048668&pagename=OpenMarket%2FXcelerate%2FPrologActions%2FPublish%2FAdvPub%2FPublishingStatController HTTP/1.1
    Referer: http://owcstest.taconic.com/cs/ContentServer?id=1347209048668&action=details&cs_environment=standard&pagename=OpenMarket%2FXcelerate%2FAdmin%2FPublish%2FDestEdit&cs_formmode=WCM
    X-Requested-With: XMLHttpRequest
    X-Prototype-Version: 1.5.1.1
    Accept: text/javascript, text/html, application/xml, text/xml, */*
    Accept-Language: en-us
    User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
    Cookie: contentPaneTreeSaveStateCookie=paneRoot; myWorkPaneTreeSaveStateCookie=paneRoot%2CCSTree%40History___history_; sitePaneTreeSaveStateCookie=paneRoot%2C0%40PlacedPages%2CPlacedPages%401347208698531; BIGipServerpool_tac_owcs_test=2311461292.22811.0000; JSESSIONID=gJ83RsfLTtFNKJCf0h688sKdWQxFXGKSJYf1Plpf9yRvbDt4hvyw!-260764669; fw_cookienames_cookie=
    X-Forwarded-For: 14.140.150.250, 172.25.10.26
    ECID-Context: 1.004qbEeioSsCSsnMwmicMG0007GE00001U;kXjE1ZDLIPGIj3RSj3JRiKTPiKVK_IUT_IS
    X-Forwarded-Host: owcstest.taconic.com
    X-Forwarded-Server: owcstest.taconic.com
    Connection: Keep-Alive
    ]", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
    Thread-20539 "[STUCK] ExecuteThread: '71' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, suspended, waiting, priority=1, DAEMON> {
    -- Waiting for notification on: com.openmarket.xcelerate.locks.LockObject@1e24e3bf[fat lock]
    java.lang.Object.wait(Object.java:485)
    com.openmarket.xcelerate.locks.LockObject.enterWriteLock(LockObject.java:63)
    com.openmarket.xcelerate.locks.LockManager.enterWriteLock(LockManager.java:193)
    com.openmarket.xcelerate.publish.PubSessionManager.createSession(PubSessionManager.java:213)
    com.fatwire.realtime.PubMain.testConnection(PubMain.java:159)
    com.fatwire.realtime.messaging.PubsessionStatusFacade.testConnection(PubsessionStatusFacade.java:390)
    jsp_servlet._jsp._cs_deployed._openmarket._xcelerate._prologactions._publish._advpub.__publishingstatcontroller._jspService(__publishingstatcontroller.java:75)
    weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:224)
    weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:108)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:207)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)
    weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:520)
    weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:350)
    COM.FutureTense.Servlet.ServletRequest.include(ServletRequest.java:1385)
    COM.FutureTense.Servlet.FRequestObj.include(FRequestObj.java:1426)
    COM.FutureTense.Servlet.JSPServices.runJSP(JSPServices.java:77)
    COM.FutureTense.Platform.FileSystem.FILESYSTEMJSPManager.runJSP(FILESYSTEMJSPManager.java:463)
    COM.FutureTense.Servlet.JSPServices.runJSPObject(JSPServices.java:39)
    COM.FutureTense.Platform.FileSystem.FILESYSTEMJSPManager$JSPDataFile.run(FILESYSTEMJSPManager.java:190)
    COM.FutureTense.Common.ContentServer.jspExecute(ContentServer.java:2752)
    COM.FutureTense.Common.ContentServer.evalTemplate(ContentServer.java:2392)
    COM.FutureTense.Common.ContentServer.generatePage(ContentServer.java:1450)
    COM.FutureTense.Common.ContentServer.evalPage(ContentServer.java:1083)
    COM.FutureTense.Common.ContentServer.execute(ContentServer.java:419)
    COM.FutureTense.Servlet.FTServlet.execute(FTServlet.java:69)
    COM.FutureTense.Servlet.FTServlet.doGet(FTServlet.java:53)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:700)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:815)
    weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:224)
    weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:108)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:207)
    weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:55)
    com.fatwire.wem.sso.cas.filter.CASFilter.doFilter(CASFilter.java:122)
    com.fatwire.wem.sso.SSOFilter.doFilter(SSOFilter.java:48)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:55)
    com.fatwire.cs.ui.framework.UIFilter.doFilter(UIFilter.java:73)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:55)
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3702)
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:308)
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:116)
    weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2209)
    weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2131)
    weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1457)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:250)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:213)
    >
    in Sites.log i found following Exceptions
    [2013-04-15 03:14:04,196] [fatwire.logging.cs.db] SQLException loading table definition for GSTUrlRegistry with state 99999: Protocol violation: [100]
    java.sql.SQLException: Protocol violation: [100]
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:464)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:192)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:884)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1167)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1289)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3593)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3637)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1495)
         at oracle.jdbc.driver.OracleDatabaseMetaData.getColumnsWithWildcards(OracleDatabaseMetaData.java:331)
         at oracle.jdbc.driver.OracleDatabaseMetaData.getColumns(OracleDatabaseMetaData.java:125)
         at weblogic.jdbc.wrapper.DatabaseMetaData_oracle_jdbc_driver_OracleDatabaseMetaData.getColumns(Unknown Source)
         at COM.FutureTense.Servlet.JDBCTable.load(JDBCTable.java:1908)
         at COM.FutureTense.Servlet.JDBCTable.get_trans(JDBCTable.java:701)
         at COM.FutureTense.Servlet.JDBCTable.get(JDBCTable.java:611)
         at COM.FutureTense.Servlet.JDBCTable.<init>(JDBCTable.java:288)
         at COM.FutureTense.Servlet.JDBCConn.GetTable(JDBCConn.java:1333)
         at COM.FutureTense.Common.ftDBTable.getconn(ftDBTable.java:3899)
         at COM.FutureTense.Common.ftDBTable.grab(ftDBTable.java:982)
         at COM.FutureTense.ContentServer.ObjectCatalog.grab(ObjectCatalog.java:71)
         at COM.FutureTense.CatalogManager.CatalogEngine.newTable(CatalogEngine.java:415)
         at COM.FutureTense.CatalogManager.CatalogEngine.newTable(CatalogEngine.java:227)
         at COM.FutureTense.CatalogManager.CatalogEngine.executeStatement(CatalogEngine.java:5040)
         at COM.FutureTense.Common.CS.SQL(CS.java:1163)
         at com.fatwire.gst.foundation.facade.sql.SqlHelper.select(SqlHelper.java:161)
         at com.fatwire.gst.foundation.url.db.UrlRegistry.resolveAsset(UrlRegistry.java:112)
         at com.fatwire.gst.foundation.controller.BaseRenderPage.resolveAssetId(BaseRenderPage.java:316)
         at com.fatwire.gst.foundation.controller.BaseRenderPage.renderPage(BaseRenderPage.java:282)
         at com.fatwire.gst.foundation.controller.action.RenderPage.handleRequest(RenderPage.java:38)
         at com.fatwire.gst.foundation.controller.action.AbstractActionController.doExecute(AbstractActionController.java:70)
         at com.fatwire.gst.foundation.controller.AbstractController.Execute(AbstractController.java:74)
         at COM.FutureTense.XML.Template.CallJava.execute(CallTag.java:190)
         at COM.FutureTense.XML.Template.BlockTag.execute(BlockTag.java:144)
         at COM.FutureTense.XML.Template.BlockTag.execute(BlockTag.java:120)
         at COM.FutureTense.XML.Template.Root.execute(BlockTag.java:365)
         at COM.FutureTense.XML.Template.XMLEval.run(XMLEval.java:331)
         at COM.FutureTense.Common.ContentServer.evalTheXML(ContentServer.java:3186)
         at COM.FutureTense.Common.ContentServer.evalTemplate(ContentServer.java:2447)
         at COM.FutureTense.Common.ContentServer.generatePage(ContentServer.java:1536)
         at COM.FutureTense.Common.ContentServer.evalPage(ContentServer.java:1247)
         at COM.FutureTense.Common.ContentServer.execute(ContentServer.java:453)
         at COM.FutureTense.Common.ContentServer.runManager(ContentServer.java:3338)
         at COM.FutureTense.Common.CS.getPage(CS.java:1361)
         at COM.FutureTense.Common.CS.ReadPage(CS.java:1307)
         at com.openmarket.Satellite.CoResidentContentServerEh._handlePage(CoResidentContentServerEh.java:200)
         at com.openmarket.Satellite.CoResidentContentServerEh.fetchCacheObject(CoResidentContentServerEh.java:131)
         at com.openmarket.Satellite.AbstractContentServer$CacheObjectFetchFunction.doWork(AbstractContentServer.java:413)
         at com.openmarket.Satellite.AbstractContentServer.getCacheObject(AbstractContentServer.java:220)
         at com.openmarket.Satellite.AbstractContentServerEh.getCacheObject(AbstractContentServerEh.java:168)
         at com.openmarket.Satellite.CoResidentContentServerEh.getCacheObject(CoResidentContentServerEh.java:31)
         at com.openmarket.Satellite.SatelliteServer.execute(SatelliteServer.java:83)
         at com.openmarket.Satellite.servlet.BaseServlet.doGet(BaseServlet.java:118)
         at javax.servlet.http.HttpServlet.doHead(HttpServlet.java:281)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:724)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.fatwire.gst.foundation.httpstatus.HttpResponseStatusFilter.doFilter(HttpResponseStatusFilter.java:81)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.fatwire.wem.sso.cas.filter.CASFilter.doFilter(CASFilter.java:557)
         at com.fatwire.wem.sso.SSOFilter.doFilter(SSOFilter.java:51)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    [2013-04-15 03:13:38,247] [fatwire.logging.cs.db] Exception in query of ElementCatalog with where clause elementname = GST/ErrorHandler/500
    java.lang.NullPointerException
         at COM.FutureTense.Common.ftDBTable.selectTo(ftDBTable.java:2224)
         at COM.FutureTense.CatalogManager.ElementCatalog._getElementData(ElementCatalog.java:383)
         at COM.FutureTense.CatalogManager.ElementCatalog._get(ElementCatalog.java:366)
         at COM.FutureTense.CatalogManager.ElementCatalog.get(ElementCatalog.java:276)
         at COM.FutureTense.CatalogManager.ElementCatalog.isElement(ElementCatalog.java:484)
         at COM.FutureTense.Common.CS.IsElement(CS.java:522)
         at com.fatwire.gst.foundation.controller.AbstractController.sendError(AbstractController.java:159)
         at com.fatwire.gst.foundation.controller.action.AbstractActionController.handleException(AbstractActionController.java:99)
         at com.fatwire.gst.foundation.controller.AbstractController.Execute(AbstractController.java:76)
         at COM.FutureTense.XML.Template.CallJava.execute(CallTag.java:190)
         at COM.FutureTense.XML.Template.BlockTag.execute(BlockTag.java:144)
         at COM.FutureTense.XML.Template.BlockTag.execute(BlockTag.java:120)
         at COM.FutureTense.XML.Template.Root.execute(BlockTag.java:365)
         at COM.FutureTense.XML.Template.XMLEval.run(XMLEval.java:331)
         at COM.FutureTense.Common.ContentServer.evalTheXML(ContentServer.java:3186)
         at COM.FutureTense.Common.ContentServer.evalTemplate(ContentServer.java:2447)
         at COM.FutureTense.Common.ContentServer.generatePage(ContentServer.java:1536)
         at COM.FutureTense.Common.ContentServer.evalPage(ContentServer.java:1247)
         at COM.FutureTense.Common.ContentServer.execute(ContentServer.java:453)
         at COM.FutureTense.Common.ContentServer.runManager(ContentServer.java:3338)
         at COM.FutureTense.Common.CS.getPage(CS.java:1361)
         at COM.FutureTense.Common.CS.ReadPage(CS.java:1307)
         at com.openmarket.Satellite.CoResidentContentServerEh._handlePage(CoResidentContentServerEh.java:200)
         at com.openmarket.Satellite.CoResidentContentServerEh.fetchCacheObject(CoResidentContentServerEh.java:131)
         at com.openmarket.Satellite.AbstractContentServer$CacheObjectFetchFunction.doWork(AbstractContentServer.java:413)
         at com.openmarket.Satellite.AbstractContentServer.getCacheObject(AbstractContentServer.java:220)
         at com.openmarket.Satellite.AbstractContentServerEh.getCacheObject(AbstractContentServerEh.java:168)
         at com.openmarket.Satellite.CoResidentContentServerEh.getCacheObject(CoResidentContentServerEh.java:31)
         at com.openmarket.Satellite.SatelliteServer.execute(SatelliteServer.java:83)
         at com.openmarket.Satellite.servlet.BaseServlet.doGet(BaseServlet.java:118)
         at javax.servlet.http.HttpServlet.doHead(HttpServlet.java:281)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:724)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.fatwire.gst.foundation.httpstatus.HttpResponseStatusFilter.doFilter(HttpResponseStatusFilter.java:81)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.fatwire.wem.sso.cas.filter.CASFilter.doFilter(CASFilter.java:557)
         at com.fatwire.wem.sso.SSOFilter.doFilter(SSOFilter.java:51)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    [2013-04-15 03:14:08,222] [fatwire.logging.cs.db] SQLException loading table definition for SystemItemCache with state 99999: Protocol violation: [116]
    java.sql.SQLException: Protocol violation: [116]
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:464)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:192)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:884)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1167)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1289)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3593)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3637)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1495)
         at oracle.jdbc.driver.OracleDatabaseMetaData.getColumnsWithWildcards(OracleDatabaseMetaData.java:331)
         at oracle.jdbc.driver.OracleDatabaseMetaData.getColumns(OracleDatabaseMetaData.java:125)
         at weblogic.jdbc.wrapper.DatabaseMetaData_oracle_jdbc_driver_OracleDatabaseMetaData.getColumns(Unknown Source)
         at COM.FutureTense.Servlet.JDBCTable.load(JDBCTable.java:1908)
         at COM.FutureTense.Servlet.JDBCTable.get_trans(JDBCTable.java:701)
         at COM.FutureTense.Servlet.JDBCTable.get(JDBCTable.java:611)
         at COM.FutureTense.Servlet.JDBCTable.<init>(JDBCTable.java:288)
         at COM.FutureTense.Servlet.JDBCConn.GetTable(JDBCConn.java:1333)
         at COM.FutureTense.Common.ftDBTable.getconn(ftDBTable.java:3899)
         at COM.FutureTense.Common.ftDBTable.grab(ftDBTable.java:982)
         at COM.FutureTense.Common.ContentServer.getSysItem(ContentServer.java:246)
         at COM.FutureTense.Common.ContentServer.recordBlobList(ContentServer.java:1745)
         at COM.FutureTense.Common.ContentServer.generatePage(ContentServer.java:1659)
         at COM.FutureTense.Common.ContentServer.evalPage(ContentServer.java:1247)
         at COM.FutureTense.Common.ContentServer.execute(ContentServer.java:453)
         at COM.FutureTense.Common.ContentServer.runManager(ContentServer.java:3338)
         at COM.FutureTense.Common.CS.getPage(CS.java:1361)
         at COM.FutureTense.Common.CS.ReadPage(CS.java:1307)
         at com.openmarket.Satellite.CoResidentContentServerEh._handlePage(CoResidentContentServerEh.java:200)
         at com.openmarket.Satellite.CoResidentContentServerEh.fetchCacheObject(CoResidentContentServerEh.java:131)
         at com.openmarket.Satellite.AbstractContentServer$CacheObjectFetchFunction.doWork(AbstractContentServer.java:413)
         at com.openmarket.Satellite.AbstractContentServer.getCacheObject(AbstractContentServer.java:220)
         at com.openmarket.Satellite.AbstractContentServerEh.getCacheObject(AbstractContentServerEh.java:168)
         at com.openmarket.Satellite.CoResidentContentServerEh.getCacheObject(CoResidentContentServerEh.java:31)
         at com.openmarket.Satellite.SatelliteServer.execute(SatelliteServer.java:83)
         at com.openmarket.Satellite.servlet.BaseServlet.doGet(BaseServlet.java:118)
         at javax.servlet.http.HttpServlet.doHead(HttpServlet.java:281)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:724)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.fatwire.gst.foundation.httpstatus.HttpResponseStatusFilter.doFilter(HttpResponseStatusFilter.java:81)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.fatwire.wem.sso.cas.filter.CASFilter.doFilter(CASFilter.java:557)
         at com.fatwire.wem.sso.SSOFilter.doFilter(SSOFilter.java:51)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
         [2013-04-15 03:14:28,564] [fatwire.logging.cs.db] SQLException loading table definition for SystemUsers with state 99999: Protocol violation: [105]
    java.sql.SQLException: Protocol violation: [105]
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:464)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:192)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:884)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1167)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1289)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3593)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3637)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1495)
         at oracle.jdbc.driver.OracleDatabaseMetaData.getColumnsWithWildcards(OracleDatabaseMetaData.java:331)
         at oracle.jdbc.driver.OracleDatabaseMetaData.getColumns(OracleDatabaseMetaData.java:125)
         at weblogic.jdbc.wrapper.DatabaseMetaData_oracle_jdbc_driver_OracleDatabaseMetaData.getColumns(Unknown Source)
         at COM.FutureTense.Servlet.JDBCTable.load(JDBCTable.java:1908)
         at COM.FutureTense.Servlet.JDBCTable.get_trans(JDBCTable.java:701)
         at COM.FutureTense.Servlet.JDBCTable.get(JDBCTable.java:611)
         at COM.FutureTense.Servlet.JDBCTable.<init>(JDBCTable.java:288)
         at COM.FutureTense.Servlet.JDBCConn.GetTable(JDBCConn.java:1333)
         at COM.FutureTense.Common.ftDBTable.getconn(ftDBTable.java:3899)
         at COM.FutureTense.Common.ftDBTable.grab(ftDBTable.java:982)
         at COM.FutureTense.Access.StandardUsers.grab(ftUsers.java:362)
         at COM.FutureTense.Access.AccessEngine.doLogin(AccessEngine.java:391)
         at COM.FutureTense.Access.AccessEngine.doLogin(AccessEngine.java:381)
         at COM.FutureTense.Common.ftAppLogic.checkLogin(ftAppLogic.java:3256)
         at COM.FutureTense.Common.ContentServer.standaloneInit(ContentServer.java:786)
         at COM.FutureTense.Servlet.FRequestObj.init(FRequestObj.java:974)
         at COM.FutureTense.Servlet.FRequestObj.<init>(FRequestObj.java:271)
         at COM.FutureTense.Servlet.FRequestObj.newInstance(FRequestObj.java:231)
         at COM.FutureTense.Servlet.FRequestObj.newInstance(FRequestObj.java:218)
         at COM.FutureTense.CS.Factory.newCS(Factory.java:66)
         at com.openmarket.Satellite.RequestContext.getICS(RequestContext.java:1026)
         at com.openmarket.Satellite.RequestContext.captureInputCoResident(RequestContext.java:518)
         at com.openmarket.Satellite.RequestContext.<init>(RequestContext.java:428)
         at com.openmarket.Satellite.servlet.BaseServlet.doGet(BaseServlet.java:112)
         at javax.servlet.http.HttpServlet.doHead(HttpServlet.java:281)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:724)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.fatwire.gst.foundation.httpstatus.HttpResponseStatusFilter.doFilter(HttpResponseStatusFilter.java:81)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.fatwire.wem.sso.cas.filter.CASFilter.doFilter(CASFilter.java:557)
         at com.fatwire.wem.sso.SSOFilter.doFilter(SSOFilter.java:51)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • Webcenter sites integration with ATG

    I have question on Webcenter sites and ATG integration. 
    We have to use webcenter sites as Web content management system that will feed the static content(text, images, videos, and other documents) to ATG. ATG will be acting as front end and host webpages. We have below two possibilities that we can think of
    From Webcenter site we will use its APIs and expose web-services that ATG can consume to get the static contents. (requires lot of effort)
    Webcenter site will publish content on the file system that ATG can link to and show them in a webpages. (relatively less effort)
    Second solution looked good but there is no documentation that says it is possible. Only one document ‘cip_11gr1_for_file_systems_and_ms_sharepoint_administrator_guide.pdf’ explains
    the pulling the data from file-system but it does not mention publishing to file-system.
    Another document (webcenter_sites_11gr1_bp1_admin.pdf) that explains publishing to hard disk is template based publishing meaning, we will have to create templates which not a not intended way. since we don't want to create template just to publish.
    My question is – is it possible that webcenter sites can to publish to file-system? If yes is there any document which can help us achieving that?
    Will appreciate if you can suggest any other approach for integrating these two product.
    Thanks
    Sameer

    Hi Sameer -
    OOTB you can publish assets directly to disk using Export to XML, but you realize that by doing that, you're essentially using Sites as a very expensive GUI over a database.  By using a combination of Java classes and JSPs you can create very rich markup (or XML, or JSON, or whatever you like) and render that, then export that data to disk.  That way you can traverse asset relationships and write much more complex data to disk for consumption by external systems.
    As for your options of #1 vs #2, you need to think carefully about what your goals are for using Sites and for using ATG.  There are a number of other integration options between Sites and ATG, including the reverse of #1, which is to have Sites render most pages and then consume data from ATG in service form.  There is also the efficient and decoupled approach of standing up ATG and Sites side-by-side and selectively integrating components together.  So Sites would drive marketing content and ATG would drive commerce content, and the two would leverage service APIs between the two when needed (for example, to render an ATG promo in Sites, or to render a detailed product description from Sites in ATG).
    Each approach has pros and cons and there is no Correct Way To Integrate ATG and Sites, but there are, as you can see, several common patterns.
    Hope this helps.
    Sincerely,
    Tony Field
    Function1

  • How do i send an html file exported from muse as email blast with images and live links?

    My question it:
    How do i send an html file exported from muse as email blast with images and live links?
    I have designed a "website" in adobe muse and exported it as an html file. I am not sure how to send my .html file in an email!
    Best,
    Nicole

    Unfortunately, the answer is, you don't. The requirements for HTML displayed in an e-mail reader are very different than those for HTML displayed in a browser. The output of Muse won't work as an HTML e-mail. You could upload the Muse site as a website and provide a link to it in an e-mail, but the HTML generated by Muse is not suitable for direct display by an e-mail program.

  • Export Application with Images in sigle file

    Hi all,
    i want to migrate my application from one database to other,
    My application have few Workspace images associated with it,
    I used the Export option in the Application Builder but only the Application got exported not the assosiated images.
    Is there a way to Export the application as well as the Images in a single export file.
    Thankx
    Shailesh

    Hi,
    I think you have to look at the Supporting Objects section in the users guide.
    In the Supporting Objects section in APEX you can create scripts to export shared components.
    Regards,
    Tim

  • Exporting a template with multiple images

    Let's assume I want to have a large print made at an outside commecial lab because my printer does not handle the size.
    In the Print Module, is there a way to export a template with multiple images so that it can be sent to an outside lab for printing?
    Or, is this not possible and I would have to design the template in Photoshop and send the file to the lab?
    If Lightroom is not yet capable of this, it certainly seems like a worthwhile feature.

    Thanks for sticking with this thread to help me.
    I am on Windows and I do have PDF capability, the full Adobe Acrobat Professional.
    I have been experimenting with your suggestions and, yes, saving it as a PDF and bringing it into Photoshop is a workaround. The images and Identity plate come into Photoshop as they appear in the template in Lightroom.
    What doesn't appear in Photoshop is the whitespace(margins)around the images. They appear in the PDF, but they don't appear when I open the PDF in Photoshop. Is there a setting I'm overlooking in the PDF settings dialog that will correct this? Or, is this just the way importing a PDF works when it comes to margins? Must I always go to Image/Canvas size to get the canvas I want? Is there a way of not having to do this?

  • Export PDF as a container with images

    Hello, I would like to export a PDF with some jpgs inside. I want those images to be portable like you have jpgs inside a HTML, where you can save them to your desktop individually. How can I do this? Basically The Pdf would work as a container of text and Jpg images.
    thanks very much for your time

    That's not how PDFs are designed to work. They are designed to be a final output for print or for viewing on screen. To extract the images you could use Document Precessing>Extract All Images but this would only work in a full version of Acrobat.

  • Issue with starting tomcat in windows for webcenter sites installation

    Hello All,
    I have been trying to install oracle webcenter sites on windows 7, I followed all the steps in the documentation for the configuration and setup. but anytime I start the tomcat using the startup.bat script I get errors as shown below.
    C:\WCS11gR1\tomcat\bin>catalina debug
    Using CATALINA_BASE: "C:\WCS11gR1\tomcat"
    Using CATALINA_HOME: "C:\WCS11gR1\tomcat"
    Using CATALINA_TMPDIR: "C:\WCS11gR1\tomcat\temp"
    Using JAVA_HOME: "C:\Program Files\Java\jdk1.7.0_21"
    Using CLASSPATH: "C:\WCS11gR1\home\bin;C:\Program Files\Java\jdk1.7.0_21\l
    ibtools.jar;;C:\WCS11gR1\tomcat\bin\bootstrap.jar"
    Initializing jdb ...
    runrun org.apache.catalina.startup.Bootstrap start
    java.io.IOException: Cannot run program "C:\Program": CreateProcess error=2, The
    system cannot find the file specified
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:1042)
    at java.lang.Runtime.exec(Runtime.java:615)
    at java.lang.Runtime.exec(Runtime.java:483)
    at com.sun.tools.jdi.AbstractLauncher$Helper.launchAndAccept(AbstractLau
    ncher.java:180)
    at com.sun.tools.jdi.AbstractLauncher.launch(AbstractLauncher.java:132)
    at com.sun.tools.jdi.SunCommandLineLauncher.launch(SunCommandLineLaunche
    r.java:235)
    at com.sun.tools.example.debug.tty.VMConnection.launchTarget(VMConnectio
    n.java:495)
    at com.sun.tools.example.debug.tty.VMConnection.open(VMConnection.java:3
    26)
    at com.sun.tools.example.debug.tty.Commands.commandRun(Commands.java:559
    at com.sun.tools.example.debug.tty.TTY.executeCommand(TTY.java:491)
    at com.sun.tools.example.debug.tty.TTY.<init>(TTY.java:765)
    at com.sun.tools.example.debug.tty.TTY.main(TTY.java:1067)
    Caused by: java.io.IOException: CreateProcess error=2, The system cannot find th
    e file specified
    at java.lang.ProcessImpl.create(Native Method)
    at java.lang.ProcessImpl.<init>(ProcessImpl.java:288)
    at java.lang.ProcessImpl.start(ProcessImpl.java:133)
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:1023)
    ... 11 more
    Fatal error:
    Unable to launch target VM.
    If I run it by clicking on the bat file directory I get this error in my catalina log file below:
    May 27, 2013 5:04:48 PM org.apache.catalina.startup.Catalina start
    SEVERE: Cannot start server. Server instance is not configured.
    Kindly advise me on what to do to resolve this issue.

    Yes I did that all the commands give me error.
    If I use the startup.bat I get a list of errors ending with:
    org.apache.catalina.startup.Catalina start SEVERE: Cannot start server. Server instance is not configured.
    but I have configured the instance using the following settings for windows:
    SET CATALINA_HOME = C:\WCS11gR1\tomcat
    SET CATALINA_BASE = C:\WCS11gR1\tomcat
    SET JAVA_HOME=C:\Program Files\Java\jdk1.7.0_21
    SET JAVA_OPTS=-Xmx1500m
    SET CS_HOME=C:\WCS11gR1\home
    SET CATALINA_OPTS=-XX:MaxPermSize=192m -Dfile.encoding=UTF-8 -Dnet.sf.ehcache.enableShutdownHook=true -Djava.net.preferIPv4Stack=true

  • Dynamic pages with WebCenter Sites CSElements

    We are using the benefits of WebCenter Sites 11g regarding the possibilities of create the templates and the final user be able to compose the the pages. By the other hand, we have the necessity to create dynamic pages with business logic and interaction with database or web-services with WebCenter Sites templates. We expect to be able to embed these dynamic pages inside CSElements. With all of this in mind, what is the best approach? I'd like to know if our solution to use the Spring 2.5 + JPA 2 is a good a approach to reach our necessity/requirement or WebCenter Sites 11g has another better way to do that.

    You can add your own business logic to CSElements, or create your own tag libraries and add your logic there. If you're using a framework like the GSF you can call an action from your element as well. In all cases, you are free to use whatever tools you like to help you implement your business logic (provided that it is compatible, which you've already learned about. :-). Just be careful that you don't use the same database connection pool that Sites uses or you may run out of connections. Also, pay attention to how you are caching your pages and pagelets when you are calling external services or accessing external resources.
    Regards
    Tony

  • Website logo needs to sit on top of backgropund image with no box

    I am trying to create a logo with a transparnt background for my website, so my logo can sit on top of background images. I have created different file, png, gif, eps all with transparent backgrounds but everytime I upload it to my website builder (wix) it has either a grey or white background. Can someone advise on how I would ahcieve the correct file?

    Jadelm,
    Presuming you are referring to the large grey box, I agree with Gonzalogxg.
    If you are referring to what appears to be a white fringe, it should only occur in GIF and only if you have a Matte colour different from the background, but not in PNG and EPS.

  • My Mac G-4 OS X will not image an icon of the zip disk with I inserted into my computer's built-in Zip Drive, therefore I can not remove the zip disk from my computer.  What can I do?

    My Mac G-4 OS X will not image an icon of the zip disk with I inserted into my computer's built-in Zip Drive, therefore I can not remove the zip disk from my computer.  What can I do?

    Thanks Old Comm Guy, BD Aquam and Texas Mac Man for youradvice and reply to my question
    and problem with my Zip Drive.  However:
        1.  Depressing mouse buttonon start up did not eject the zip disk.
        2.  To examine front of zipdrive, I had to remove many screws and several plastic case
             coverings.  Upon doing thatI discovered that, unfortunately, there is no whole in front
              of mybuilt-in zip hardware drive for me to insert a paper clip to manually eject zipdisk.
          3.  I went to the Utilities folder in myMac OS X Application folder, but I could not find
               theiomega zip drive in there.
    Also, I did go into my "9" System folder and thento the Extensions folder within it and did find an icon of an
    Iomega Driver. When double clicking on it a window came upstating I was opening the application
    "ColorSync Extension" for thefirst time, and asking if I was sure I wanted to open this application.
    Uponclicking open nothing happened - nothing opened.
    I also went into the "System X" folder>Libraryfolder>Extension folder>IomegaSAM.ket icon and double
    clicked on it and asmall window opened stating "Compiling file List", however nothingopened it just
    continued to compile, so I closed it.
    Within my Mac OS X HD>  Applications>Iomega folder>Iomega Tools.app a smallwindow opened up
    with several options (Erase, Protect, Disk Info and DriveInfo). Clicking on the Drive Info a message says:
    "No Iomega Drives or noIomega Driver found.  Therefore, Ihave gone to Mac, Iomega and other websites
    trying to find a Driver for thebuilt-in Zip Drive in my Mac G-4 OS X 10.4.11, but have not really found anythat work.
    CAN ANYONE TELL ME IF THERE IS A WEBSITE WHERE I CANDOWNLOAD A NEW DRIVER FOR MY ZIP DRIVE?
    Thanks,     Peterfromcrystallake

  • Integrating InDesign with WebCenter Sites

    We are looking at implementing WebCenter Sites but need a print component as well. Has anyone intergrated InDesign with OWS? We want OWS to be the central place for all content. Most of that content is served for the Web, but some of it needs to be served for print.
    Thanks.

    I don't believe that noone has ever tried to connect the local BPM environment to a remote WCC server before. Please let me know if you've ever experienced the same problem. Otherwise, even a simple "I tried to do the samething and I succeeded using the same steps in the tutorial" would help too .
    Another thing is that yesterday, I talked to the tech-lead and I learned that our WCC server environment doesn't have BPM installed yet. I am wondering if this would cause the WCC server to not understand the request from my BPM server. In addtion, I've also upgraded my local BPM server using the lastest SOA bundled patch. Should the same patch be applied to the WCC server environment too?
    I'd be very grateful for any advice .

Maybe you are looking for

  • Re:  Help with Java school program

    Hi, I've been trying to figure out how to make my DoubleCanvas java program to work. What I'm supposed to do is have a left canvas and a right canvas. In the middle of the applet is a button panel that can select to either draw on the left, right, or

  • TS3694 I keep getting error code 3014 when trying to update my iphone to iOS6

    Anyone have any idea why this is happening? It also happens with my ipad.

  • Slowtime

    hi everyone,just thought i'd throw this out to anyone who might know how to resolve my problem.i'm having problems with quicktime,rendering in motion & shake. i composite & create digital effects(expensive hobbie),the rendering takes time but it used

  • DB13 BRCONNECT NextExtent Task Failed

    Hi All, I have a doubt about this. I scheduled the task NextExtent in DB13 (NW2004s), but the scheduled failed always. I received the following error : <b>Return Code:   0003 Error during initialization</b> And into Detail Log: <b>BR0825E Table/Index

  • Voltage Measuring error in Labview with scxi-1100/1300

    I used the Daq wizard to setup my simple loop to measure 6 channels on my SCXI-1100 card with 1300 terminal.  I actually measured the voltage on the terminal block and get 4.6 volts but labview reads from 1.1 to 0.8?  I believe it is something I setu