Error while registering the workflow

Hi all,
I am trying to do the Self registration work flow.But while trying to register the work flow i am getting the following error.
[echo] *******************************************************************************
[echo] REGISTRATION TOOL
[echo] *******************************************************************************
[echo] The input to this tool is a property file which contains the details of workflow
[echo] definition. The tool also prompts the username and password of OIM admin.
[echo]
[echo]
[echo]
[echo]
[input] Enter the username
xelsysadm
[input] Enter the password
[input] Provide oim managed server t3 URL (Ex:t3://localhost:7001)
t3://172.25.121.134:14000
[input] inputpath(complete file name) of the property file
SelfRegistrationAppproval.props
[echo] ${gen.classpath}
[java] name = SelfRegistrationApproval
[java] category = Approval
[java] providerType = BPEL
[java] serviceName = RequestApprovalService
[java] domainName = default
[java] version = 1.0
[java] payLoadID = payload
[java] operationID = process
[java] listOfTasks = ApprovalTask
[java] javax.security.auth.login.LoginException: unable to find LoginModule class: weblogic.security.auth.login.UsernamePasswordLoginModule
[java] at javax.security.auth.login.LoginContext.invoke(LoginContext.java:808)
[java] at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
[java] at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
[java] at java.security.AccessController.doPrivileged(Native Method)
[java] at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
[java] at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
[java] at Thor.API.Security.LoginHandler.weblogicLoginHandler.login(weblogicLoginHandler.java:61)
[java] at oracle.iam.platform.OIMClient.login(OIMClient.java:134)
[java] at oracle.iam.platform.OIMClient.login(OIMClient.java:114)
[java] at oracle.iam.platformservice.workflowregclient.WorkflowServiceClientUtil.getWorkflowService(WorkflowServiceClientUtil.java:87)
[java] at oracle.iam.platformservice.workflowregclient.WorkflowRegistration.main(WorkflowRegistration.java:41)
[java] May 25, 2012 11:16:32 PM oracle.iam.platformservice.workflowregclient.WorkflowServiceClientUtil getWorkflowService
[java] SEVERE: Incorrect username/password entered during registration of workflow
[java] Exception in thread "main" oracle.iam.platform.workflowservice.exception.IAMWorkflowException: Incorrect username/password entered during registration of workflow
[java] at oracle.iam.platformservice.workflowregclient.WorkflowServiceClientUtil.getWorkflowService(WorkflowServiceClientUtil.java:92)
[java] at oracle.iam.platformservice.workflowregclient.WorkflowRegistration.main(WorkflowRegistration.java:41)
BUILD FAILED
/home/oracle/Oracle/Middleware/Oracle_IDM1/server/workflows/registration/registerworkflows-mp.xml:51: Java returned: 1
Eventhough if i give the correct username and password , its showing the error(incorrect username/password).
How to resolve this ........
Please anyone suggest me .....
Regards,
Deena.

Make sure you have the wlfullclient.jar.
Example:
/opt/oracle/Middleware/wlserver_10.3/server/lib/wlfullclient.jar.
if you don't have wlfullclient.jar then generate one as per Generate wlfullclient.jar or Weblogic JarBuilder Tool
Set WL_HOME to be the weblogic home:
Example /opt/oracle/Middleware/wlserver_10.3/
Refer: {thread:id=2251290}
-Bikash

Similar Messages

  • "Error while registering the Java 2 Runtime Environment registry keys"

    "Error while registering the Java 2 Runtime Environment registry keys"
    I am getting the above error when trying to install the 1.3 JRE (installed with the 1.3 plug in which I need). As part of my development I have been installing and uninstalling the JRE multiple times. Then, I got the above error when trying to install it, and now it appears to be installed but I cannot uninstall it. When I try to uninstall it, it just remains, and when I try to install it again I get the above error. I have tried cleaning up all javasoft registry entries, but it doesnt seem to have helped. Can anyone help me either completely uninstall the JRE so I can do a clean install or help me get rid of the error above when I install. Is there some registry entries I should be looking at? Anything else? this is quite urgent as I need to test my applet with the plugin installed and not installed - and I currently cant uninstall it. Any ideas?
    Thanks for your help
    Aaron

    I am getting this same error message when trying to upgrade from 1.3.1_03 to 1.3.1_19.
    I have multiple versions of jre's and jdks on my machine.
    Anyone else seen this problem or know how to resolve it.

  • Error while Registering the Database with Catalog..

    I m creating recovery catalog in same database, and getting the errors.
    1. I have created TOOLS tablespace
    2.CREATE USER RMAN2
    SQL> CREATE USER rman IDENTIFIED BY cat
    2 TEMPORARY TABLESPACE temp
    3 DEFAULT TABLESPACE tools
    4 QUOTA UNLIMITED ON tools;
    CREATE USER rman IDENTIFIED BY cat
    ERROR at line 1:
    ORA-01920: user name 'RMAN' conflicts with another user or role name
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE USER rman2 IDENTIFIED BY cat
    2 TEMPORARY TABLESPACE temp
    3 DEFAULT TABLESPACE tools
    4* QUOTA UNLIMITED ON tools
    SQL> /
    User created.
    3. GRANT RECOVERY_CATALOG_OWNER
    SQL> GRANT RECOVERY_CATALOG_OWNER TO rman2;
    Grant succeeded.
    4. To create the recovery catalog:
    1. Connect to the database that will contain the catalog as the catalog owner.
    H:\>rman catalog rman2/cat@rock
    Recovery Manager: Release 10.2.0.1.0 - Production on Fri Sep 5 10:45:52 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to recovery catalog database
    2. Run the CREATE CATALOG command to create the catalog.
    RMAN> CREATE CATALOG;
    recovery catalog created
    3. Optionally, start SQL*Plus and query the recovery catalog to see which tables were created:
    H:\>sqlplus
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Sep 5 11:53:36 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter user-name: rman2/cat
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select count(*) from cat;
    COUNT(*)
    91
    SQL> ed
    Wrote file afiedt.buf
    1 select owner, table_name, tablespace_name
    2 from dba_tables
    3* where table_name='DB'
    SQL> /
    OWNER TABLE_NAME
    TABLESPACE_NAME
    RMAN2 DB
    TOOLS
    RMAN DB
    ABAMCO_TEST
    Next step is to registering the Database in the Recovery Catalog.
    Registering a Database in the Recovery Catalog
    H:\>rman TARGET / CATALOG rman2/cat@rock
    Recovery Manager: Release 10.2.0.1.0 - Production on Fri Sep 5 11:56:09 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00554: initialization of internal recovery manager package failed
    RMAN-04005: error from target database:
    ORA-01031: insufficient privileges
    I m getting above error while registering the Database with Catalog,
    Can anybody help me how can I register the Database with Catalog.????
    Waiting for Reply!!!!!!!

    Dear Manoj I can log in at TARGET Database.
    H:\>rman
    Recovery Manager: Release 10.2.0.1.0 - Production on Fri Sep 5 12:41:59 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN> connect target sys/rock
    connected to target database: ROCK (DBID=3255117147)
    RMAN>
    ============================================================
    USING CONNECT STRING as you said.
    H:\>rman target "sys/rock@rock as sysdba" catalog rman2/cat@rock
    Argument Value Description
    target quoted-string connect-string for target database
    catalog quoted-string connect-string for recovery catalog
    nocatalog none if specified, then no recovery catalog
    cmdfile quoted-string name of input command file
    log quoted-string name of output message log file
    trace quoted-string name of output debugging message log file
    append none if specified, log is opened in append mode
    debug optional-args activate debugging
    msgno none show RMAN-nnnn prefix for all messages
    send quoted-string send a command to the media manager
    pipe string building block for pipe names
    timeout integer number of seconds to wait for pipe input
    checksyntax none check the command file for syntax errors
    Both single and double quotes (' or ") are accepted for a quoted-string.
    Quotes are not required unless the string contains embedded white-space.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00552: syntax error in command line arguments
    RMAN-01009: syntax error: found "as": expecting one of: "append, at, auxiliary, catalog, cmdfile, clone, checksyntax, debug, log, msglog, mask, msgno, nocatalog, pipe, rcvcat, script, slaxdebug, send, target, timeout, trace"
    RMAN-01007: at line 0 column 16 file: command line arguments
    H:\>rman
    It didnt work either.
    I have only one database rock, and created recovery catalog in it. I want to register rock database with recovery catalog.

  • Error while registering the Concurrent Program

    Hi,
    I am getting the following error while registering the concurrent program.
    The executable is registered as shell script and this executable sends a mail with attachment. can any one of you tell me the cause of the error?
    ORA-20160: ORACLE error -4091 in SUBMIT: others
    Cause: SUBMIT: others failed due to ORA-04091: table APPLSYS.FND_CONCURRENT_PROGRAMS is mutating, trigger/function may not see it.
    The SQL statement being executed at the time of the error was: &SQLSTMT and was executed from the file &ERRFILE.
    ORA-06512: at "APPS.ALR_FND_CONCURRENT_PROGRAM_IAR", line 1
    ORA-04088: error during execution of trigger 'APPS.ALR_FND_CONCURRENT_PROGRAM_IAR'
    ORA-06512: at "APPS.FND_CONCURRENT_PROGRAMS_PKG", line 63
    FRM-40735: ON-INSERT trigger raised unhandled exception ORA-20160.
    Thanks in advance

    Check Note: 391795.1 - Frm-40735: On-Insert Trigger Raised Unhandled Exception Ora-04062 in APPS.FND_CONCURRENT_PROGRAMS_PKG
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=391795.1

  • Error while registering the location

    Hi All
    While registering the location prior to deploying,I am getting error.
    Error message is
    ORA-29532 Java call terminated by uncaught java exception
    oracle.jdbc.driver.OracleSQLException: ORA-28239: no key provided
    ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT_FFI", line 21
    ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT", line 115
    ORA-06512: at "OWB_REPOS_OWNER.WB_RT_SERVICE_CONTROL", line 268
    ORA-06512: at "OWB_REPOS_OWNER.WB_RT_SERVICE_CONTROL", line 303
    ORA-06512: at line 1
    ORA-06512: at "OWB_REPOS_OWNER.WB_RTI_UTIL", line 57
    ORA-06512: at "OWB_REPOS_OWNER.WB_RT_STORE_REGISTRATION", line 233
    ORA-06512: at line 1
    What could be the possible reason and solution for this error?
    Thanks in advance
    Regards
    Avanish

    ORA-28239: no key provided
    Cause: A NULL value was passed in as an encryption or decryption key.
    Action: Provide a non-NULL value for the key.

  • Error while registering the locations

    hi all
    i am getting the below error while regestering the location.
    OMB+> OMBREGISTER LOCATION 'XXOWB_TST13_LOCATION' SET PROPERTIES (HOST,PORT,SERVICE,SCHEMA,PASSWORD) VALUES ('hostname',9021,'PROD_OWB','XXOWB','
    XXOWB123')
    OMB00001: Encountered SET at line: 1, column: 45. Was expecting one of: <EOF>
    "REUSE" ...
    please let me know if any wrong syntax of the above statement.
    thanks,
    keka

    It looks like you are mixing location specification with location registration.
    Assuming that you have already created the location by this name and connected to your control center, then try:
    OMB+> OMBALTER LOCATION 'XXOWB_TST13_LOCATION' SET PROPERTIES (HOST,PORT,SERVICE,SCHEMA,PASSWORD) VALUES ('hostname',9021,'PROD_OWB','XXOWB','XXOWB123')
    OMB+> OMBREGISTER LOCATION 'XXOWB_TST13_LOCATION'
    Cheers,
    Mike

  • Error while transporting the workflow object

    Hi all,
    Please be informed that while i transported the workflow changes to test system i encountered the sy-subrc 8 error as stated in below screen shots.

    Hi Ranjith
    Seems that the transport error is showing that your ID has locked the Workflow (user REDDYRAN).
    Can you do a syntax check of the workflow transported in this transport - in pftc and swdd? Do we get any error?
    Also see if you can execute FM SWD_WFD_REPLICATE_FROM_9999 in Quality (in SM37)  - provide the IM_TASK = WSxxxxxxxx (your workflow number).
    regards,
    Modak

  • SSL Error while opening the workflow process

    Hi,
    While opening any workflow status monitor, we are getting below error. One of the hit says that have SSL setup recently, it need few steps to be performed and a patch to prevent below error.
    *javax.net.ssl.SSLException: SSL handshake failed: X509CertChainIncompleteErr When Trying To View The Workflow Status Diagram [ID 1375766.1]*
    STEPS to reproduce
    The issue can be reproduced at will with the following steps:
    1. In the Administrator Workflow console
    2. Press the Status Diagram button
    3. The error is received
    Changes
    Recently Enabled SSL
    Solution
    A) Add the wrapper bin parameter for SSL to the jserv.properties file:
    1. In Jserv.properties:
    Change the following line from:
    wrapper.bin.parameters=-Djava.protocol.handler.pkgs=HTTPClient
    To:
    wrapper.bin.parameters=-Djava.protocol.handler.pkgs=HTTPSClient
    2. Bounce the apache server and retest the issue.
    3. Migrate the solution as appropriate to other environments.
    Note:
    To retain the changes permanently when autoconfig runs, please follow Note 270519.1, Section: &amp;quot;Customizing an AutoConfig template file delivered by Oracle&amp;quot;.
    1. Create a custom directory if not already present:
    mkdir $FND_TOP/admin/template/custom
    2. Copy the jserv.properties file to this custom directory:
    Change the Following line from:
    wrapper.bin.parameters=-Djava.proto .handler.pkgs=HTTPClient
    To:
    wrapper.bin.parameters=-Djava.protocol.handler.pkgs=HTTPSClient
    3. Run Autoconfig and retest the issue.
    B) Retest the Workflow Status Monitor.
    C) If the issue still exists, pursue the application of Patch 8802559 is titled:
    1OFF:8618975:11.5.10.6:WF STATUS DIAGRAM SHOULD OPTIONALLY USE WF: Workflow Mailer Framework Web Agent.
    That patch supplies:
    fnd java/wf/monitor/webui GraphMonitorCO.java 115.12
    ========================================================================
    After I implemented above steps and applied the patch, now i am getting below error.
    javax.net.ssl.SSLProtocolException: java.io.IOException: subject key, Unknown Key spec: Invalid RSA modulus size.
    can you please help me in resolving above problem.
    Regards,
    Kishore.

    Hi;
    Please review:
         Master Note for SSL Configuration in Fusion Middleware 11g [ID 1218695.1]
    I can not find any similar issue at metalink.If upper note does not help then I suggest Rise SR
    Regard
    Helios

  • Dump error while Testing the Workflow

    Hi Friends,
    I have developed workflow for Approve and Reject Scenerio. But when i press Approve, the user should get the mail, same for Rejected also. When Test the Workflow, I am  getting the Dump Error as
    *Dump Error*********
    Unable to read RFC destination WORKFLOW_LOCAL_320
    Long text of error message:
    Technical information about the message:
    Message class....... "SWF_RUN"
    Number.............. 617
    Variable 1.......... "WORKFLOW_LOCAL_320"
    Variable 2.......... "RFC_READ_DESTINATION_TYPE"
    Variable 3.......... "DESTINATION_NOT_EXIST"
    Variable 4.......... " "
    Thanks in Advance. Rewarded if useful.
    Naveen

    Naveen,
    It seems someone might have deleted the corresponding RFC destination (which is created automatically). Check in SM59.
    ss

  • Error while registering the CCMS agent

    Dear All,
    When i am trying to register the SAPCCM4x agent in my landscape i am getting the error "104 RFC_ERROR_SYSTEM_FAILURE'
    can anyone tell me the what are the possible reason for this error and solutions to resolve.
    and
    what authorisations for the CEN user and RFC connection should exist before registering the CCMS agent.
    It will be great help if you comment on this,
    thanks & regards,
    Krishna Joish

    Hi Krishna,
    Please check for the authorization object S_RFCACL for the RFC user.
    Check the RFC connection properly.
    Please elaborate the error if it persists.
    Regards,
    Sunny

  • Error while launching the workflow from OAF controller class.

    Hi Everyone,
    I'm using the below code from the submit button event to launch the workflow. The workflow works fine when I submit for the first time, when i try to submit for the second time from the same session it throws me the error as
    "Workflow with item type (XXCEDASP) and item key (SUNDRY-1061) is in progress. Abort existing workflow before launching a new process for this transaction."
    The item key which it is showing in the error is the item key for the previous transaction. Also I tried the code that is commented below (code between /* */). If I use the commented code, it doesn't throw me error but cancels all the transactions(that are initiated from the same session) except the last one.
    Is there any work around for this from oaf? Please help.
    Code:
    public void launchCustomWorkFlow(OAPageContext pageContext,
    String transaction_id, String requestor) {
    String wfItemType = "XXCEDASP";
    String wfProcess = "XXCED_MAIN_PROCESS";
    OANavigation wfClass = new OANavigation();
    String wfItemKey = transaction_id;
    /*if (OANavigation.isWorkflowInProgress(pageContext))
    String oldKey = OANavigation.getItemKey(pageContext);
    if (!OANavigation.abortProcess(pageContext, wfItemType,wfProcess, oldKey,
    null, null))
    throw new OAException("Error", OAException.ERROR);
    System.out.println("transaction ID = " + transaction_id);
    //Create Workflow Process
    wfClass.createProcess(pageContext, wfItemType, wfProcess, wfItemKey);
    wfClass.setItemAttrText(pageContext, wfItemType, wfItemKey,
    "TRANSACTION_ID",transaction_id);
    wfClass.setItemAttrText(pageContext, wfItemType, wfItemKey,
    "REQUESTOR_NAME",requestor);
    // Start Workflow Process
    wfClass.startProcess(pageContext, wfItemType, wfProcess, wfItemKey);
    Thanks
    Sunny

    Hi Haroon,
    Thanks for your reply. I tried doing it using the database procedure too. I'm having different problem if I do so. The problem is that when I submit the first transaction, the workflow is not kicked off. when i submit the second transaction, the first one gets kicked off, when I submit the 3rd one second one gets kicked off. So the last one never gets kicked off. This is the pattern I have observed.
    here is my code
    OAF Code:
    OracleCallableStatement cs = null;
    try {
    cs = (OracleCallableStatement)getOADBTransaction().createCallableStatement("{call XXCED_APWFL006_SUNDRYAPPR_PKG.INITIATE_WORKFLOW(:1,:2)}", -1);
    cs.setString(1,transaction_id);
    cs.setString(2,requestor);
    cs.execute();
    System.out.println("callable statement executed for transaction "+transaction_id);
    cs.close();
    catch(SQLException e) {
    throw new OAException("Error Raised:"+e,OAException.ERROR);
    Procedure Code:
    PROCEDURE Initiate_Workflow(transaction_id in varchar2,
    requestor in varchar2)
    is
    l_item_type varchar2(20):= 'XXCEDASP';
    l_start_process varchar2(30):='XXCED_MAIN_PROCESS';
    l_item_key varchar2(30):= transaction_id;
    begin
    wf_engine.createprocess(l_item_type,l_item_key,l_start_process);
    wf_engine.setitemattrtext(l_item_type,l_item_key,'TRANSACTION_ID',transaction_id);
    wf_engine.setitemattrtext(l_item_type,l_item_key,'REQUESTOR_NAME',requestor);
    wf_engine.startprocess(l_item_type,l_item_
    Can you please let me know what am I doing wrong?
    Also please send the code that has worked for you.
    Thanks
    Sunny

  • Error while opening the workflow page

    All:
      I am trying to install and configure a NW IdM. I am done with the installation. When I try open   http://<host>/workflow/index.php, i get the following error:
    Login failed for user ''. The user is not associated with a trusted SQL Server connection.PHP Warning: mssql_pconnect() [function.mssql-pconnect]: message: Login failed for user 'mxmc-prov'. (severity 14)
    When I try to open http://<host>:monitoring/login.php and login as "mxmc_admin", I get invalid username.
    I have "mixed mode" turned on for SQL server and I am able to connect to the database using mxmc_prov and mxmc_admin.
    Could someone help me out.
    Thanks
    S.

    Hi Shabnam,
    Thanks for the update
    Eric

  • Error while registering the schema

    SQL> DECLARE
    2 bibtex VARCHAR2(5000) :=
    3 '<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    4 xmlns:xdb="http://xmlns.oracle.com/xdb">
    5 <xs:annotation>
    6 <xs:documentation>
    7 This is a VERY simple XML Schema that will be used to validate th
    btex.xml
    8 </xs:documentation>
    9 </xs:annotation>
    10 <!-- The xml root element must be named BibTex -->
    11 <xs:element name="BibTex">
    12 <xs:complexType>
    13 <xs:sequence>
    14 <xs:element ref="Article" minOccurs="0" maxOccurs="unbounded"/>
    15 <xs:element ref="InProceedings" minOccurs="0" maxOccurs="unbounded"/>
    16 </xs:sequence>
    17 </xs:complexType>
    18 </xs:element>
    19 <xs:element name="Article">
    20 <xs:complexType>
    21 <xs:sequence>
    22 <xs:element ref="Authors"/>
    23 <xs:element ref="Title"/>
    24 <xs:element ref="Journal"/>
    25 <xs:element ref="Year"/>
    26 <xs:element ref="Volume"/>
    27 <xs:element ref="Pages"/>
    28 <xs:element ref="Number"/>
    29 <xs:element ref="Month"/>
    30 <xs:element ref="DOI"/>
    31 <xs:element ref="Owner"/>
    32 <xs:element ref="TimeStamp"/>
    33 </xs:sequence>
    34 <xs:attribute name="Key" type="xsd:string" use="required"/>
    35 </xs:complexType>
    36 </xs:element>
    37 <xs:element name="InProceedings">
    38 <xs:complexType>
    39 <xs:sequence>
    40 <xs:element ref="Authors"/>
    41 <xs:element ref="Title"/>
    42 <xs:element ref="BookTitle"/>
    43 <xs:element ref="Year"/>
    44 <xs:element ref="Pages"/>
    45 <xs:element ref="Month"/>
    46 <xs:element ref="DOI"/>
    47 <xs:element ref="Volume" minOccurs="0"/>
    48 <xs:element ref="Owner"/>
    49 <xs:element ref="TimeStamp"/>
    50 </xs:sequence>
    51 <xs:attribute name="Key" type="xs:string" use="required"/>
    52 </xs:complexType>
    53 </xs:element>
    54 <xs:element name="Authors">
    55 <xs:complexType>
    56 <xs:sequence>
    57 <xs:element ref="Author" minOccurs="1" maxOccurs="unbounded"/>
    58 </xs:sequence>
    59 </xs:complexType>
    60 </xs:element>
    61 <xs:element name="Author">
    62 <xs:complexType>
    63 <xs:sequence>
    64 <xs:element name="LastName" type="xs:string"/>
    65 <xs:element name="Initials" type="xs:string"/>
    66 </xs:sequence>
    67 </xs:complexType>
    68 </xs:element>
    69 <xs:element name="Title" type="xs:string"/>
    70 <xs:element name="Year">
    71 <xs:simpleType>
    72 <xs:restriction base="xs:integer">
    73 <!--
    74 Constrain the year to 4 digits, 0-9 each. No other characters
    75 -->
    76 <xs:pattern value="[0-9]{4}"/>
    77 </xs:restriction>
    78 </xs:simpleType>
    79 </xs:element>
    80 <xs:element name="Pages" type="xs:string"/>
    81 <xs:element name="Month" type="xs:string"/>
    82 <xs:element name="DOI" type="xs:string"/>
    83 <xs:element name="Owner" type="xs:string"/>
    84 <xs:element name="TimeStamp" type="xs:date"/>
    85 <xs:element name="BookTitle" type="xs:string"/>
    86 <xs:element name="Journal" type="xs:string"/>
    87 <xs:element name="Volume" type="xs:string"/>
    88 <xs:element name="Number" type="xs:string"/>
    89 </xs:schema>';
    90 BEGIN
    91 DBMS_XMLSCHEMA.RegisterSchema('bibtex.xsd', bibtex);
    92 END;
    93 /
    DECLARE
    ERROR at line 1:
    ORA-30940: Cannot resolve prefix 'xsd' for QName node 'type'
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 3
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 14
    ORA-06512: at line 91

    <xs:attribute name="Key" type="xsd:string" use="required"/>there is no namespace for prefix xsd!
    Look like a typo, change it to "xs:string"

  • Error While Registering a system in UWL

    Hi
    I have configured a system in UWL after going to Universal Worklist Administration -> Configuration Framework Page -> UWL Systems Configuration.
    Now when i am registering it, it shows the following
    error:
    System SAP_YY_XXXX: com/sap/portal/services/api/connectorgateway/IConnectorGatewayService
    Though the corresponding entry for the gateway information has been made in the services file in the drivers/etc:
    sapqw41    3341/tcp     # SAP Systems Gateway
    But still the same error is coming.
    Is there any other step which is being missed out.
    Any information in this regard will be helpful.
    Thanks & regards,
    Anupreet

    Dear Koti,
    It is giving the same error in the backend also.when i click the workitem it is giving the "error while executing the workflow Close Window".
    Is there a problem with the workflow template or the UWL Configuration.
    Regards
    Mustafa

  • Error while installing oracle workflow builder 2.6.3.4

    I got an Error while installing the workflow builder
    the error was while setting the environment variable "PATH"
    can't set the environment variable value as it's more than 1023
    i made ignore to this error and continue the setup
    is that error may affect the workflwo builder to run or it dosen't affect it
    best regards
    Edited by: Miro Graphic on Jul 5, 2011 2:35 PM

    Hi;
    This forum site related wiht Oracle database installation.I suggest,close your issue here as answered than move your issue Forum Home » Database » Workflow* which you can get more quick response
    Regard
    Helios

Maybe you are looking for