Unable to read recordsets in oracle through VB6/ADO 2.0

Problem: Not able to access/read partiular field of any table(in Oracle) through vb6/ADO.
Note the "insert into" SQL statement is working and through SQL worksheet in Oracle 8.0 , version 1.5.0 (which I am using) I am able to read all the records but whenever I try to read it through the VB6 by the command - "recordset!field name" , the following error is generated.
Error:
Run time error:- 2147417848(80010108)
method 'xxxx' of object 'yyyy' failed
Environment:
Windows NT 4.0 Oracle 8, version 1.5.0
Visual Basic 6.0
ADO 2.0 object library
oracle ODBC driver version: 8.00.0400
I enclose below the lines of code.
Dim AccDb As New ADODB.Connection
Dim AccountGroup As New ADODB.Recordset
Dim AccountSetup As New ADODB.Recordset
Dim Mgrp As String
Global Const CntString = "DSN=DATAB;UID=INTERNAL;PWD=ORACLE;"
Mgrp = ""
AccDb.ConnectionString = CntString
AccDb.Open
AccountGroup.Open "Account_Group", AccDb, adOpenStatic, , adCmdTable
AccountSetup.Open "Account_Setup", AccDb, adOpenStatic, , adCmdTable
AccDb.BeginTrans
If Fld_AccGroup <> "" Then
StrCriteria = "Accid =" & Fld_AccGroup & ""
AccountGroup.Find StrCriteria
If Not AccountGroup.EOF Then
Grp = FillText(AccountGroup!Acc_Group) ' filltext is a user defined function
End If
Mgrp = Trim(Grp)
LGrp = Right$(Str$(1000 + Val(AccountSetup!Last_Grp)), 3)
Else
LGrp = Right$(Str$(1000 + Val(AccountSetup!Last_Grp)), 2)
End If
Grp = Trim(Grp) + LGrp
'Sql = "Execute sp_InsertAccountGroup '" & Grp & "','" & Fld_AccName & "','" & Fld_PlBl & "'"
Sql = "Execute sp_InsertAccountGroup "
AccDb.Execute (Sql)
AccDb.CommitTrans
AccountSetup.Close: Set AccountSetup = Nothing
AccountGroup.Close: Set AccountGroup = Nothing
AccDb.Close: Set AccDb = Nothing
Exit Sub
SaveErr:
AccDb.RollbackTrans
For Each Errloop In Errors
With Errloop
StrError = _
"Error #" & .Number & vbCr
StrError = StrError & _
" " & .Description & vbCr
StrError = StrError & _
" (Source: " & .Source & ")" & vbCr
End With
MsgBox StrError, vbCritical, MsgTtl
Next
AccDb.RollbackTrans
Resume Next
null

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sandip Tusnial ([email protected]):
Problem: Not able to access/read partiular field of any table(in Oracle) through vb6/ADO.
Note the "insert into" SQL statement is working and through SQL worksheet in Oracle 8.0 , version 1.5.0 (which I am using) I am able to read all the records but whenever I try to read it through the VB6 by the command - "recordset!field name" , the following error is generated.
Error:
Run time error:- 2147417848(80010108)
method 'xxxx' of object 'yyyy' failed
Environment:
Windows NT 4.0 Oracle 8, version 1.5.0
Visual Basic 6.0
ADO 2.0 object library
oracle ODBC driver version: 8.00.0400
I enclose below the lines of code.
Dim AccDb As New ADODB.Connection
Dim AccountGroup As New ADODB.Recordset
Dim AccountSetup As New ADODB.Recordset
Dim Mgrp As String
Global Const CntString = "DSN=DATAB;UID=INTERNAL;PWD=ORACLE;"
Mgrp = ""
AccDb.ConnectionString = CntString
AccDb.Open
AccountGroup.Open "Account_Group", AccDb, adOpenStatic, , adCmdTable
AccountSetup.Open "Account_Setup", AccDb, adOpenStatic, , adCmdTable
AccDb.BeginTrans
If Fld_AccGroup <> "" Then
StrCriteria = "Accid =" & Fld_AccGroup & ""
AccountGroup.Find StrCriteria
If Not AccountGroup.EOF Then
Grp = FillText(AccountGroup!Acc_Group) ' filltext is a user defined function
End If
Mgrp = Trim(Grp)
LGrp = Right$(Str$(1000 + Val(AccountSetup!Last_Grp)), 3)
Else
LGrp = Right$(Str$(1000 + Val(AccountSetup!Last_Grp)), 2)
End If
Grp = Trim(Grp) + LGrp
'Sql = "Execute sp_InsertAccountGroup '" & Grp & "','" & Fld_AccName & "','" & Fld_PlBl & "'"
Sql = "Execute sp_InsertAccountGroup "
AccDb.Execute (Sql)
AccDb.CommitTrans
AccountSetup.Close: Set AccountSetup = Nothing
AccountGroup.Close: Set AccountGroup = Nothing
AccDb.Close: Set AccDb = Nothing
Exit Sub
SaveErr:
AccDb.RollbackTrans
For Each Errloop In Errors
With Errloop
StrError = _
"Error #" & .Number & vbCr
StrError = StrError & _
" " & .Description & vbCr
StrError = StrError & _
" (Source: " & .Source & ")" & vbCr
End With
MsgBox StrError, vbCritical, MsgTtl
Next
AccDb.RollbackTrans
Resume Next
<HR></BLOCKQUOTE>
null

Similar Messages

  • Unable to Read Calendar List Items through CAML

    Hi All,
    * I have created two columns in calendar one Year and other Month.When new event is added in calendar through (Item Added) event receiver I am setting the values to this columns as Name of Month to(February) and Year as(2014)  .So that I can fetch the
    data easily based on month and year
    * Through this Columns Secondly when I try to fetch the data to count number of items of particular month and year using caml query I am getting error as below .
    "Error:One or more field types are not installed properly. Go to the list settings page to delete these fields."
    *My below caml code is working fine if i applied to custom list,But not to calendar.Can any one help me for what reason I am unable to fetch data
    Code
     string year="2014";
     string month="February";
     SPSite mysite = SPContext.Current.Site;
     SPWeb myweb = mysite.OpenWeb();
    SPList mylist = myweb.Lists["Calendar"];
     SPQuery myquery = new SPQuery();
      myquery.Query = @"<Where>
                                          <And>
                                           <Eq>
                                             <FieldRef Name='Year'/>
                                             <Value Type='Text'>" + year + @"</Value>
                                          </Eq>
                                          <Eq>
                                             <FieldRef Name='Month' />
                                             <Value Type='Text'>" + month + @"</Value>
                                          </Eq>
                                         </And>
                                      </Where>";
     SPListItemCollection totaltiems = mylist.GetItems(myquery);
      Label1.Text= "Total Number of Items is "+" "+totaltiems.Count.ToString();
    Thanks, Quality Communication Provides Quality Work. http://siddiq-sharepoint2010.blogspot.in/ Siddiqali Mohammad .

    Hi,
    According to your post, my understanding is that you got an error when read calendar list items using CAML.
    I created two single line of text columns in the Calendar( Year and Month), then add items in the Calendar to check with your code. The CAML query worked well as below.
    string year = "2014";
    string month = "February";
    using (SPSite oSiteCollection = new SPSite("Your site URL"))
    using (SPWeb myweb = oSiteCollection.OpenWeb())
    SPList mylist = myweb.Lists["Calendar"];
    SPQuery myquery = new SPQuery();
    myquery.Query = @"<Where> <And> <Eq> <FieldRef Name='Year'/> <Value Type='text'>" + year
    + "</Value></Eq><Eq>+ "
    + " <FieldRef Name='Month' />+ "
    + " <Value Type='text'>" + month + "</Value>+ "
    + " </Eq> </And></Where>";
    SPListItemCollection totaltiems = mylist.GetItems(myquery);
    Console.WriteLine( "Total Number of Items is " + " " + totaltiems.Count.ToString());
    Console.ReadLine();
    Which type of the two columns in your Calendar? Were they text type?
    Are you sure the field name(<FieldRef Name='Year'/>,
    <FieldRef Name='Month' />) is same as internal name?
    We should only use internal name while refrencing columns in CAML query. If you have space In you column , replace it with "_x0020_", such as
    News_x0020_Category. 
    Thanks & Regards,
    Jason 
    Jason Guo
    TechNet Community Support

  • Oracle ODBC, VB6, ADO, extended ascii

    Dim lcn as ADODB.Connection
    Dim sql as string
    Dim s as string
    ' assume connection done here
    s = chr(149) 'bullet
    'value field is varchar2(64)
    sql = "update dbo.text set value = '" & s & "'
    With Microsoft ODBC for Oracle this works fine.
    With Oracle ODBC 8.01.63:
    value = chr(191) upside down question mark.
    This appears to be the case for all ascii characters 128-256.
    Note that:
    sql = "update dbo.text set value = Chr(149)"
    produces the desired result.
    Any suggestions or ideas?

    one more line of code:
    lcn.execute (sql)
    of course.
    null

  • Frm-40502: oracle error: unable to read list of values

    Hi All,
    I am personalizing the assignment form, where we need to restrict the JOB LOV based on Organization value.
    In Forms Personalization we are creating the record group from query and attaching to Job field.
    The query is,
    SELECT DISTINCT j.NAME, DECODE (1, 2, 1, NULL) c_valid_job_flag,
    j.job_id job_id
    FROM per_jobs_v j
    WHERE j.business_group_id + 0 = :CTL_GLOBALS.BUSINESS_GROUP_ID
    AND j.date_from <= :CTL_GLOBALS.SESSION_DATE
    AND ( (j.date_to IS NULL)
    OR (j.date_to >= :CTL_GLOBALS.SESSION_DATE)
    ORDER BY j.NAME
    When we use this query, we are getting the error "frm-40502: oracle error: unable to read list of values"
    If i replace the bind variable with values we are not getting the error and its working fine.
    Replace query:
    SELECT DISTINCT j.NAME, DECODE (1, 2, 1, NULL) c_valid_job_flag,
    j.job_id job_id
    FROM per_jobs_v j
    WHERE j.business_group_id + 0 = 202
    AND j.date_from <= TRUNC(SYSDATE)
    AND ( (j.date_to IS NULL)
    OR (j.date_to >= TRUNC(SYSDATE))
    ORDER BY j.NAME
    how to use bind variables (Block.field) here? We are getting this error only when using the bind variable in the query.
    Please share your ideas.
    Thanks.

    Hi;
    What is your EBS version? There are 96 docs avaliable about similar error message. I suggest use metalink for your issue
    You can also check:
    FRM-40502: Oracle Error: Unable To Read List Of Values [ID 1161404.1]
    Frm-40502: Oracle Error: Unable To Read List Of Values. [ID 351931.1]
    FRM 40502: Oracle Error:Unable to Read List of Values [ID 179162.1]
    Regard
    Helios

  • Forms Personalization - FRM-40502: ORACLE error: unable to read list of val

    Hi,
    I am using Forms Personalization to create an LOV using builtin. In the Builtin, I have put the sql query under create record group from query. In the query, when I hardcode a value, in a where condition, the LOV works fine but when I replace the hardcoded value with :block.field value, it gives the error, FRM-40502: ORACLE error: unable to read list of values. Below is the part of the sql query where I am facing this issue.
    "WHERE related_customer_id = :ORDER.INVOICE_TO_CUSTOMER_ID"
    Please get back to me if anyone has faced similar problem.
    Thanks all in advance,
    Regards,
    AN

    Please post a new thread for each issue. Tacking onto a 2 year old post is generally a bad idea.
    Forms personalization is a feature in Oracle E+Biz Suite and as such you should post your question in this forum:
    OA Framework

  • Ora-01466 unable to read data table definition has changed oracle.

    hi all,
    i truncated a table before 10 min. now i want the data's so i used this query ;
    select *
    from ( select *
    from sometable where some_condition )
    as of timestamp sysdate-1;
    but it shows:
    """ ora-01466 unable to read data table definition has changed oracle"""";
    how to get the deleted records from database????????????
    Edited by: 887268 on Oct 24, 2011 4:02 AM

    Error:  ORA 1466
    Text:   unable to read data -- object definition has changed
    Cause:  This is a time-based read consistency error for a database object,
            such as a table or index.
            Either of the following may have happened:
            The query was parsed and executed with a snapshot older than the time
            the object was changed.
            The creation time-stamp of the object is greater than the current
            system time.
            This happens, for example, when the system time is set to a time
            earlier than the creation time of the object.
    Action: If the cause is
            an old snapshot, then commit or rollback the transaction and resume
            work.
            a creation time-stamp in the future, ensure the system time is set
            correctly.
            If the object creation time-stamp is still greater than the system
            time, then export the object's data, drop the object, recreate the
            object so it has a new creation time-stamp, import the object's data,
            and resume work.

  • SPRING App through JBOSS - error:Unable to read TLD

    Hello,
    First post for me, not 100% certain I am in the right forum, but here I go.
    I am using Eclipse 3.1, JRE j2sdk1.4.2, spring-framework-1.2, and JBOSS 3.2.7 to follow this tutorial
    http://www.springframework.org/docs/MVC-step-by-step/Spring-MVC-step-by-step-Part-2.html
    on building a simple Spring MVC application.
    I am using jstl.jar,standard.jar (among others) from the spring-framework-1.2 release. I noticed JBOSS starting to go nuts after adding these 2 jars specifically.
    My project .war is deployed to JBOSS containg a WEB-INF/lib storing the .jars (standard.jar, jstl.jar ...) I do not have these .jars configured in JBOSS' classpath.
    When I run my app and hit my my servlet followed by jsp page, JBOSS reports a runtime exception.
    jsp...
    <%@ include file="/WEB-INF/jsp/include.jsp"%>
    <html>
    <head>
    <title>Hello :: Spring Application</title>
    </head>
    <body>
    <h1>Hello - Spring Application</h1>
    <p>Greetings, it is now <c:out value="${now}" /></p>
    </body>
    </html>
    exception...
    : Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: /index.jsp(1,1) Unable to read TLD "META-INF/c.tld" from JAR file "file:/C:/java/jboss-3.2.7/server/default/tmp/deploy/tmp3725spring_app.war/WEB-INF/lib/standard.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV
         at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
    I confirmed that this standard.jar is deployed/accessible, and the tld is present.
    any ideas?
    Thanks,
    Chris

    Hi
    I am also facing the same problem. But I am using tomcat 5.0.xx and i havnt included extra jsp-api in the lib. But getting the error
    JSP Parsing Error:Failed to load or instantiate TagLibraryValidator class: com.sun.faces.taglib.jsf_core.CoreValidator
    tried all the options...but yet not got where is the problem.
    Please help.

  • RMAN unable to read backupset file during Cloning

    Hi,
    I'm performing cloning operation on windows to windows. On target I have taken backup through rman using recovery catalog. I've taken fresh backup of database along with archivelogs and delete the obsoleted one using rman recovery catalog repository.
    When I connect to Target,Recovery catalog and auxiliary instance after executing some commands RMAN gives error that it is unable to read backupset file. What could be the reason for this. I'm posting the Error Portion of RMAN listing please see it and tell me what could be the reasons as I have taken fresh backups and it seems that it is unable to read that particular backup.
    channel ORA_AUX_DISK_1: reading from backup piece C:\ORACLEBASE\PRODUCT\10.2.0\F
    LASH_RECOVERY_AREA\ORCL\BACKUPSET\2010_09_27\O1_MF_NNNDF_TAG20100927T125050_6B0M
    6YLD_.BKP
    ORA-19870: error reading backup piece C:\ORACLEBASE\PRODUCT\10.2.0\FLASH_RECOVER
    Y_AREA\ORCL\BACKUPSET\2010_09_27\O1_MF_NNNDF_TAG20100927T125050_6B0M6YLD_.BKP
    ORA-19505: failed to identify file "C:\ORACLEBASE\PRODUCT\10.2.0\FLASH_RECOVERY_
    AREA\ORCL\BACKUPSET\2010_09_27\O1_MF_NNNDF_TAG20100927T125050_6B0M6YLD_.BKP"
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 3) The system cannot find the path specified
    failover to previous backup
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 09/27/2010 13:17:22
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 6 found to restore
    RMAN-06023: no backup or copy of datafile 5 found to restore
    RMAN-06023: no backup or copy of datafile 4 found to restore
    RMAN-06023: no backup or copy of datafile 3 found to restore
    RMAN-06023: no backup or copy of datafile 2 found to restore
    RMAN-06023: no backup or copy of datafile 1 found to restore
    RMAN>
    Please help me in this matter.
    Regards,
    Abbasi

    If your RMAN backup exist on target server path.
    Target Server: C:\Oracle\RMAN_BACKUP\
    Put it on the same location in the auxiliary server.
    Auxiliary Server: C:\Oracle\RMAN_BACKUP\
    During cloning also connect with your recovery catalog as you are using recover catalog for the target server.
    Regards
    Asif Kabir
    Edited by: asifkabirdba on Sep 27, 2010 2:51 PM

  • Java.io.FileNotFoundException: Unable to locate style sheet "oracle/webcent

    Hi
    I have created a webceter application in jdeveloper 11.1.1.4 with the default page templates and pages.
    After creating the application i followed the below steps
    1. Created a new skin file test-skin.css under webcontent/oracle/webcenter/portalapp/skins
    2. Created a trinidad-skins.xml under WEB-INF and configured it as below
    <?xml version="1.0" encoding="windows-1252" ?>
    <skins xmlns="http://myfaces.apache.org/trinidad/skin">
    <skin>
    <id>testskin</id>
    <family>testskin</family>
    <version>
    <name>v1</name>
    <default>true</default>
    </version>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <style-sheet-name>oracle/webcenter/portalapp/skins/test-skin.css</style-sheet-name>
    </skin>
    </skins>
    3. Made entry in the trinidad-config.xml as
    <?xml version="1.0" encoding="windows-1252"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>testskin</skin-family>
    </trinidad-config>
    4. Ran the portal but got error on the console as below
    <StyleSheetEntry> <_getNameResolver> Could not load style sheet: oracle/webcenter/portalapp/skins/test-skin.css
    <StyleSheetEntry> <_getNameResolver>
    java.io.FileNotFoundException: Unable to locate style sheet "oracle/webcenter/portalapp/skins/test-skin.css" in local styles directory (C:\Users\197944 \AppData\Roaming\JDeveloper\system11.1.1.4.37.59.23\DefaultDomain\servers\DefaultServer\tmp\_WL_user\TestSkin_V2.0\7x71m9\public\adf\styles), or on the class path.
    Please be sure that this style sheet is installed.
         at org.apache.myfaces.trinidadinternal.skin.StyleSheetEntry._getNameResolverForStyleSheetFile(StyleSheetEntry.java:439)
         at org.apache.myfaces.trinidadinternal.skin.StyleSheetEntry._getNameResolver(StyleSheetEntry.java:347)
         at org.apache.myfaces.trinidadinternal.skin.StyleSheetEntry.createEntry(StyleSheetEntry.java:78)
         at org.apache.myfaces.trinidadinternal.skin.SkinImpl._createStyleSheetDocument(SkinImpl.java:563)
         at org.apache.myfaces.trinidadinternal.skin.SkinImpl.getStyleSheetDocument(SkinImpl.java:346)
         at org.apache.myfaces.trinidadinternal.skin.SkinExtension.getStyleSheetDocument(SkinExtension.java:527)
         at org.apache.myfaces.trinidadinternal.skin.SkinStyleProvider.createStyleSheetDocument(SkinStyleProvider.java:158)
         at org.apache.myfaces.trinidadinternal.style.cache.FileSystemStyleCache._getStyleSheetDocument(FileSystemStyleCache.java:649)
         at org.apache.myfaces.trinidadinternal.style.cache.FileSystemStyleCache._getEntry(FileSystemStyleCache.java:424)
         at org.apache.myfaces.trinidadinternal.style.cache.FileSystemStyleCache.getStyleSheetURIs(FileSystemStyleCache.java:178)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.StyleSheetRenderer.encodeAll(StyleSheetRenderer.java:97)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderSkinStylesheet(DocumentRenderer.java:1999)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:885)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.webcenter.portalframework.sitestructure.handler.CustomViewHandler.renderView(CustomViewHandler.java:279)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:777)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:293)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:213)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.lifecycle.filter.LifecycleLockFilter.doFilter(LifecycleLockFilter.java:151)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         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:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    I also tried creating portal resource for the skin by right clicking on the skin file, but i still get the same error.
    If i create a skin file under anyother folder directly under the webcontent say /css/test-skin.css it works file.
    Am i doing something wrong or missing any entries?Help is appreciated.
    Thanks

    By default, trinidad-config picks up the skin setup through the preference bean - "#{preferenceBean.defaultTrinidadSkin}". The default skin can be setup through adf-config.xml at design time (look for <portal:preference id="oracle.webcenter.portalapp.skin") or using the Administration console at run-time. The value used here is whatever you've configured as "Skin Family" when creating the portal resource.
    Of course, you can edit the trinidad-config to hard-code the skin as well using the same "Skin Family" from the Create Portal Resource dialog.

  • Server was unable to read request. RuntimeFaultMessage

    Hi, I'm trying to orchestate a .Net web service that receives a String... the String that this .Net web service receives is called "xml" and it represents a xml like this "<rc><ho>hjh</ho><h><h1>hj>/h1><h2>hjh</h2></h></rc>"
    When I instantiate the call of this web service through BPEL I get this error:
    web_rc_asmx (ReporteRC) (faulted)
    [2004/09/22 12:31:04] "{http://schemas.oracle.com/bpel/extension}bindingFault" has been thrown. Less
    faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    code: {Client}
    summary: {Server was unable to read request. --> There is an error in XML document (3, 114). --> 'Element' is an invalid node type. Line 3, position 114.}
    parts: {{}}
    The xml string that receives is good because I have tried it directry from the web service page.. or even calling it from an stub/skeleton.. Any idea what could be wrong???
    Thanks a lot,
    PAOLA LINARES

    this is the Bpel file:
    <!-- PAOLAPRO BPEL Process [Generated by the Oracle BPEL Designer] -->
    <process name="PAOLAPRO" targetNamespace="http://oracle.com" suppressJoinFailure="yes" xmlns:tns="http://oracle.com" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:ns0="http://tempuri.org/">
         <!-- ================================================================= -->
         <!-- PARTNERLINKS -->
         <!-- List of services participating in this BPEL process -->
         <!-- ================================================================= -->
         <partnerLinks>
              <!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
              <partnerLink name="client" partnerLinkType="tns:PAOLAPRO" myRole="PAOLAPROProvider" partnerRole="PAOLAPRORequester"/>
              <partnerLink name="ReporteRC" partnerLinkType="ns0:WSInfRCSoapLink" partnerRole="WSInfRCSoapProvider"/>
         </partnerLinks>
         <!-- ================================================================= -->
         <!-- VARIABLES -->
         <!-- List of messages and XML documents used within this BPEL process -->
         <!-- ================================================================= -->
         <variables>
              <!-- Reference to the message passed as input during initiation -->
              <variable name="input" messageType="tns:PAOLAPRORequestMessage"/>
              <!-- Reference to the message that will be sent back to the
    requester during callback
    -->
              <variable name="output" messageType="tns:PAOLAPROResponseMessage"/>
              <variable messageType="ns0:ReporteRCSoapIn" name="IN_"/>
              <variable messageType="ns0:ReporteRCSoapOut" name="OUT_"/>
         </variables>
         <!-- ================================================================= -->
         <!-- ORCHESTRATION LOGIC -->
         <!-- Set of activities coordinating the flow of messages across the -->
         <!-- services integrated within this business process -->
         <!-- ================================================================= -->
         <sequence name="main">
              <!-- Receive input from requestor.
    Note: This maps to operation defined in PAOLAPRO.wsdl
    -->
              <receive name="receiveInput" partnerLink="client" portType="tns:PAOLAPRO" operation="initiate" variable="input" createInstance="yes"/>
              <!-- Asynchronous callback to the requester.
    Note: the callback location and correlation id is transparently handled
    using WS-addressing.
    -->
              <scope name="scope-1">
                   <sequence>
                        <assign name="assign-1">
                             <copy>
                                  <from variable="input" part="payload" query="/tns:PAOLAPRORequest/tns:input">
                                  </from>
                                  <to variable="IN_" part="parameters" query="/ns0:ReporteRC/ns0:xml"/>
                             </copy>
                        </assign>
                        <invoke name="invoke-1" partnerLink="ReporteRC" portType="ns0:WSInfRCSoap" operation="ReporteRC" inputVariable="IN_" outputVariable="OUT_"/>
                   </sequence>
              </scope>
              <invoke name="callbackClient" partnerLink="client" portType="tns:PAOLAPROCallback" operation="onResult" inputVariable="output"/>
         </sequence>
    </process>
    WSDL file:
    <?xml version="1.0"?>
    <definitions name="PAOLAPRO"
    targetNamespace="http://oracle.com"
    xmlns:tns="http://oracle.com"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    >
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    TYPE DEFINITION - List of services participating in this BPEL process
    The default output of the BPEL designer uses strings as input and
    output to the BPEL Process. But you can define or import any XML
    Schema type and us them as part of the message types.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <types>
    <schema attributeFormDefault="qualified"
    elementFormDefault="qualified"
    targetNamespace="http://oracle.com"
    xmlns="http://www.w3.org/2001/XMLSchema"
    >
    <element name="PAOLAPRORequest">
    <complexType>
    <sequence>
    <element name="input" type="string" />
    </sequence>
    </complexType>
    </element>
    <element name="PAOLAPROResponse">
    <complexType>
    <sequence>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </types>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    MESSAGE TYPE DEFINITION - Definition of the message types used as
    part of the port type defintions
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <message name="PAOLAPRORequestMessage">
    <part name="payload" element="tns:PAOLAPRORequest"/>
    </message>
    <message name="PAOLAPROResponseMessage">
    <part name="payload" element="tns:PAOLAPROResponse"/>
    </message>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PORT TYPE DEFINITION - A port type groups a set of operations into
    a logical service unit.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <!-- portType implemented by the PAOLAPRO BPEL process -->
    <portType name="PAOLAPRO">
    <operation name="initiate">
    <input message="tns:PAOLAPRORequestMessage"/>
    </operation>
    </portType>
    <!-- portType implemented by the requester of PAOLAPRO BPEL process
    for asynchronous callback purposes
    -->
    <portType name="PAOLAPROCallback">
    <operation name="onResult">
    <input message="tns:PAOLAPROResponseMessage"/>
    </operation>
    </portType>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PARTNER LINK TYPE DEFINITION
    the PAOLAPRO partnerLinkType binds the provider and
    requester portType into an asynchronous conversation.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <plnk:partnerLinkType name="PAOLAPRO">
    <plnk:role name="PAOLAPROProvider">
    <plnk:portType name="tns:PAOLAPRO"/>
    </plnk:role>
    <plnk:role name="PAOLAPRORequester">
    <plnk:portType name="tns:PAOLAPROCallback"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    WSINFRCWrapper.wsdl:
    <?xml version="1.0" encoding="utf-8"?>
    <definitions
         targetNamespace="http://tempuri.org/"
         xmlns:tns="http://tempuri.org/"
         xmlns="http://schemas.xmlsoap.org/wsdl/"
         xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
         >
         <import location="http://boinfrcs/wsdcrc/wsinfrc.asmx?WSDL"/>
         <plnk:partnerLinkType name="WSInfRCSoapLink">
              <plnk:role name="WSInfRCSoapProvider">
                   <plnk:portType name="tns:WSInfRCSoap" />
              </plnk:role>
         </plnk:partnerLinkType>     
    </definitions>
    This is the XML String:
    <RC><registro_control><tipo_llamado asin="false"/><usuario><id_usuario>xxx</id_usuario><clave>yyy</clave></usuario><documento tipo_documento="3988"><id_documento>1234</id_documento><NombreRegistro>solicitud_informacion</NombreRegistro></documento><cliente><nit>860001942-8</nit></cliente><solicitud><id_solicitud>5425</id_solicitud><url_respuesta>http://sevidor:puerto/RaizVirtual/ModuloTransmision/recibirEnvio.asp</url_respuesta><id_usuario_remoto>idUsuario</id_usuario_remoto><clave_usuario_remoto>claveUsuario</clave_usuario_remoto></solicitud></registro_control><Informacion><Dolar>2700</Dolar><Bolivar>1.38</Bolivar></Informacion><Cliente><Id>8913379</Id><TipoId>3</TipoId></Cliente></RC>
    and this is the Error:
    04/09/28 10:15:34 AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client
    faultString: Server was unable to read request. --> There is an error in XML do
    cument (3, 114). --> 'Element' is an invalid node type. Line 3, position 114.
    faultActor: null
    faultDetail:
    04/09/28 10:15:34 Server was unable to read request. --> There is an error in XM
    L document (3, 114). --> 'Element' is an invalid node type. Line 3, position 114
    04/09/28 10:15:34 at org.apache.axis.message.SOAPFaultBuilder.endElement(S
    OAPFaultBuilder.java:135)
    04/09/28 10:15:34 at org.apache.axis.encoding.DeserializationContextImpl.e
    ndElement(DeserializationContextImpl.java:942)
    04/09/28 10:15:34 at org.apache.xerces.parsers.AbstractSAXParser.endElemen
    t(Unknown Source)
    04/09/28 10:15:34 at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanE
    ndElement(Unknown Source)
    04/09/28 10:15:34 at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
    $FragmentContentDispatcher.dispatch(Unknown Source)
    04/09/28 10:15:34 at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
    .scanDocument(Unknown Source)
    04/09/28 10:15:34 at org.apache.xerces.parsers.XML11Configuration.parse(Un
    known Source)
    04/09/28 10:15:34 at org.apache.xerces.parsers.XML11Configuration.parse(Un
    known Source)
    04/09/28 10:15:34 at org.apache.xerces.parsers.XMLParser.parse(Unknown Sou
    rce)
    04/09/28 10:15:34 at org.apache.xerces.parsers.AbstractSAXParser.parse(Unk
    nown Source)
    04/09/28 10:15:34 at javax.xml.parsers.SAXParser.parse(Unknown Source)
    04/09/28 10:15:34 at org.apache.axis.encoding.DeserializationContextImpl.p
    arse(DeserializationContextImpl.java:232)
    04/09/28 10:15:34 at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.j
    ava:547)
    04/09/28 10:15:34 at org.apache.axis.Message.getSOAPEnvelope(Message.java:
    377)
    04/09/28 10:15:34 at org.apache.axis.client.Call.invokeEngine(Call.java:21
    72)
    04/09/28 10:15:34 at org.apache.axis.client.Call.invoke(Call.java:2138)
    04/09/28 10:15:34 at org.apache.axis.client.Call.invoke(Call.java:1308)
    04/09/28 10:15:34 at org.apache.wsif.providers.collaxa.axis.WSIFOperation_
    ApacheAxis.invokeAXISMessaging(WSIFOperation_ApacheAxis.java:1892)
    04/09/28 10:15:34 at org.apache.wsif.providers.collaxa.axis.WSIFOperation_
    ApacheAxis.invokeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1451)
    04/09/28 10:15:34 at org.apache.wsif.providers.collaxa.axis.WSIFOperation_
    ApacheAxis.executeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1022)
    04/09/28 10:15:34 at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIF
    InvocationHandler.java:306)
    04/09/28 10:15:34 at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvo
    cationManager.java:250)
    04/09/28 10:15:34 at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvo
    cationManager.java:133)
    04/09/28 10:15:34 at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invok
    e(BPELInvokeWMP.java:518)
    04/09/28 10:15:34 at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__execu
    teStatements(BPELInvokeWMP.java:276)
    04/09/28 10:15:34 at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perfo
    rm(BPELActivityWMP.java:175)
    04/09/28 10:15:34 at com.collaxa.cube.engine.CubeEngine.performActivity(Cu
    beEngine.java:3244)
    04/09/28 10:15:34 at com.collaxa.cube.engine.CubeEngine.handleWorkItem(Cub
    eEngine.java:1664)
    04/09/28 10:15:34 at com.collaxa.cube.engine.dispatch.message.instance.Per
    formMessageHandler.handleLocal(PerformMessageHandler.java:75)
    04/09/28 10:15:34 at com.collaxa.cube.engine.dispatch.DispatchHelper.handl
    eLocalMessage(DispatchHelper.java:84)
    04/09/28 10:15:34 at com.collaxa.cube.engine.dispatch.DispatchHelper.sendM
    emory(DispatchHelper.java:137)
    04/09/28 10:15:34 at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEng
    ine.java:5318)
    04/09/28 10:15:34 at com.collaxa.cube.engine.CubeEngine.createAndInvoke(Cu
    beEngine.java:1192)
    04/09/28 10:15:34 at com.collaxa.cube.engine.delivery.DeliveryService.hand
    leInvoke(DeliveryService.java:480)
    04/09/28 10:15:34 at com.collaxa.cube.engine.bean.DeliveryBean.handleInvok
    e(DeliveryBean.java:307)
    04/09/28 10:15:34 at IDeliveryLocalBean_StatelessSessionBeanWrapper16.hand
    leInvoke(IDeliveryLocalBean_StatelessSessionBeanWrapper16.java:1764)
    04/09/28 10:15:34 at com.collaxa.cube.engine.dispatch.message.invoke.Invok
    eInstanceMessageHandler.handle(InvokeInstanceMessageHandler.java:36)
    04/09/28 10:15:34 at com.collaxa.cube.engine.dispatch.DispatchHelper.handl
    eMessage(DispatchHelper.java:62)
    04/09/28 10:15:34 at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.
    process(BaseScheduledWorker.java:72)

  • System unable to read table in Adhoc Query

    Hi Experts,
    I am trying to extract a report based on Infotype 0022 through Adhoc query. Even after maintaining data for IT0022 for a few employees the system is unable to read the educational details of those employees.
    I am unable to trace the defect . can anybody please tell me what could be the reason. I have checked the table PA0022, there the data is been stored.
    Thanks & Regards,
    Smitha

    Hi paul and experts
    actuall im reading data from 0022 infotype .  im using  macro
    rp_provide_from_last p0022 '11' pn-begda pn-endda.
    no data found for this.
    but in pa30 for that particular employee data is there.
    please help me out of this.
    thanks a lot

  • Error: Unable to read footer file

    Hoping someone out there can help me. I get this error on
    everypage in my site and have no idea how to stop it.
    Error: Unable to read footer file
    The error does not show up when I preview inside dreamweaver
    but only rears its ugly head after I post the site up on the
    internet. I have searched for hours through the Dreamweaver menus
    and can not find these elusive footers and have no idea where they
    are coming from or what footer file it is trying to read.. Please
    help. This probably has a simple solution and I am just not able to
    understand it. Thank you.

    sdrouillard wrote:
    > This probably has a simple solution and I am just not
    able to understand
    > it.
    Possibly, but without a URL we can't comment. Post it, and
    we'll see.
    At a guess, sounds like an include file is missing. Are you
    on some sort of
    free hosting plan where the host puts some adverts in the
    footer? If that
    file is removed from your site directory you might get the
    error you've
    mentioned (at least, that was the case on the only other time
    I've seen this
    error)
    Regards,
    Pete.
    Peter Connolly
    http://www.acutecomputing.co.uk
    Derby
    UK
    Skype ID: acutecomputing

  • Unable to read the dictionary of the application or extension...

    I had previously installed the HP Color LaserJet 3600 driver from the install CD under Tiger. I recently did an archive and install of Leopard, then ran all the system updates. (Currently at 10.5.5)
    When I insert the 3600 CD, though, I get a bunch of jibberish (parts of images, etc.) and a MAC OS X directory. The installer inside that directory attempts to be opened with Script Editor, though, and gives an error: "Unable to read the dictionary of the application or extension because it is not scriptable." followed by "The document 'HP Color LaserJet v5.6.1.069' could not be opened."
    Previously this would launch the HP installation program that would install the driver. Now, it's like it's not a recognized program or something. I downloaded the driver from the HP website to try it that way (clj3600MacOSX.dmg) with the same result. The .dmg file opens a disk image with the "HP Color LaserJet v.5.6.1.069" file in it...same result. Cannot open.
    I know this program ran fine under Tiger...and a co-worker got it to run after doing an upgrade to Leopard (instead of archive and install.)
    When I downloaded the HP 4300 installer dmg, it launches a .mpkg file and Get Info says it's set to open with "Installer (default)". The 3600 file, though is set to open with "Script Editor (default)". I've looked to set it to Installer, but don't know where it is...it's not in Applications or Utilities folder.
    I then right clicked on the installer file and selected "Show Package Contents". In the window that was displayed, there was a Contents folder. Inside that folder was a file called "HP Color LaserJet v5.6" with no file extension (Get Info doesn't show an extension either,) but it has a VISE logo. Opening that file launches the VISE installer and performs the setup.
    So, by jumping through hoops and getting lucky, I was able to install the driver.
    The bigger issue, though, is why the installation CD and/or .dmg file downloaded from HP's website cannot run the installer as usual...why are they set to open with Script Editor as the default application...and how can I fix it so that other disks won't have the same problem?
    [I originally posted this in the Printers forum, but it appears it's not a printing problem...it's an OS problem...]

    Installer.app is in /System/Library/CoreServices/

  • I have an iPhone 4s, and I reset the content and setting. It turned on, I chose English, Australia, and now, I am unable to connect/activate my iPhone through Wi-Fi, and for an unknown reason, it will not allow me to use cellular data or iTunes.

    I have an iPhone 4s, and I reset the content and setting. It turned on, I chose English, Australia, and now, I am unable to connect/activate my iPhone through Wi-Fi, and for an unknown reason, it will not allow me to use cellular data or iTunes. I'm not sure of what to do. It's quite frustrating, and all I need is advice, and help. I would much appreciate it. Thank-you.

    In order to download to your phone over the air, you need to be connected to WiFi.
    It's possible the Internet connection through Verizon is not stable enough for the downlaod to begin (it is a very large download).
    You might want to head over to Starbucks with your laptop for the afternoon and see if you can download it over their WiFi.

  • When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a s

    When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a stalled/locked program.  I have tried restarting my machine multiple times and tried reconfiguring how the cache is managed.  Do you have anyone who could walk me through each step to correct this problem which just started two days ago.  I have owned this program for at least a year now...

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • I cant get a stream to my laptop. everything is turned on. ***

    i cant get a stream to my laptop and everthing i can see is turned on

  • Undefined operator in a String calculation

    Hey, i am just trying to do a simple calculation with a String, however Java tells me that the operator '>' is undefined.. I don't see why this would be..? for (int x = 0; x <= 7; x++) {                     for (int y = (x + 1); y <= 8; y++) {       

  • Het gaat over Adobe Premiere Elements 10

    Ik gebruik Windows 8.1. De PC heeft een intel Core i5-4460 processor en een NVIDIA GeForce GT720 DirextX grafische kaart. Als ik de binnengehaalde scenes naar de tijdlijn sleep krijg ik geen beeld in het voorvertoningschern. Ook niet als ik ze laat r

  • Email Attachments not showing up

    I know others have posted this question, but I can't seem to find the answer. Are email attachments coming through Mobile Me? I ask because I'm not receiving them.

  • Urget please moving to testing system

    Dear All, I am new to BW. I have bulit a report(Development system). What is the process after that? It needs to be in portal. How that report will be transported to Test System. which one is first task? Portal or test system. Do i need to ask basis