Error in running refresh (META DATA)

I am evaluating the product and I am trying to map my objects to an
existing schema. However, I getting an exception i can't seem to figure
out....
Is this a bug or is it my own doing?
Here is the table:
TUSER
USER_ID | LASTNM | USERNM | FIRSTNM | .........
| | | | .........
USER_ID is PK!!!
Here is the system.jdo file:
<?xml version="1.0"?>
<jdo>
<package name="com.gulfnet.groupcast.data">
<class name="User" identity-type="datastore">
<extension vendor-name="kodo" key="table" value="TUSER"/>
<extension vendor-name="kodo" key="pk-column" value="USER_ID"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="_username" persistence-modifier="none"
primary-key="true" null-value="none">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="USER_ID"/>
</field>
<field name="_firstName">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="USERNM"/>
</field>
<field name="_lastName">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="LASTNM"/>
</field>
<field name="_contactInfo">
<map key-type="PhoneNumber"/>
<extension vendor-name="kodo" key="inverse"
value="_username"/>
          <extension vendor-name="kodo" key="data-column" value="TEL"/>
</field>
<field name="_birthDate">
<extension vendor-name="kodo" key="data-column"
value="REG_DATE"/>
</field>
</class>
<class name="EmailAccount">
<extension vendor-name="kodo" key="table" value="TUSER"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="_username">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="MailUserID"/>
</field>
<field name="_password">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="EPASSWD"/>
</field>
<field name="_emailAddress">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="RETEMAIL"/>
</field>
<field name="_serverName">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="MSG_SERVER"/>
</field>
</class>
<class name="PhoneNumber">
<extension vendor-name="kodo" key="table" value="TUSER"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="_countryCode">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="TEL"/>
</field>
<field name="_areaCode">
<extension vendor-name="kodo" key="column-length"
value="50"/>
<extension vendor-name="kodo" key="data-column"
value="FAX"/>
</field>
</class>
     <class name="Address">
     <extension vendor-name="kodo" key="table" value="TUSER"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="_streetAddress">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="ADDRESS1"/>
</field>
<field name="_city">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="ADDRESS2"/>
</field>
</class>
<class name="Attachment"/>
<class name="InstantMessengerAddress"/>
<class name="UserStatus"/>
<class name="MessagePriority"/>
<class name="MessageStatus"/>
<class name="Organisation">
<field name="_subsidiaries">
<collection element-type="Organisation"/>
</field>
<field name="_employees">
<collection element-type="User"/>
</field>
<field name="_orgUnits">
<collection element-type="OrgUnit"/>
</field>
</class>
<class name="OrgUnit">
<field name="_employees">
<collection element-type="User"/>
</field>
<field name="_subUnits">
<collection element-type="OrgUnit"/>
</field>
</class>
<class name="Route">
<field name="_recipients">
<collection element-type="EmailAccount"/>
</field>
</class>
<class name="GcMessage">
<field name="_route">
<collection element-type="Route"/>
</field>
<field name="_attachments">
<collection element-type="Attachment"/>
</field>
</class>
</package>
</jdo>
After running my enhancer and then running the refresh. I get an unusual
exception.
Here is my enhance:
[copy] Copying 1 file to C:\GC50\GroupCast\dev\build\WEB-INF\classes
[copy] Copying 1 file to C:\GC50\GroupCast\dev\build
[copy] Copying 1 file to C:\GC50\GroupCast\dev\build\WEB-INF\classes
[java] Enhancing "class com.gulfnet.groupcast.data.User"...
[java] Enhancing "class com.gulfnet.groupcast.data.EmailAccount"...
[java] Enhancing "class com.gulfnet.groupcast.data.PhoneNumber"...
[java] Enhancing "class com.gulfnet.groupcast.data.Address"...
[java] Enhancing "class com.gulfnet.groupcast.data.Attachment"...
[java] Enhancing "class
com.gulfnet.groupcast.data.InstantMessengerAddress"...
[java] Enhancing "class com.gulfnet.groupcast.data.UserStatus"...
[java] Enhancing "class com.gulfnet.groupcast.data.MessagePriority"...
[java] Enhancing "class com.gulfnet.groupcast.data.MessageStatus"...
[java] Enhancing "class com.gulfnet.groupcast.data.Organisation"...
[java] Enhancing "class com.gulfnet.groupcast.data.OrgUnit"...
[java] Enhancing "class com.gulfnet.groupcast.data.Route"...
[java] Enhancing "class com.gulfnet.groupcast.data.GcMessage"...
refreshDataStore:
[echo] refreshing data stores
[java] javax.jdo.JDOFatalDataStoreException: An error occurred while
connecting to the data store.
[java] NestedThrowables:
[java] java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
JDBC][SQLServer]There is already an object named 'JDO_SCHEMA_METADATAX' in
the datab
ase.
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.<init>(SchemaTool.java:99)
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1114)
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1083)
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1073)
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1064)
[java] Exception in thread "main"
BUILD FAILED
C:\GC50\GroupCast\dev\andrew.xml:151: Java returned: 1
I have deleted this table and it seems to be throwing this error while it
creates the table. That is the only table JDO ends up creating before the
refresh crashes.
Andrew.

Andrew,
It sounds like the username that you are using to connect to the data store
might not have access to read the JDO_SCHEMA_METADATAX table from the JDBC
database metadata. Since you are mapping to an existing schema, you should
not have to run schematool at all -- try just listing all your persistent
types in preferences/properties as described in our documentation instead of
registering the persistent types in the JDO_SCHEMA_METADATAX table.
Additionally, there are a couple of problems with your XML metadata. When
using datastore identity, you cannot use the 'primary-key=true' setting for
a field -- Kodo is responsible for managing the primary key, and you do not
have direct access to it.
If you need direct access to the id fields, then you should use application
identity. Alternately, you can extract the long value from our underlying
datastore identity type, but that requires using Kodo-specific code.
-Patrick
On 6/26/02 7:13 AM, "Andrew" <[email protected]> wrote:
I am evaluating the product and I am trying to map my objects to an
existing schema. However, I getting an exception i can't seem to figure
out....
Is this a bug or is it my own doing?
Here is the table:
TUSER
USER_ID | LASTNM | USERNM | FIRSTNM | .........
| | | | .........
USER_ID is PK!!!
Here is the system.jdo file:
<?xml version="1.0"?>
<jdo>
<package name="com.gulfnet.groupcast.data">
<class name="User" identity-type="datastore">
<extension vendor-name="kodo" key="table" value="TUSER"/>
<extension vendor-name="kodo" key="pk-column" value="USER_ID"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="_username" persistence-modifier="none"
primary-key="true" null-value="none">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="USER_ID"/>
</field>
<field name="_firstName">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="USERNM"/>
</field>
<field name="_lastName">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="LASTNM"/>
</field>
<field name="_contactInfo">
<map key-type="PhoneNumber"/>
<extension vendor-name="kodo" key="inverse"
value="_username"/>
<extension vendor-name="kodo" key="data-column" value="TEL"/>
</field>
<field name="_birthDate">
<extension vendor-name="kodo" key="data-column"
value="REG_DATE"/>
</field>
</class>
<class name="EmailAccount">
<extension vendor-name="kodo" key="table" value="TUSER"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="_username">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="MailUserID"/>
</field>
<field name="_password">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="EPASSWD"/>
</field>
<field name="_emailAddress">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="RETEMAIL"/>
</field>
<field name="_serverName">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="MSG_SERVER"/>
</field>
</class>
<class name="PhoneNumber">
<extension vendor-name="kodo" key="table" value="TUSER"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="_countryCode">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="TEL"/>
</field>
<field name="_areaCode">
<extension vendor-name="kodo" key="column-length"
value="50"/>
<extension vendor-name="kodo" key="data-column"
value="FAX"/>
</field>
</class>
<class name="Address">
<extension vendor-name="kodo" key="table" value="TUSER"/>
<extension vendor-name="kodo" key="lock-column" value="none"/>
<extension vendor-name="kodo" key="class-column" value="none"/>
<field name="_streetAddress">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="ADDRESS1"/>
</field>
<field name="_city">
<extension vendor-name="kodo" key="column-length"
value="255"/>
<extension vendor-name="kodo" key="data-column"
value="ADDRESS2"/>
</field>
</class>
<class name="Attachment"/>
<class name="InstantMessengerAddress"/>
<class name="UserStatus"/>
<class name="MessagePriority"/>
<class name="MessageStatus"/>
<class name="Organisation">
<field name="_subsidiaries">
<collection element-type="Organisation"/>
</field>
<field name="_employees">
<collection element-type="User"/>
</field>
<field name="_orgUnits">
<collection element-type="OrgUnit"/>
</field>
</class>
<class name="OrgUnit">
<field name="_employees">
<collection element-type="User"/>
</field>
<field name="_subUnits">
<collection element-type="OrgUnit"/>
</field>
</class>
<class name="Route">
<field name="_recipients">
<collection element-type="EmailAccount"/>
</field>
</class>
<class name="GcMessage">
<field name="_route">
<collection element-type="Route"/>
</field>
<field name="_attachments">
<collection element-type="Attachment"/>
</field>
</class>
</package>
</jdo>
After running my enhancer and then running the refresh. I get an unusual
exception.
Here is my enhance:
[copy] Copying 1 file to C:\GC50\GroupCast\dev\build\WEB-INF\classes
[copy] Copying 1 file to C:\GC50\GroupCast\dev\build
[copy] Copying 1 file to C:\GC50\GroupCast\dev\build\WEB-INF\classes
[java] Enhancing "class com.gulfnet.groupcast.data.User"...
[java] Enhancing "class com.gulfnet.groupcast.data.EmailAccount"...
[java] Enhancing "class com.gulfnet.groupcast.data.PhoneNumber"...
[java] Enhancing "class com.gulfnet.groupcast.data.Address"...
[java] Enhancing "class com.gulfnet.groupcast.data.Attachment"...
[java] Enhancing "class
com.gulfnet.groupcast.data.InstantMessengerAddress"...
[java] Enhancing "class com.gulfnet.groupcast.data.UserStatus"...
[java] Enhancing "class com.gulfnet.groupcast.data.MessagePriority"...
[java] Enhancing "class com.gulfnet.groupcast.data.MessageStatus"...
[java] Enhancing "class com.gulfnet.groupcast.data.Organisation"...
[java] Enhancing "class com.gulfnet.groupcast.data.OrgUnit"...
[java] Enhancing "class com.gulfnet.groupcast.data.Route"...
[java] Enhancing "class com.gulfnet.groupcast.data.GcMessage"...
refreshDataStore:
[echo] refreshing data stores
[java] javax.jdo.JDOFatalDataStoreException: An error occurred while
connecting to the data store.
[java] NestedThrowables:
[java] java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
JDBC][SQLServer]There is already an object named 'JDO_SCHEMA_METADATAX' in
the datab
ase.
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.<init>(SchemaTool.java:99)
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1114)
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1083)
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1073)
[java] at
com.solarmetric.kodo.impl.jdbc.schema.SchemaTool.main(SchemaTool.java:1064)
[java] Exception in thread "main"
BUILD FAILED
C:\GC50\GroupCast\dev\andrew.xml:151: Java returned: 1
I have deleted this table and it seems to be throwing this error while it
creates the table. That is the only table JDO ends up creating before the
refresh crashes.
Andrew.
Patrick Linskey [email protected]
SolarMetric Inc. http://www.solarmetric.com

Similar Messages

  • Alert subscription data source module encountered errors while running: Alert subscription data source module was unable to find alerts that match the subscription because of database errors.

    Hi,    We recently started getting these errors a couple times a day.   There are 12 of them in total.     We also have exactly 12 subscriptions.   Does this indicate some db issue causing all of these
    to fail?
    Alert subscription data source module encountered errors while running: Alert subscription data source module was unable to find alerts that match the subscription because of database errors.
    The following error(s) were encountered:
    Exception Message: ExecuteScalar requires an open and available Connection. The connection's current state is closed.
    One or more workflows were affected by this.
    Workflow name: Subscription8b108a3e_4e3d_4fd0_b67e_cbfc21cd10b8
    Instance name: Alert Notification Subscription Server
    Instance ID: {E07E3FAB-53BC-BC14-1634-5A6E949F9230}
    Management group: A Company Management Group
    Thanks Lance

    Hi,
    Do you have hotfixes applied?
    http://blogs.technet.com/kevinholman/archive/2009/01/27/which-hotfixes-should-i-apply.aspx
    Also, I found a relevant thread for your reference.
    Alert subscription data source module encountered errors while running</u1:p>
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/50557249-7f97-4b67-9729-f7088202385b/alert-subscription-data-source-module-encountered-errors-while-running?forum=operationsmanagergeneral</u1:p>
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error while running PB40 - initial data entry action

    Hi Friends,
    I am running PB40 initial data entry action. The values that I am giving in the Personnel Officer field are not getting accepted.
    Its giving me error : *Entry does not exist in T526 (check entry)*
    I have checked T526 table in SE16 and its showing me all the values that have been maintained for my administrator group APPL.
    "PINCH" feature is also maintained where the Tclas B- applicant data has value APPL.
    In SU3 also, I have maintained SGR - APPL.
    Please advise what else cab done to correct this error.

    reema
    have u activated switch between OM and Personal office
    PPVAC PREF just check it out and let me know

  • Alert subscription data source module encountered errors while running

    Hello All,
    After I configured subscriptions with many monitors, error alerts appear at SCOM(scom 2012 r2) console in active alert page.
    I googled it and found some topics at TechNet but I could not figure it out. Alert description is shown below
    Alert subscription data source module encountered errors while running: Alert subscription data source module was unable to find alerts that match the subscription because of database errors.
    The following error(s) were encountered:
    Exception Message: The incoming request has too many parameters. The server supports a maximum of 2100 parameters. Reduce the number of parameters and resend the request.
    One or more workflows were affected by this.
    Workflow name: Subscriptioneaa7b044_b3c1_4198_be71_ffaaf66a163f
    Instance name: Alert Notification Subscription Server
    Instance ID: {E07E3FAB-53BC-BC14-1634-5A6E949F9230}
    Management group: STS
     Any idea?
    Thanks

    As I understand, this issue occurs and remains after I configure a subscription with too many rules and/or monitors( i.e al available rule and/or monitor of a management pack).
    After I had deleted those subscription with many rule/monitor, this issue was resolved. 
    Any idea?

  • Error when running scheduled refresh from SQL Azure data

    I have a PowerPivot that connects to a SQL Azure database table.  I added the username and password in the PowerPivot connection.  It refreshed fine manually straight from PowerPivot.  However, when I upload the excel file to Power BI
    and I schedule a refresh, it fails with the following error message:
    Sorry, something went wrong. Please try again. Correlation ID: d43f07fc-cc0c-461c-b25e-68e866a2a911
    I went through this FAQ (http://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/scheduled-refresh-faq-HA104180763.aspx#_Toc388441416)
    and the steps have me also saving the password in the connection string.  However the connection string (under tab Data->Connections) is grayed-out and I am unable to enter the password.
    Thanks for your help...

    Hi,
    When you refresh in Excel client, do you get a prompt for the password?
    What worked for me in the past, is the following process:
    1. Within PowerPivot, get the data but don't save the password there.
    2. Once you get the data go back to Excel, switch to Data ribbon >> Connections, and select the connection(s) that were created in PowerPivot and select to save the password.
    3. Refresh the data (it will prompt for the password), save the file.
    4. Just to be sure, open the file again, refresh and see that it is not prompting for a password.
    GALROY

  • OBIEE 11g Map Visualization Error - basemap is defined in spatial meta-data

    Hi All,
    I have installed OBIEE 11g successfully on my Desktop Machine, deployed the Sample Applications regarding Mapviewer and its working fine. I have seen all the Maps and they are running fine in fact they are editable and i can easily do anything with those Maps but,
    The issue is that when i am going to create a new Report and try to integrate Map on it then it shows an error as display below;
    A basemap is required to render a map. Please ensure that atleast one basemap is defined in the spatial meta-data
    Error Details
    Error Codes: EMGUNIA3
    Location: saw.views.evc.activate, saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool,
    saw.threadpool, saw.threads
    I have also followed this link ( http://erpthings.blogspot.com/2011/01/obiee-11g-inbuilt-mapping-and-spatial.html ) but it is also stuck on the same error at the end.
    I didn't understand the problem why its giving an error like this while the Sample Application worked fine so, if there is any way to define a basemap in spatial meta-data plz guide me OR
    Is there any way to integrate Map with OBIEE 11g ?
    Cheers,
    Masood.

    This question has been solved!
    Basically you need to ensure the database schema where the data source (Navteq) has been imported must have the privilege "Create Type"
    This comes from the Oracle manual extract as shown below:
    1.4.4.3 Creating MapViewer Array Types, if Necessary
    For each database schema that it connects to, MapViewer checks for the existence of
    the following SQL array types that support array-type binding variables that might
    exist in some predefined themes:
    ■ MV_STRINGLIST
    ■ MV_NUMBERLIST
    ■ MV_DATELIST
    If these types do not exist, MapViewer attempts to create them in the database schema
    associated with the MapViewer data source. However, if the user associated with that
    schema does not have sufficient privileges to create new types, a privileged user must
    create the types by connecting to the data source schema and entering the following
    statements:
    CREATE or REPLACE type MV_STRINGLIST as TABLE of VARCHAR2(1000);
    CREATE or REPLACE type MV_NUMBERLIST as TABLE of NUMBER;
    CREATE or REPLACE type MV_DATELIST as TABLE of DATE;
    Cheers.

  • Interactive reporting : error while refreshing MSSQL data in Workspace

    Hi all,
    I recently work with Hyperion and I am facing an issue that makes me crazy.
    My configuration is simple :
    - 1 win2003 server with Hyperion Interactive Reporting services and workspace installed (both works properly)
    - 1 winXP machine with MS Sql Server 2005
    - My dev PC an winXP with IR studio.
    I created an IR report with a MSSQL query that retrieves data into a Table.
    The report is displayed properly and the data is OK.
    When I refresh the data in IR studio, everything is OK.
    I import the OCE file into the the workspace, following by the BQY file.
    The report is displayed properly in workspace with the correct data.
    I change the data in the MSSQL server and I try to refresh the report in the workspace.
    So, I open the report in the workspace and I click on the refresh button.
    But when I do that, I get an error message.
    I read somewhere that we have to configure the DAS.
    I assume that the configuration is made via the Administer/Database connection management (sorry if names are not correct, but I have a french version).
    But when I try to add a new connection, I have only 4 choices for the type of database : Essabse, Financial Management, Planning and SAP BW.... No MSSQL Server.
    I hope that anyone among you can help me, but anyway, thanks for reading my post.

    You need to enter DATABASE details in DAS (Data Access Services) by running Service Configurator.
    Then run Remote and Local Service configurator to enter database details.
    ##I assume that the configuration is made via the Administer/Database connection management (sorry if names are not correct, but I have a french version).
    This is something related to Financial Reporting.
    Hope this helps.
    Regards,
    Manmohan Sharma

  • Error: Timeout occurred whilst retrieving page meta data.????

    Hi,
    I sucessfully enabled SSL on PORTAL 3.0.9.8.0 but I could only use it inside our firewall. This is because I had my servername setup to be "portal" instead of a valid DNS name like "portal.mycomp.com".
    I have changes my servername from "portal" to "portal.mycomp.com" in all the conf. files that I know of and it still doesn't work. The funny thing is that I can access the single-sign-on server but not portal. For example, #1 of the following doesn't work but #2 works.
    #1: https://portal.mycomp.com/pls/portal30
    #2: https://portal.mycomp.com/pls/portal30_sso
    This is the error msg I got from my browser when I try to go to #1 ---> "Error: Timeout occurred whilst retrieving page meta data."
    I had also made sure that I didn't have any typo when I executed the ssodatan script. The following is how I executed my ssodatan script:
    ssodatan -w https://portal.mycomp.com/pls/portal30/ -l https://portal.mycomp.com/pls/portal30_sso/ -s portal30 -o portal30_sso -c portal
    *note: "portal" is my connect string.
    Does anyone have any idea what my problem would be?
    Yes, I have also re-requested a new SSL Certificate from Varisign with the new servername "portal.mycomp.com" and installed it properly.
    Thanks in advance,
    Victoria.

    Victoria,
    Did you find a solution to this ?
    We are running Oracle Portal 3.0.9.8.1 on Solaris and are having
    the same problem. Everything works okay through http but with
    https:
    1. https://<domain name>/pls/portal30
    we get the error "Error: Timeout occurred whilst retrieving page
    meta data."
    2. https://<domain name>/pls/portal30_sso - works okay
    3. https://<domain name>/test.jsp - works okay
    Thanks
    Simon.

  • SSL. Error: Timeout occurred whilst retrieving page meta data

    Hi!
    I am configuring oracle 9iAS 1.0.2.2a Portal to enable SSL and I did
    everything that was said at http://igloo.its.unimelb.edu.au/Webmail/tips/msg00569.html
    zone.properties
    servlet.page.initArgs=useScheme=http
    servlet.page.initArgs=usePort=7778
    servlet.page.initArgs=httpsports=4443
    wdbsvr.app
    [DAD_portal30]
    cgi_env_list = REQUEST_PROTOCOL=HTTPS,SERVER_PORT=4443
    [DAD_portal30_sso]
    cgi_env_list = REQUEST_PROTOCOL=HTTPS,SERVER_PORT=4443
    This was my ssodatan
    ssodatan -w https://me.me.me:4443/pls/portal30/ -l
    https://me.me.me:4443/pls/portal30_sso/ -s portal30 -o portal30_sso
    But when I access https://me.me.me:4443/pls/portal30/ I get
    Error: Timeout occurred whilst retrieving page meta data
    However, https://me.me.me:4443/pls/portal30_sso/ is working fine!
    One more thing. I can access my login server at
    http://me.me.me:7778/pls/portal30/ and when it prompts for username and password
    it uses https.
    https://me.me.me:4443/pls/pors/portal30_sso.wwsso_app_admin.ls_login
    Help would be greatly appreciated!

    jserv.log (these lines appear many times)
    [28/06/2002 17:07:03:987 GMT+03:00] page/JNI: Exception when trying to connect in 0.
    [28/06/2002 17:07:03:987 GMT+03:00] page/Timeout occurred, label=page url=https://me.me.me:4443/pls/portal30/!PORTAL30.wwpob_page.show?_pageid=51
    [28/06/2002 17:07:03:987 GMT+03:00] page/ContentFetcher Unexpected Exception, name=content-fetcher3
    javax.net.ssl.SSLException: SSL handshake failed: X509CertChainIncompleteErr
         at oracle.security.ssl.OracleSSLSocketImpl.startHandshake(Native Method)
         at oracle.security.ssl.OracleSSLSocketImpl.startHandshake(Unknown Source)
         at HTTPClient.HTTPConnection.getSSLSocket(HTTPConnection.java, Compiled Code)
         at HTTPClient.HTTPConnection.sendRequest(HTTPConnection.java, Compiled Code)
         at HTTPClient.HTTPConnection.handleRequest(HTTPConnection.java, Compiled Code)
         at HTTPClient.HTTPConnection.setupRequest(HTTPConnection.java:3545)
         at HTTPClient.HTTPConnection.Post(HTTPConnection.java:2478)
         at HTTPClient.HTTPConnection.Post(HTTPConnection.java:2605)
         at oracle.webdb.cache.CacheHTTPConnection.getHTTPResponse(CacheHTTPConnection.java:129)
         at oracle.webdb.cache.CacheHTTPResponse.process(CacheHTTPResponse.java, Compiled Code)
         at oracle.webdb.cache.CacheHTTPConnection.common(CacheHTTPConnection.java:114)
         at oracle.webdb.cache.CacheHTTPConnection.Post(CacheHTTPConnection.java:210)
         at oracle.webdb.page.ContentFetcher.run(ContentFetcher.java, Compiled Code)
    Changes to httpd.conf
    <IfDefine SSL>
    Port 4443
    Listen 4443
    </IfDefine>
    <VirtualHost default:80>
    </VirtualHost>
    <VirtualHost default:4443>
    DocumentRoot "/oas/Apache/Apache/htdocs"
    ServerName me.me.me
    ServerAdmin [email protected]
    ErrorLog /oas/Apache/Apache/logs/error_log
    TransferLog /oas/Apache/Apache/logs/access_log
    SSLCertificateFile /oas/Apache/Apache/conf/ssl.crt/mycert.crt
    SSLCertificateKeyFile /oas/Apache/Apache/conf/ssl.key/mycert.key
    </VirtualHost>

  • Data access error while running  the script in fdm workbench script editor

    Hello Experts,
    I have been getting the error when i run the script in script editor of fdqm workbench client.this is the error
                              -2147467259 Data access error and it is navigating the error at line 30 about this script "Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)"
    Please revert me asap where i should load the data from peoplesoft to one of my planning database through fdm.
    Thanks in advance...

    Hi,
    Thanks for your suggestion's here i am going to run the datapump script so while i am running in workbench it is throwing data access error.So as you guy's suggested i created one import format and added this script to that import format which is added to one of my location even it is throwing the same error.I am getting the error at this sentence   "strWorkTableName" I want to know what is this where it reflect's?So my question is Is there any difference while running data pump or integration script.Please let me know a detailed navigation steps to run this script's with out data access error to run these kind of scripts.
    Note:Again my target is to load the data to planning database through fdqm which i am doing through sql statement's.
    Suggest your valuable suggestion's
    Thanks in advance...
    I am getting the error at this sentence   "strWorkTableName" I want to know what is this where it reflect's?

  • Error When Refresh Formatted Data inside Excel Analyzer

    I have build a Excel template and load up this to the BI Publisher Server. When I call this template after the log in works fine. When I refresh the data normal it works also fine, but when I try to refresh formatted Data I get the error "Error: This report does not support HTML as an output format." I will not use html output inside Excel, I will use the original Excel template with refreshed data.

    Hi Tim,
    The Refresh Formatted Data works on MS Excel 2003.
    May need to check if its really supported on MS Office 2002.
    Btw another question, is it possible to create an excel template without using Excel Analyzer?
    Also when I used the generated excel file of Excel Analyzer as template, when the report is generated the data sheet sometimes is not filled with correct data or sometimes there is no data at all, even if the parameters used is the same as the one used in generating the original excel file using Excel Analyzer. This happens most of the time for reports with Concatenated Queries or SQL Queries using "CURSOR" to group a set of data. Note that on initial generation of excel file using Excel Analyzer, correct set of data is displayed. It is only when it is used as template and viewed/exported in Excel format that data is not properly loaded.
    Please advise.
    Thanks!
    Uniz

  • Powerpivot for sharepoint error: Unable to refresh data for a data connection in the workbook

    Hello,
     I have three errors when i try to use a simple powerpivot workbook published in sharepoint: (nothing on google has help me..)
    1-Unable to refresh data for a data connection in the workbook.
    Try again or contact your system administrator. The following connections failed to refresh:
    PowerPivot Data
    2-The embedded PowerPivot data in the workbook cannot be loaded due to a version mismatch
    3-01/21/2012 17:26:47.08  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel
    Calculation Services     bccc Medium   Session.HandleTrimmedWorkbookReloading: userOperation ApplySlicerSelectionOperation requires BaseWorkbook: "http://crm2011:2020/Marketing%20Reports/test2_excel32bits.xlsx"
    [0x409] [Saturday, 21 January 2012 09:40:18] [BaseWB ID: 2] to be untrimmed if it is currently trimmed. The workbook is currently NOT trimmed. fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.08  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     f1va Medium   CWorkbookWrapper::CWorkbookWrapper: Created with ID=4 fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.09  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     eq3r Medium   ConnectionRequest.ConnectionRequest: New connection request. SessionId=1.V21.4PI+fCwIq52LH++nOoMzs90.5.en-US5.en-US73.-0060#0000-10-00-05T03:00:00:0000#+0000#0000-03-00-05T02:00:00:0000#-006036.bfceb31b-7122-46ca-9e2a-ae52cefcfcaf1.N,
    WorkbookVersion=ConnectionInfo.WorkbookVersion: Uri=http://crm2011:2020/Marketing Reports/test2_excel32bits.xlsx, Version=Saturday, 21 January 2012 09:40:18 fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     aysl Medium   Succeeded to initialize a chart. fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     8xk9 Medium   ExternalSource.ExecuteOperation: We exhausted all available connection information. Exception: Microsoft.Office.Excel.Server.CalculationServer.Interop.ConnectionInfoException: Exception of type
    'Microsoft.Office.Excel.Server.CalculationServer.Interop.ConnectionInfoException' was thrown.     at Microsoft.Office.Excel.Server.CalculationServer.ConnectionInfoManager.GetConnectionInfo(Request request, String externalSourceName, Int32
    externalSourceIndex, Boolean& shouldReportFailure)     at Microsoft.Office.Excel.Server.CalculationServer.ExternalSource.ExecuteOperation(Request request, ExternalSourceStateInfo externalSourceStateInfo, ExternalSourceStateInfo prevExternalSourceStateInfo,
    Int32 index, ConnectionInfoManager connectionInfoManager, ExternalDataScenario scenario, DataOperation dataOpe... fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12* w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     8xk9 Medium   ...ration, Boolean verifyPreOperationConnection), Data Connection Name: PowerPivot Data, SessionId: 1.V21.4PI+fCwIq52LH++nOoMzs90.5.en-US5.en-US73.-0060#0000-10-00-05T03:00:00:0000#+0000#0000-03-00-05T02:00:00:0000#-006036.bfceb31b-7122-46ca-9e2a-ae52cefcfcaf1.N,
    UserId: 0#.w|contoso\manager fb614a65-e398-4b97-a98d-fb7b23eab39f
    My server and client olap versions are the same: MSOLAP.5, i used sql server 2008 R2 SP1 and sharepoint 2010 SP1 and reboot or iisreset have no effect
    Thanks in advance for your help

    Hello Challen Fu
    I would be so grateful if you could please help me out
    I have been trying to find a solution to the same error message
    In my case, the power pivot reports were working before on a regular team  site , but then two things changed:
    a)  I  created a toplevel site using the BI Center template. Now I am using a Business Intelligence template , created a power pivot gallery library and uploaded a few powerpivot reports
    b)  On the  backend, the database instance was upgrated to SQL Server 2012 
         Front end Server VDSP01  remains  SQL Server 2008 R 2 where Sharepoint 2010  was installed as a FARM  
    Now, the reports will display in sharepoing however they will not refresh. the error message i get is the same.
     Scenario recap:
    a- Server VDSP01  uses SQL Server 2008 R 2 where Sharepoint 2010  was installed as a FARM
    b- On the back end,  the database instance name was replaced with SQL 2012 Server:
               from SQL Server 2008 R 2 (instance DBDEV-COTS\COTS)
               to     SQL Server 2012 ( instance VTSQL01\COTS)
    c-  I was told that:
         From VDSP01, they ran
    CliConfg.exe   to create SQL Server Alias :
           where    BEFORE: vdsharepoint -->  DBDEV-COTS\COTS
                and  AFTER    : vdsharepoint -->  VTSQL01\COTS
     I appreciate in advance any help you can provide<v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe" stroked="f">
      <v:stroke joinstyle="miter">
      <v:formulas>  <v:f eqn="if lineDrawn pixelLineWidth 0">
      <v:f eqn="sum @0 1 0">
      <v:f eqn="sum 0 0 @1">
      <v:f eqn="prod @2 1 2">
      <v:f eqn="prod @3 21600 pixelWidth">
      <v:f eqn="prod @3 21600 pixelHeight">
      <v:f eqn="sum @0 0 1">
      <v:f eqn="prod @6 1 2">
      <v:f eqn="prod @7 21600 pixelWidth">
      <v:f eqn="sum @8 21600 0">
      <v:f eqn="prod @7 21600 pixelHeight">
     <v:f eqn="sum @10 21600 0">
    </v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:formulas>
     <v:path gradientshapeok="t" o:connecttype="rect" o:extrusionok="f">
    <o:lock aspectratio="t" v:ext="edit">
    </o:lock></v:path></v:stroke></v:shapetype> <v:shape alt="" id="Picture_x0020_2" o:spid="_x0000_i1025" style="width:630pt;height:475.5pt;" type="#_x0000_t75">
    <v:imagedata o:href="cid:[email protected]" src="file:///C:\Users\wlarange\AppData\Local\Temp\msohtmlclip1\01\clip_image001.jpg">
    </v:imagedata></v:shape>
    wanda larangeira

  • Error while running Master Data IP

    HI Xpertz
    Could any one tell me resolution for the following.I am running a master data Ip It gives the following
    error "errors in source system".
    Its daily load.
    If any docs please send it to the following id : [email protected]
    Any answer will appreciate
    Thanx In advance
    Best regards
    Krish K
    **NO need to say good answers will get full pointz*****

    Hi seggi and Vikash,
    Thanx For u r replays.Bcz There is no problem in replication process so finally we decide for reintialaisation.THis was  going smoothly from past one year.Just today only we got thez error.If any suggestions could you please send me.
    If any docs please send it to the following id : [email protected]
    Any answer will appreciate
    Thanx In advance
    Best regards
    Krish K
    **NO need to say good answers will get full pointz*****

  • Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Maybe it's set as a login item:
    - System Preferences: Users and Groups:
    - Highlight your user account in the left pane/list
    - Click "Login" tab at the top.
    See if you have an Automater action on the list
    - Note, you can select it, then right-click, and can then select "Reveal in Finder". That way you might have an idea what installed it.

  • IDoc Meta data Error at XI server

    hai all,
    I triggered IDoc from R/3 System and after observing XI server, it shows the following Adapter Meta data Error .RFC destination and ports are correct. Please can any one comment on this.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_IDOC_METADATA</SAP:Code>
      <SAP:P1>I::000</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error: I::000</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Thank u.

    Hi Nani,
    go to transaction IDX2 and try to download
    the metadata manually to see if there are
    any errors over there
    you can also find the same approach
    (loading, reloading and comparing metadata) in my book:
    <a href="/people/michal.krawczyk2/blog/2006/10/11/xi-new-book-mastering-idoc-business-scenarios-with-sap-xi"><b>Mastering IDoc Business Scenarios with SAP XI</b></a>
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Maybe you are looking for

  • Configure PCP in 11.5.10.2

    Dear all, Our environment is like : Node 1: 11.5.10.2 (AppsTier, Sun Solaris) Node 2: 10.2.0.4 (RAC 1, Sun Solaris) Node 3: 10.2.0.4 (RAC 2, Sun Solaris) Node 4: iSupport (Windows 2003 Server) As of now all the Apps services are in Node 1 and in our

  • If i get bootcamp, will that allow me to get fl studio?

    i don't have a pc, fl studio is made only for pc. If get bootcamp, will I be able to purchase fl studio? thank you.

  • Dynamic Check Box Error

    Hi All,         I have created Dynamic UI Checkbox which is creating dynamic checkboxes based on the database Table fields. Here is my code in Start View // This file has been generated partially by the Web Dynpro Code Generator. // MODIFY CODE ONLY

  • Call Store Procedure in SQL Server

    How can I call an Oracle Store Procedure in a SQL Server procedure?

  • The top row of keys got messed up?

    tried to turn up my volume with the volume up button and it did the expose thing.  After pressing more keys i come to find out that the whole top row of my keyboard is messed up. none of the buttons work how they should. how do i fix this?