OSB Resequencer in 12c

Hi Team,
I am facing some challenges while implementing re-sequencer in OSB 12c. I created a simple process where in I read the data from file and write into DB. In the pipeline, I am using Standard Resequencer and using groupID as EmpDept and SequenceID as EmpID(Pls refer below schema). When I try to execute the process, file is not getting deleted from the source folder and in the logs I can see the error as
Caused By: oracle.tip.resequencer.infra.exception.ResequencerException: ORARES-01301:[Sequence ID validation error]Sequence ID validation failure."SequenceId value is does not fall with the sequence range".Possible Fix:SequenceID value is incorrect. Either XPATh Expression returned null or sequenceID value  does not fall within the sequence range. Check the XPATH expression, fix the payload and resubmit.
I reported the body and could see that sequenceId is getting the value of -1. Not sure where it comes from because I am using a valid combination of SequenceId as 1 and increment by 1 . And my data also confronts to the same.
I am able to implement the same functionality in SOA12c using same configurations without any issues.
Any pointers why same thing is not working in OSB ? pls. suggest.
Thanks & Rgds,
Vikas
Schema file :
<?xml version="1.0" encoding="UTF-8"?>
<schema attributeFormDefault="unqualified"
  elementFormDefault="qualified"
  targetNamespace="http://xmlns.oracle.com/testing/ResequencerSchema"
  xmlns="http://www.w3.org/2001/XMLSchema">
  <element name="EmployeeDetails">
  <complexType>
  <sequence>
                                <element name="EmpID" type="int"/>
                                <element name="EmpName" type="string"/>
                                <element name="EmpDept" type="int"/>
                                <element name="EmpDesignation" type="string"/>
  </sequence>
  </complexType>
  </element>
</schema>

HI Anatoli,
I tried with the simple case as well i.e Reading the data from file and writing the same data to another file . But I am getting the same error. I reported the body and could see the values coming fine.
Here is my Read File Xsd.
<?xml version = '1.0' encoding = 'UTF-8'?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd" xmlns:tns="http://TargetNamespace.com/ReadFile" targetNamespace="http://TargetNamespace.com/ReadFile" elementFormDefault="qualified" attributeFormDefault="unqualified" nxsd:version="NXSD" nxsd:stream="chars" nxsd:encoding="US-ASCII">
  <xsd:element name="EmpRecord">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="EmpId" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;"/>
        <xsd:element name="MsgId" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;"/>
        <xsd:element name="EmpName" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;"/>
        <xsd:element name="Dept" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;"/>
        <xsd:element name="Designation" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;"/>
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
The Input data I am giving as
1,1,Vikas,Oracle,Sr.Consultant
Pls suggest.

Similar Messages

  • OSB Resequencer?

    OESB has inbuilt support for resequencing:-
    http://download.oracle.com/docs/cd/E12524_01/doc.1013/e12638/sequencer.htm
    OSB doesn't appear to have any similar functionality as far as I can tell. Is this correct? If so are there any plans to add this or incorporate the OESB implementation?

    Yes OSB has no such out-of box feature.
    Feature gap of OSB wrt OESB will be addressed in future OSB releases. Specific dates are not available for this feature. Please talk to Oracle rep informing your need for this feature and hopefully will be prioritized to meet your requirements.
    Thanks
    Manoj

  • Did Oracle remove OSB project support from OEPE (Eclipse) 12

    Sorry, I have been out of the loop for a year. Helping out a project get some code done. Tried to import a project into my old version
    of Helios based OEPE and it failed... version not supported. Installed the new Indigo based version and there is no OSB support.
    Am I missing something.... besides OSB support.

    OEPE 12c is not certified to wok with OSB plugin. Please use 11g version.
    Regards,
    Anuj

  • Provide authenticated username as parameter to a business service in OSB 12c

    Dear OSB/OSB experts,
    I have the following issue:
    1. I have a web service that would accept username as a parameter in the SOAP request in order to do some internal authorization checks (filtering database rows, tables, etc.)
    2. I want to connect that web service as business service in OSB 12c
    3. The proxy service should NOT accept username as parameter
    4. The proxy service should be protected via OWSM policy for authentication (either against the WLS authentication providers or through SAML tokens validation)
    Based on the above is there any mechanism in the implementation of the proxy service to get the authenticated username from the security context and provide it as a parameter to the business service?
    The authentication policy could use SAML tokens between two WLS domains - one will be running the WLS where proxy service clients will be running and the other - for the SOA 12c.
    Many thanks in advance,
    Anatoli

    HI,
    u can use Conditional Branching
    http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/userguide/modelingmessageflow.html#wp1061670
    Split join would be used in case u need to split your request and call your Business Service in Serial/parallel & then gather resposnes from multiple callouts to have single response
    http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/userguide/splitjoin.html#wp1137258
    Abhinav

  • How to get Database functions into xquery/XSLT in OSB 12c

    Hello All,
    How to make use of  functions orcl:sequence-next-val and orcl:query-database in xslt/xquery in OSB 12c.
    I need to do the below logic in xslt/xquery and used it in replace activity . But in OSB 12c I don't see these function. Request to provide me the solution to do it in OSB.
    XSLT in SOA
    <xsl:when test="/ns0:CreateEvent/ns0:Header/header:SourceName != &quot;&quot;">
                <ns1:googleEventSourceId>
                  <xsl:value-of select="orcl:query-database(concat(&quot;select google_event_source_id from enterprise.google_event_source where google_event_source=&quot;,&quot;'&quot;,/ns0:CreateEvent/ns0:Header/header:SourceName,&quot;'&quot;),false(),false(),&quot;jdbc/PRDatasource&quot;)"/>
                </ns1:googleEventSourceId>
              </xsl:when>
    <ns1:googleMapEventId>
              <xsl:value-of select="orcl:sequence-next-val(&quot;enterprise.google_map_event_seq&quot;,&quot;jdbc/PRDatasource&quot;)"/>
            </ns1:googleMapEventId>
    please see below code is just part of my transformation.
    Regards,
    TJ.

    bump

  • OSB 12c Migration Issue -File Adapter

    Hi ,
    I am trying to migrate OSB 11.1.1.1.7 code to 12c using jDeveloper.
    With most of the components migrated successfully i get some errors nn File Adater while using JCA transport in business service.
    Error details are given below, any suggesion/help will be appreciated.
    An error occurred while validating JCA transport endpoint properties, exception: oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.WSIFException: Please specify a Service. Choices are: {{http://xmlns.oracle.com/EventHandlerSubscriberComposite_jws/EventHandlerSubscriberComposite/LoggingServiceFileAdp}LoggingServiceFileAdp-concrete, {http://xmlns.oracle.com/EventHandlerSubscriberComposite_jws/EventHandlerSubscriberComposite/LoggingServiceFileAdp}LoggingServiceFileAdp-service}&#xA;oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.WSIFException: Please specify a Service. Choices are: {{http://xmlns.oracle.com/EventHandlerSubscriberComposite_jws/EventHandlerSubscriberComposite/LoggingServiceFileAdp}LoggingServiceFileAdp-concrete, {http://xmlns.oracle.com/EventHandlerSubscriberComposite_jws/EventHandlerSubscriberComposite/LoggingServiceFileAdp}LoggingServiceFileAdp-service}&#xD;&#xA;&#x9;at oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.util.WSIFUtils.getNamedItem(WSIFUtils.java:470)&#xD;&#xA;&#x9;at oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.util.WSIFUtils.selectService(WSIFUtils.java:256)&#xD;&#xA;&#x9;at oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.base.WSIFServiceImpl.&lt;init>(WSIFServiceImpl.java:286)&#xD;&#xA;&#x9;at oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.base.WSIFServiceFactoryImpl.getService(WSIFServiceFactoryImpl.java:351)&#xD;&#xA;&#x9;at oracle.tip.adapter.sa.impl.JCABindingReferenceImpl.init(JCABindingReferenceImpl.java:126)&#xD;&#xA;&#x9;at oracle.tip.adapter.sa.impl.JCABindingReferenceImpl.&lt;init>(JCABindingReferenceImpl.java:87)&#xD;&#xA;&#x9;at oracle.tip.adapter.sa.impl.JCABindingInterfaceImpl.createJCABindingReference(JCABindingInterfaceImpl.java:283)&#xD;&#xA;&#x9;at oracle.tip.adapter.sa.impl.JCABindingInterfaceImpl.createJCABindingReference(JCABindingInterfaceImpl.java:295)&#xD;&#xA;&#x9;at com.bea.wli.sb.transports.jca.binding.JCAMetadata.validateEndpointProperties(JCAMetadata.java:197)&#xD;&#xA;&#x9;at com.bea.wli.sb.transports.jca.JCATransportProvider.validateEndpointProperties(JCATransportProvider.java:935)&#xD;&#xA;&#x9;at com.bea.wli.sb.transports.jca.JCATransportProvider.validateEndPointConfiguration(JCATransportProvider.java:226)&#xD;&#xA;&#x9;at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)&#xD;&#xA;&#x9;at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)&#xD;&#xA;&#x9;at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)&#xD;&#xA;&#x9;at java.lang.reflect.Method.invoke(Method.java:606)&#xD;&#xA;&#x9;at com.bea.wli.sb.transports.Util$1.invoke(Util.java:79)&#xD;&#xA;&#x9;at com.sun.proxy.$Proxy59.validateEndPointConfiguration(Unknown Source)&#xD;&#xA;&#x9;at com.bea.wli.sb.transports.TransportManagerImpl.validateEndPointConfiguration(TransportManagerImpl.java:905)&#xD;&#xA;&#x9;at com.bea.wli.sb.resources.service.validation.ServiceValidator.validateEndpointConfiguration(ServiceValidator.java:65)&#xD;&#xA;&#x9;at com.bea.wli.sb.resources.service.validation.ServiceValidation.validateEndpointConfiguration(ServiceValidation.java:319)&#xD;&#xA;&#x9;at com.bea.wli.sb.resources.service.validation.ServiceValidation._validate(ServiceValidation.java:186)&#xD;&#xA;&#x9;at com.bea.wli.sb.resources.service.validation.ServiceValidation.validate(ServiceValidation.java:132)&#xD;&#xA;&#x9;at com.bea.wli.sb.resources.service.BusinessServiceTypeDef.validate(BusinessServiceTypeDef.java:60)&#xD;&#xA;&#x9;at com.bea.wli.sb.resources.service.BusinessServiceTypeDef.validate(BusinessServiceTypeDef.java:39)&#xD;&#xA;&#x9;at com.bea.wli.config.validation.ResourceValidator.validateContents(ResourceValidator.java:115)&#xD;&#xA;&#x9;at com.bea.wli.config.validation.ResourceValidator.call(ResourceValidator.java:68)&#xD;&#xA;&#x9;at com.bea.wli.config.validation.ResourceValidator.call(ResourceValidator.java:43)&#xD;&#xA;&#x9;at com.bea.wli.config.transaction.TransactionalCallable._call(TransactionalCallable.java:118)&#xD;&#xA;&#x9;at com.bea.wli.config.transaction.TransactionalCallable.call(TransactionalCallable.java:102)&#xD;&#xA;&#x9;at java.util.concurrent.FutureTask.run(FutureTask.java:262)&#xD;&#xA;&#x9;at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)&#xD;&#xA;&#x9;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)&#xD;&#xA;&#x9;at java.lang.Thread.run(Thread.java:745)&#xD;&#xA;"/>
    Invalid JCA transport endpoint configuration, exception: oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.WSIFException: Please specify a Service. Choices are: {{http://xmlns.oracle.com/EventHandlerSubscriberComposite_jws/EventHandlerSubscriberComposite/LoggingServiceFileAdp}LoggingServiceFileAdp-concrete, {http://xmlns.oracle.com/EventHandlerSubscriberComposite_jws/EventHandlerSubscriberComposite/LoggingServiceFileAdp}LoggingServiceFileAdp-service}"/>
             <value n="errorLocationType" v="1"/>
             <value n="id" v="586c7b08-b54a-4c37-8bea-654a0663d1f2"/>
             <value n="lastUpdated" v="1420536778213"/>
    Thanks in Advance

    Seems a bug related to this issue has been closed as 'not a bug'
    (Bug 20276860 : Importing projects from OSB 11.1.1.6 to 12.1.3 fails with business service error)
    Of more than 100 business services, I faced this issue in around 10 business services - all JCA - db adapter based.
    But as a workaround, I could simply re-create the problematic services in 12c and that worked for me for now.
    At some point I will do a diff of the older migrated version with errors and the newly created version that works to see what the difference is..

  • OSB installed in WebLogic 12C - when it will be supported

    As I believed that OSB is nothing more than a webaplication with specific tables in Oracle database I imagined that I could try to install OSB in WebLogic12C. Maybe I am telling a stupid thing because I can see that after installed OSB, there is a specific new server on WebLogic console.
    Anyway, even if it was right, there a huge difference between I installed locally to test and I confirmed to do this without comercial support. Then, my question is: Is there some prediction about OSB, OER, OSR (SOA tools) be supported in WebLogic 12C? The more important for me is OSB.
    Other question is: is there some prediction about new version of OSB? If so, this probably will work by default at weblogic 12c.

    Anyway, even if it was right, there a huge difference between I installed locally to test and I confirmed to do this without comercial supportYou are correct. As Abhishek has already mentioned, OSB is not merely a web-app and it is tightly integrated with Weblogic app server. So there is no meaning putting any effort to try to get it work on Weblogic 12c.
    Is there some prediction about OSB, OER, OSR (SOA tools) be supported in WebLogic 12C? The more important for me is OSB.It is too early to talk about 12c but yes, all these products will be part of OFMW 12c.
    Other question is: is there some prediction about new version of OSB? If so, this probably will work by default at weblogic 12c.The next version of OSB will be 11g R1 patch set 6 (11.1.1.7) and hence it will only be certified with Weblogic 10.3.7
    Regards,
    Anuj

  • OSB (ALSB) to implement a Resequencer? (EIP Pattern)

    Hello *,
    has somebody ever tried to implement using OSB (BEA ALSB) the Resequencer EIP Pattern (Hohpe, Woolf)?
    http://www.enterpriseintegrationpatterns.com/Resequencer.html
    Generally I wonder how the OSB product concept maps to the EIP Patterns. Are there some guidelines for scenarios like Splitter/Aggregator , Enricher/Filter, etc.?
    my customer want's to implement at least the Resequence and Splitter. Any tips are very welcome here!!
    grtx,
    \thomas

    Hi Thomas,
    Depending on your exact requirement for your Resequencer you may be able to use the underlying WebLogic JMS Unit of Order to get this. Read more here:
    http://download-llnw.oracle.com/docs/cd/E11035_01/wls100/jms/uoo.html
    With regards the other patterns, OSB supports all the ones you mention:
    Splitter/Aggregator - use the split/join functionality described here:
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/splitjoin.html
    Enricher - this can be achieved in a number of ways depending on where you are getting your enrichment data from. Service callouts allow you to invoke a service from within the proxy message flow, Java callouts allows you to implement Java code, and there is an XQuery function to allow you to read content from a database (note in the next release of OSB we will have support for the Oracle database adapter and so will have richer functionality here)
    Filter - again this depends on the exact requirement but there are a number of options here including routing tables, if/then capability, operational branching, etc.
    Hope that is useful.
    Chris

  • OSB 11.6 in weblogic 12c

    Hello All,
    I am trying to install OSB 11.6 in 12c, i am getting invalid OEPE Location.
    After installing Weblogic 12c, it contains OEPE12.1.1.0.0, is this is the home for OEPE.
    Regards
    Praveen

    I think it expects 11.1.1.6.
    When you install the OSB, you can also select custom installation and then de-select the IDE and examples (when you do not
    want a development environment).

  • SOA 12c Resequencer

    Hello,
    I have a service that dequeues from a JMS ant then goes to a mediator configured as a FIFO resequencer and then to a bpel. Everything goes smooth most of times, but sometime the groups go to a state 7 in mediator_group_status table. Does anyone know what this state means?
    When the groups are in this state, it is impossible to see the resequencing groups in EM when selecting the instance... the error in the log when selecting the instance is
    <Apr 28, 2015 12:38:21 PM BRT> <Error> <oracle.soa.resequencer.MEDIATOR.management> <BEA-000000> <failed to getGroupInformation
    java.lang.NullPointerException
            at oracle.tip.resequencer.dao.toplink.service.ServiceSupportDB.getGroupInformation(ServiceSupportDB.java:219)
    If the state is updated to 0 directly in DB, the message is processed without problems. Any thought why it is going to this state 7?
    Regards,
    Rui Lopes

    Hi Rui Lopes,
    Yes, you are right, group in state 7 is an intermediate state where message has been not processed yet. Group in 7 state means it has not been pinned to any node for processing, once group is assigned node that will process it, later it will be locked and its message will get processed.
    As per my knowledge, since you updated group from 7 to 0 means group is now in ready state, it means the message that was earlier stuck with group state 7 will not be picked up for processing as you directly changed group state from 7 to ready state i.e, 0. Ideally, group from state 7, should get assigned a node that will process it and that node will lock that group for processing and once its messages are processed, it will change group state to 0(ready state).
    Now, the question is why group have not progress from state 7, so, can you please share me mediator_group_status row of that group and row of mediator_service_detail table?
    Regards,
    Yagnesh

  • OSB 12c Customization Files

    Is there a way we can change the  JCA file properties  like “SchemaName” in DB adapter JCA file  using the Customization file.
    Thanks
    Matt

    I do not think you can change that with customization.

  • ADFBindingFilter error while deploying a war to WLS server using jdev 12c

    I've a OSB Server setup using XBUS_MAIN_GENERIC_120131.1402.S which is using JDEVADF_MAIN_GENERIC_120102.0032.6211.
    Launched the 12c Jdev and created a simple adfc web application with a test.jspx page and deployed in the OSB Server. The web app deployed and could launch the test page.
    I have added the page definition for that test page by 'Go to Page Definition' option.
    Now, If I try to deploy this web app war to the OSB Server, I'm getting the following exception in the jdev (Error1) and in the server log I could see the error (Error2).
    Any Idea how to resolve this issue?
    Error1 ( on Jdev )
    [03:15:08 AM] ---- Deployment started. ----
    [03:15:08 AM] Target platform is (Weblogic 10.3).
    [03:15:09 AM] Retrieving existing application information
    [03:15:09 AM] Running dependency analysis...
    [03:15:09 AM] Building...
    [03:15:15 AM] Deploying profile...
    [03:15:16 AM] Wrote Web Application Module to /scratch/sansrini/OSB_DEV/OSBMgmtTestApp/OSBMgmtTaskflowsTestApp/deploy/newosb2.war
    [03:15:16 AM] Deploying Application...
    [03:15:18 AM] [Deployer:149193]Operation "deploy" on application "newosb2" has failed on "AdminServer".
    [03:15:18 AM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application newosb2 on AdminServer.: [HTTP:101371]There was a failure when processing annotations for application /scratch/sansrini/view_storage/sansrini_xbus2/xbus/build/MW_HOME/user_projects/domains/base_domain/servers/AdminServer/upload/newosb2/app/newosb2.war. Ensure that the annotations are valid. The error is oracle.adf.model.servlet.ADFBindingFilter.
    [03:15:18 AM] weblogic.application.ModuleException: [HTTP:101371]There was a failure when processing annotations for application /scratch/sansrini/view_storage/sansrini_xbus2/xbus/build/MW_HOME/user_projects/domains/base_domain/servers/AdminServer/upload/newosb2/app/newosb2.war. Ensure that the annotations are valid. The error is oracle.adf.model.servlet.ADFBindingFilter
    [03:15:18 AM] Deployment cancelled.
    [03:15:18 AM] ---- Deployment incomplete ----.
    [03:15:18 AM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    Error2 ( on wls log )
    <Feb 3, 2012 3:15:18 AM PST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: [HTTP:101371]There was a failure when processing annotations for application /scratch/sansrini/view_storage/sansrini_xbus2/xbus/build/MW_HOME/user_projects/domains/base_domain/servers/AdminServer/upload/newosb2/app/newosb2.war. Ensure that the annotations are valid. The error is oracle.adf.model.servlet.ADFBindingFilter
    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:732)
    at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:188)
    at weblogic.application.internal.ExtensibleModuleWrapper.prepare(ExtensibleModuleWrapper.java:93)
    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:100)
    at weblogic.application.internal.flow.ModuleStateDriver$1.next(ModuleStateDriver.java:172)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.adf.model.servlet.ADFBindingFilter
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace

    I guess you should be asking on an internal forum somewhere, because we, the unwashed masses, don't have access to JDev 12c.
    John

  • Error while performing OSB Resource Provisioning in OEM12c

    Hi ,
    I tried the following, but faced the below errors mentioned.
    1.Log on to Oracle Enterprise Manager Cloud Control 12c Workspace using "sysman" userid
    2. Navigate to Enterprise-> Provisioning and Patching-> Middleware Provisioning.
    3. From the List of Deployment Procedure Names section, Select the Oracle Service Bus Resource Provisioning procedure from the list and click Launch.
    4. In ‘Select Source’ page, Select ‘Oracle Service Bus Domain’ radio button
    5. Click Browse icon and Select the specific Domain and also specify the BEA Home Directory and Click Next.
    6. In ‘Select Projects’ page, in the Resource Summary section, Select the projects to export and deploy to the target OSB domain.
    7. In ‘Select Target’ page, Select ‘Domain’ and’ BEA Home Directory’ in the ‘Target’ section
    8. In ‘Set Credentials’ page, specify the login credentials of the source and target domains, hosts and Click Next
    9. In ‘Schedule’ page, Specify a Deployment Instance name and Click Next.
    10. In Review page, review the details you have provided for the Deployment Procedure
    11. Click Submit to run the Deployment Procedure according to the schedule set.
    12. In ‘Procedure Activity’ page, Click Status and view the details of the execution of each step.
    The procedure activity is created successfully, but its completed with the following error in Transfer Jar File
    Step: Create archive file from contents of directory (Failed)
    Created /tmp/job_ft_D534213D48EC4E46E04333B6360AA560
    Executing command /opt/em/core/12.1.0.2.0/bin/zip -rv /tmp/job_ft_D534213D48EC4E46E04333B6360AA560/src_archive_D534213D48EC4E46E04333B6360AA560.zip .
    zip error: Nothing to do! (try: zip -rv /tmp/job_ft_D534213D48EC4E46E04333B6360AA560/src_archive_D534213D48EC4E46E04333B6360AA560.zip . -i .)
    Process returned : 12. Illegal seek
    Step: Create or prepare destination directory for commencing file transfer (Succeeded)
    Step: Transfer archive file to destination (Error)
    File does not exist or not accessible.sink operation skipped due to source operation failure
    Kindly help here
    Thanks

    Hi,
    I have resolved the issue with the help of cluster admin
    Regards
    Mitesh

  • Service Bus 12c Class not found 'oracle.tip.pc.services.functions.ExtFunc'

    Hi,
    Did anyone came across this issue with Class not being found for XSLT Function used in transformer on 12c OSB.
    I'm using oraext:sequence-next-val and have configured as below:
    namespace-uri:http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc
    namespace-prefix: oraext
    Not sure why at runtime I'm getting below error, as the same was working fine in 11g OSB Domain.
    XML-22045: (Error) Extension function error: Class not found 'oracle.tip.pc.services.functions.ExtFunc'

    Have you restarted servers after putting jar in $Domain_Home/lib directory? Also try after explicitly adding this jar in classpath by editing server startup script (startManagedWeblogic.cmd or .sh) or in domain env setting script (setDonainEnv.cmd or .sh) and restarting the servers.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi on Mar 21, 2011 1:10 PM

  • Validate date in Xquery version "1.0" to be used in OSB

    I have a requirement where i have to populate error code and messages if a date is invalid. For which I can use
    xquery version "1.0" encoding "Cp1252";
    (:: pragma bea:global-element-return element="Error" location="../../IDCardStatus/xsd/xsdError.xsd" ::)
    declare namespace xf = "http://tempuri.org/IDCardRequest/xq/DateValidation/";
    declare function xf:DateValidation($date as xs:string)
        as element(Error) {
    <Error>
    {if ((fn:concat(fn:substring($date,1,4),'-',fn:substring($date,5,2),'-',fn:substring($date,7,8))) castable as xs:date)
    then
    else
            <ErrorSeq>
            <ErrorCode>97534</ErrorCode>
      <ErrorMssg></ErrorMssg>
      </ErrorSeq>
    </Error>
    declare variable $date as xs:string external;
    xf:DateValidation($date)
    But castable is not implemented in Oracle Fusion Middleware Xquery implementation and Try Catch can be used if Xquery throughs error but are implemented in xquery version "3.0" and Oracle Fusion Middleware still uses version "1.0". Please Help as its a common requirement in most of the projects i have come along.Thanks in anticipation

    Sorry, I assumed you were using 12c.  OSB 11g supports the XQuery 1.0 W3C Working Draft from 23 July 2004 and also does not include the castable expression.  OSB 12c supports the full XQuery 1.0 recommendation (including the castable expression). 

Maybe you are looking for

  • Color Selection stuck on Crayons (or Color Wheel or Slider) - Lion alternative to "little oval button."

    I just spent a while figuring this out so I'm posting the solution.  I'm running OS X Lion and it seems that Apple has done away with the little oval button in the upper right hand of windows that allows you to hide/unhide toolbars.  You can usually

  • Old Accessories don't work.

    So, I had an original iPhone. Paid full price for it. Then they dropped the price by $200. Bought a car integration kit for my MINI ($300 + installation), as well as a dock for my desk, etc. etc. Now I have the new iPhone and it won't work with any o

  • Compiling

    i am using sun java studio for my compile. So far i just have one .java file called mainGUI.java. I was wondering how can i make this mainGUI.java into a .jar executable. Also, if you can tell me how to add files to this such as a database, it would

  • Why is my External Hard Drive not showing in Aperture 3.6 Import?

    Why is my External Hard Drive not showing in Aperture 3.6 Import? Only my computer hard drive is and I want to import from an external drive.  I have always been able to until I updated to Aperture 3.6 and Yosemite.

  • Resulting Blurry Photo

    I am creating a 4 by 6 business card and I am trying to put a photo in the upper right corner.  The original photo is crisp and in high resolution, but after cropping and down-sizing it and dragging it into my project, it loses its resoultion.  Can s