SynchHelloWorld process could not be deployed. Why?

Hello,
I have some experience with Active BPEL engine but this is the first time that I am working with JDeveloper BPEL designer and Oracle BPEL Process Manager. I followed the SynchHelloWorld sample tutorial from OTN site. My project gets compiled but not deployed to BPEL Process Manager.
I just says
SynchHelloWorld cannot be run/debug in this release.
I have downloaded free versions of both products.
JDeveloper - 10.1.2.1.0
Process Manager - 10.1.2.0.2 [ It displays this value in header of the console ]
I see that under project folder, there is jar file created, so I copied it over to the domains\default folder under process manager but it is still not recognized. What am I doing wrong here?
Thank you.
Meghana

Thank you for your prompt response. After rebuilding and deploying using 'deploy' item it worked.
I am trying to make bpel created in ActiveBPEL designer work in JDeveloper. Is there a way to attach my bpel and wsdl files to this message or can I send them to you directly. I am getting errors on my response activities. Same activities that work in ActiveBPEL designer and pass the validation, fail to validate here in Oracle's BPEL designer.
I am copying my bpel, wsdl here
---------------------------------------------- BPEL ------------------------------------------------------
<process name="EnterCR" targetNamespace="http://xmlns.oracle.com/EnterCR" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:client="http://xmlns.oracle.com/EnterCR" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"><!-- ================================================================= --><!-- PARTNERLINKS --><!-- List of services participating in this BPEL process --><!-- ================================================================= -->
<partnerLinks><!--
The 'client' role represents the requester of this service. It is
used for callback. The location and correlation information associated
with the client role are automatically set using WS-Addressing.
-->
<partnerLink name="IBSServicePLT"/>
</partnerLinks><!-- ================================================================= --><!-- VARIABLES --><!-- List of messages and XML documents used within this BPEL process --><!-- ================================================================= -->
<variables>
<variable messageType="IBSTrigger" name="IBSTrigger"/>
<variable messageType="IBSResponse" name="IBSResponse"/>
<variable name="HistoryIndex" type="integer"/><!-- This is a temporary variable used to read nodes from History variable. It is used when screen names are pushed or popped from the history stack -->
<variable name="xpathInHistory" type="string"/>
<variable messageType="HistoryMessage" name="History"/>
</variables>
<correlationSets>
<correlationSet name="IBS_ID_CS" properties=":IBS_ID"/>
</correlationSets><!-- ================================================================= --><!-- ORCHESTRATION LOGIC --><!-- Set of activities coordinating the flow of messages across the --><!-- services integrated within this business process --><!-- ================================================================= -->
<sequence name="MainContainer">
<receive createInstance="yes" name="StartIBS" operation="processIBSRequest" partnerLink="IBSServicePLT" portType="IBSServicePT" variable="IBSTrigger">
<correlations>
<correlation initiate="yes" set="IBS_ID_CS"/>
</correlations>
</receive>
<assign name="InitVarsAndHistory">
<copy>
<from expression="0"/>
<to variable="HistoryIndex"/>
</copy>
<copy>
<from>
<History xmlns="http://www.serena.com/2005/ibs/namespace" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:ns1="http://www.serena.com/2005/ibs/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<nextScreen index="1"/>
<nextScreen index="2"/>
<nextScreen index="3"/>
</History>
</from>
<to part="Stack" variable="History"/>
</copy>
<copy>
<from>
<IBSData xmlns="http://www.serena.com/2005/ibs/namespace" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:ns1="http://www.serena.com/2005/ibs/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Data/>
<ClientParams>
<TargetFrameId/>
<MFX/>
<MFXId/>
<ContainerType/>
<WindowName/>
</ClientParams>
<ServerParams>
<ibsId>12345678
</ibsId>
<nextScreen>Login
</nextScreen>
</ServerParams>
</IBSData>
</from>
<to part="IBSData" variable="IBSResponse"/>
</copy>
</assign>
<while condition="bpws:getVariableData('IBSTrigger', 'IBSData', '/ns1:IBSData/ns1:ServerParams/ns1:nextScreen') != 'Finish'" name="WhileNotDone">
<sequence name="WhileContainer">
<switch name="SwitchForFinishCancelPopPush">
<case condition="bpws:getVariableData('IBSTrigger', 'IBSData', '/ns1:IBSData/ns1:ServerParams/ns1:nextScreen') = 'Back'">
<assign name="PopPreviousScreenName">
<copy>
<from expression="bpws:getVariableData('HistoryIndex') - 1"/>
<to variable="HistoryIndex"/>
</copy>
<copy>
<from expression="concat('/ns1:History/ns1:nextScreen[', bpws:getVariableData('HistoryIndex'),']' )"/>
<to variable="xpathInHistory"/>
</copy>
<copy>
<from part="Stack" query="bpws:getVariableData( 'History', 'Stack', bpws:getVariableData('xpathInHistory') )" variable="History"/>
<to part="IBSData" query="/ns1:IBSData/ns1:ServerParams/ns1:nextScreen" variable="IBSTrigger"/>
</copy>
</assign>
</case><!-- Right now does not do anything. Modify to call compensation handler. -->
<case condition="bpws:getVariableData('IBSTrigger', 'IBSData', '/ns1:IBSData/ns1:ServerParams/ns1:nextScreen') = 'Cancel'">
<empty/>
</case>
<case condition="bpws:getVariableData('IBSTrigger', 'IBSData', '/ns1:IBSData/ns1:ServerParams/ns1:nextScreen') != 'Back'">
<assign name="PushScreenName">
<copy>
<from expression="bpws:getVariableData('HistoryIndex') +1"/>
<to variable="HistoryIndex"/>
</copy>
<copy>
<from expression="concat('/ns1:History/ns1:nextScreen[', bpws:getVariableData('HistoryIndex'),']' )"/>
<to variable="xpathInHistory"/>
</copy>
<copy>
<from part="IBSData" query="/ns1:IBSData/ns1:ServerParams/ns1:nextScreen" variable="IBSTrigger"/>
<to part="Stack" query="bpws:getVariableData('History', 'Stack', bpws:getVariableData('xpathInHistory') )" variable="History"/>
</copy>
</assign>
</case>
</switch><!-- Filled in from solution model -->
<sequence name="SerenaSequence">
<bpws:switch name="SwitchScreen1">
<bpws:case condition="bpws:getVariableData('IBSTrigger', 'IBSData', '/ns1:IBSData/ns1:ServerParams/ns1:nextScreen') = 'EnterCR'">
<bpws:assign name="CopyEnterCRScreenSetup">
<bpws:copy>
<bpws:from part="IBSData" query="/ns1:IBSData/ns1:ServerParams/ns1:ibsId" variable="IBSTrigger"/>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:ServerParams/ns1:ibsId" variable="IBSResponse"/>
</bpws:copy>
<bpws:copy>
<bpws:from>'EnterCR.mfx'
</bpws:from>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:ClientParams/ns1:MFX" variable="IBSResponse"/>
</bpws:copy>
<bpws:copy>
<bpws:from>'EnterCR.id'
</bpws:from>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:ClientParams/ns1:MFXId" variable="IBSResponse"/>
</bpws:copy>
<bpws:copy>
<bpws:from>'dialog'
</bpws:from>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:ClientParams/ns1:ContainerType" variable="IBSResponse"/>
</bpws:copy>
<bpws:copy>
<bpws:from part="IBSData" query="/ns1:IBSData/ns1:Data" variable="IBSTrigger"/>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:Data" variable="IBSResponse"/>
</bpws:copy>
</bpws:assign>
</bpws:case>
<bpws:case condition="bpws:getVariableData('IBSTrigger', 'IBSData', '/ns1:IBSData/ns1:ServerParams/ns1:nextScreen') = 'ChooseProduct'">
<bpws:assign name="CopyChooseProductScreenSetup">
<bpws:copy>
<bpws:from part="IBSData" query="/ns1:IBSData/ns1:ServerParams/ns1:ibsId" variable="IBSTrigger"/>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:ServerParams/ns1:ibsId" variable="IBSResponse"/>
</bpws:copy>
<bpws:copy>
<bpws:from>'ChooseProduct.mfx'
</bpws:from>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:ClientParams/ns1:MFX" variable="IBSResponse"/>
</bpws:copy>
<bpws:copy>
<bpws:from>'ChooseProduct.id'
</bpws:from>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:ClientParams/ns1:MFXId" variable="IBSResponse"/>
</bpws:copy>
<bpws:copy>
<bpws:from>'dialog'
</bpws:from>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:ClientParams/ns1:ContainerType" variable="IBSResponse"/>
</bpws:copy>
<bpws:copy>
<bpws:from part="IBSData" query="/ns1:IBSData/ns1:Data" variable="IBSTrigger"/>
<bpws:to part="IBSData" query="/ns1:IBSData/ns1:Data" variable="IBSResponse"/>
</bpws:copy>
</bpws:assign>
</bpws:case>
</bpws:switch>
</sequence>
<reply name="SendIBSResponse" operation="processIBSRequest" partnerLink="IBSServicePLT" portType="IBSServicePT" variable="IBSResponse"/>
<receive name="ReceiveNextScreen" operation="processIBSRequest" partnerLink="IBSServicePLT" portType="IBSServicePT" variable="IBSTrigger" createInstance="no">
<correlations>
<correlation set="IBS_ID_CS"/>
</correlations>
</receive>
</sequence>
</while>
<switch name="SwitchForFinish">
<case condition="bpws:getVariableData('IBSTrigger', 'IBSData', '/ns1:IBSData/ns1:ServerParams/ns1:nextScreen') = 'Finish'">
<empty name="ShowSummaryIfAnyElseEmpty"/>
</case>
</switch>
<reply operation="processIBSRequest" partnerLink="IBSServicePLT" portType="IBSServicePT" variable="IBSResponse"/>
</sequence>
</process>
----------------------------------------------- WSDL -------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="EnterCR"
targetNamespace="http://www.serena.com/2005/ibs/namespace"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:client="http://www.serena.com/2005/ibs/namespace"
xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     TYPE DEFINITION - List of services participating in this BPEL process
     The default output of the BPEL designer uses strings as input and
     output to the BPEL Process. But you can define or import any XML
     Schema type and us them as part of the message types.
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
     <types>
          <schema attributeFormDefault="qualified"
               elementFormDefault="qualified"
               targetNamespace="http://www.serena.com/2005/ibs/namespace"
               xmlns="http://www.w3.org/2001/XMLSchema">
               <element name="IBSData">
                    <complexType>
                         <all maxOccurs="1" minOccurs="1">
                              <element name="Data">
                                   <complexType>
                                        <sequence><any processContents="skip"/></sequence>
                                   </complexType>
                              </element>
                              <element name="ClientParams">
                                   <complexType>
                                        <all maxOccurs="1" minOccurs="1">
                                             <element name="TargetFrameId"/>
                                             <element name="MFX"/>
                                             <element name="MFXId"/>
                                             <element name="ContainerType"/>
                                             <element name="WindowName"/>
                                        </all>
                                   </complexType>
                              </element>
                              <element name="ServerParams">
                                   <complexType>
                                        <all maxOccurs="1" minOccurs="1">
                                             <element name="ibsId"/>
                                             <element name="nextScreen"/>
                                        </all>
                                   </complexType>
                              </element>
                         </all>
                    </complexType>
               </element>
               <element name="History">
                    <complexType>
                         <sequence maxOccurs="unbounded" minOccurs="0">
                              <element name="nextScreen">
                                   <complexType>
                                        <attribute name="index" type="xs:integer"/>
                                   </complexType>
                              </element>           
                         </sequence>                              
                    </complexType>
               </element>
          </schema>
     </types>
     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     MESSAGE TYPE DEFINITION - Definition of the message types used as
     part of the port type defintions
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
     <message name="HistoryMessage">
<part name="Stack" element="tns:History"/>
</message>
<message name="IBSResponse">
<part name="IBSData" element="tns:IBSData"/>
</message>
<message name="IBSTrigger">
<part name="IBSData" element="tns:IBSData"/>
</message>
     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     PORT TYPE DEFINITION - A port type groups a set of operations into
     a logical service unit.
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
     <!-- portType implemented by the EnterCR BPEL process -->
     <portType name="IBSServicePT">
<operation name="processIBSRequest">
<input message="tns:IBSTrigger"/>
<output message="tns:IBSResponse"/>
</operation>
</portType>
     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     PARTNER LINK TYPE DEFINITION
     the EnterCR partnerLinkType binds the provider and
     requester portType into an asynchronous conversation.
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
     <plnk:partnerLinkType name="IBSServicePLT">
<plnk:role name="IBSServer">
<plnk:portType name="tns:IBSServicePT"/>
</plnk:role>
</plnk:partnerLinkType>
</definitions>

Similar Messages

  • WLS 10.3.3 - BEA-280061 The persistent store could not be deployed

    Hi,
    We have an application which is using WLS 10.3.3. After installing, whenever we start a managed server, it fails with:
    <BEA-280061> <The persistent store "XYZ" could not be deployed: java.io.IOException: [Store:280044]The file store directory "/<PATH TO STORE>/XYZ" does not exist
    java.io.IOException: [Store:280044]The file store directory "/<PATH TO STORE>/XYZ" does not exist
         at weblogic.store.io.file.StoreDir.throwIOException(StoreDir.java:173)
         at weblogic.store.io.file.StoreDir.createDirectory(StoreDir.java:226)
         at weblogic.store.admin.FileAdminHandler.prepareCommon(FileAdminHandler.java:158)
         at weblogic.store.admin.FileAdminHandler.prepare(FileAdminHandler.java:104)
         at weblogic.management.utils.GenericManagedService.prepareDeployment(GenericManagedService.java:204)
         at weblogic.management.utils.GenericServiceManager.prepareDeployment(GenericServiceManager.java:121)
         at weblogic.management.internal.DeploymentHandlerHome.invokeHandlers(DeploymentHandlerHome.java:628)
         at weblogic.management.internal.DeploymentHandlerHome.prepareInitialDeployments(DeploymentHandlerHome.java:408)
         at weblogic.management.deploy.internal.DeploymentAdapter$2.doPrepare(DeploymentAdapter.java:98)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:22)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:166)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    On investigation, the data/store directory does exist and the path is correct, but the store name directory does not - so for example if the store is called XYZ, there is no folder XYZ in data/store.
    There are no errors in the managed server log at all up until this point.
    We can get this working by:
    * Starting the Managed server
    * It fails
    * ShutDown the Managed Server
    * Create the folder XYZ using mkdir
    * Start the Managed Server (this works)
    This is the associated section from the config.xml:
    <file-store>
    <name>XYZ</name>
    <target>manserv-1</target>
    </file-store>
    This is a four node cluster and this store is deployed to all of the nodes - all four nodes have the same issue.
    Obviously I'd like to know why this is happening so we can correct it. I have looked round the web but can't see this particular error anywhere.
    Thanks in advance for any help
    Edited by: 843385 on Mar 10, 2011 6:03 AM

    Make sure the directory to which the file store points in available.
    - Target attribute of the file store (The server instances or migratable targets defined in the current domain that are candidates for hosting the
    file store. In a clustered environment, a recommended best practice is to target a custom file store to the same migratable target as the migratable
    JMS service, so that a member server will not be a single point of failure. A file store can also be configured to automatically migrate from an
    unhealthy server instance to a healthy server instance with the help of the server health monitoring services.)
    - Directory attribute of the file store (The path name to the file system directory where the file store maintains its data files. When targeting a
    file store to a migratable target, the store directory must be accessible from all candidate server members in the migratable target. For highest
    availability, you can use a SAN (Storage Area Network) disk.)
    Note that a filestore is a singleton service and is targetted to one server in the cluster at a time, in your case manserv-1.
    So on the machine where manserv-1 runs you must make sure the directory "/<PATH TO STORE>/XYZ exists.

  • Problem in the setup of oracle soa " could not get deployment manage"

    hi,
    i'm trying to install Oracle SOA with oracle database XE, but i'm having an error message in the oracle bpel process manager configuration assistant: 'could not get deployment manage'..
    can u help me please!!!

    Is the database up and running, can you connect to the orabpel user?
    cheers
    James

  • The process could not connect to Subscriber

    Hello,
    I have setup transactional replication between Server1 (SQL Server 2012 on windows 2012) and Server2 (SQL Server 2005 on windows 2003 SP2). The replication is push and distributor is on publisher ie Server1.
    The snapsots are generated but they can't apply to the subscriber. I get the following error.
     'The process could not connect to Subscriber '
    Can someone please tell me why I get this error? I have a link server setup between Server1 and Server2. I could connect from SSMS and run query from Server1 to Server2.
    What credentials does distributor on Server1 use to connect to subscriber? Am I missing something? How do I troubleshoot this is?
    Thanks,
    -P

    Hi sqlrepluser,
    Right-click on your push subscription -> Properties.  From the subscription properties you will see a section
    Security with a property Subscriber connection.  You can have the subscriber connection impersonate the agent process account or you can choose SQL Server authentication for the subscriber connection.
    The Distribution Agent for a push subscription must be a member of db_owner fixed database role in the distribution and subscription databases, be a member of the PAL, and have read permissions on the snapshot share.  This is covered in
    Replication Agent Security Model.
    Brandon Williams (blog |
    linkedin)

  • The filtering process could not be initialized when trying to process this item. Verify that the file extension is a known type and the item is not corrupt

    I am getting below error message while search crawl in sharepoint foundation 2010 search for only .VSD files and not for any other docs type.
    The filtering process could not be initialized when trying to process this item. Verify that the file extension is a known type and the item is not corrupt. 
    I have installed the Microsoft Filter Pack 2.0 in search server but still i am getting the same error.
    <//span>
    Any one's help will be appreciated.
    Regards,
    Rashmi
    Rashmi Singhal

    Hi Rashmi,
    1. Checked the file extension is added or not to the search file types.
    2. Checked file name has any invalid characters.
    3. Resetting the crawl index and run a full crawl .
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • BME-99003:  An error occurred, so processing could not continue.

    Got the error message below when working with my faces-config.xml file.
    I currently have several JSF navigation cases labeled as "!NLS Error" (No Quotes)
    Steps to create the error...
    1. Create an ADF Faces project with 10-15 pages and navigation rules between each page.
    2. Outside of JDeveloper, redo your folder structure on how you store your pages.
    3. Inside Jdeveloper, update the source of faces-config.xml to point to the new location of the files.
    4. Click on the diagram tab.
    On my screen, the diagram for both the old and new files was appearing. When trying to delete the diagram for the old files, I got the error message. I cannot save the file faces-config.oxd_faces.
    Message
    BME-99003: An error occurred, so processing could not continue.
    Cause
    The application has tried to de-reference an invalid pointer. This exception should have been dealt with programmatically. The current activity may fail and the system may have been left in an unstable state. The following is a stack trace.
    java.lang.NullPointerException
         at oracle.bm.diagrammer.shape.BaseDiagramEdge.startMove(Unknown Source)
         at oracle.bm.diagrammer.track.MoveTracker.<init>(Unknown Source)
         at oracle.bm.diagrammer.track.SelectionTracker.mousePressed(Unknown Source)
         at oracle.bm.diagrammer.track.ModularTracker.processEvent(Unknown Source)
         at oracle.bm.diagrammer.track.SelectionTracker.processEvent(Unknown Source)
         at oracle.bm.diagrammer.track.TrackerStack.processEvent(Unknown Source)
         at oracle.bm.diagrammer.BaseDiagramView$53.processEvent(Unknown Source)
         at oracle.bm.diagrammer.PageView$PageViewPanel.fireEvent(Unknown Source)
         at oracle.bm.diagrammer.PageView$PageViewPanel.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3889)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Action
    If further errors occur, you should restart the application.
    Also, report the problem on the JDeveloper forum on otn.oracle.com, or contact Oracle support, giving the information from this message.
    ________________________________________________________________________________

    To fix this issue, I performed the following...
    1. Copy the xml from the faces-config source tab.
    2. Delete the faces-config.xml file within JDeveloper.
    3. Create a new faces-config.xml file.
    4. Paste xml from step one into the faces-config source tab.
    Really not that bad of an issue, I only posted because the error message directed me to.

  • Running transactional replication on SQL server 2008R2 but: "The process could not connect to subscriber 'SERVER NAME'"

    I've set up Replication (transactional replication) between two remote servers. On the one of server that I configure Distribution & publication .another server is subscription. The subscription is all set & snapshot agent is started .but the actual
    replication doesn't take place.
    When viewing the Synchronization Status of the subscription, i get an error, saying "The process could not connect to Subscriber ‘Server name'."
    Clicking on start, this is the error message I get:
    The agent could not be started.
    Additional information:
    An exception while executing a Transact-SQL statement or batch.
    SQL Server Agent Error: Request to run job Server1-EDUSRV-Pubs-Server2-14 (from User Server1\Administrator) refused because the job is already running from a request by User sa.
    Change database context to 'EDUSRV'.(Microsoft SQL Server Error:22022)
    What can i do?
    Please help me.Thanks

    The error The process could not connect to Subscriber 'Server name' indicates that the Distribution Agent process account does not have enough permissions to connect to the Subscriber.
    If this is a push subscription, verify the Distribution Agent process account is db_owner in the distribution and subscription databases, is a member of the PAL, and has read permissions on the snapshot share.
    If this is a pull subscription, verify the Distribution Agent process account is db_owner in the subscription database, is a member of the PAL, and has read permissions on the snapshot share.
    The permissions required are covered in
    Replication Agent Security Model.
    If you have anymore questions, please let me know.  I hope this helps.
    Brandon Williams (blog |
    linkedin)

  • Agent message code 20084. The process could not connect to Distributor

    Hello all
    We are using Sql server 2012
      I am getting the following error message while running a  replication subscriber side server(server02):
    Agent message code 20084. The process could not connect to Distributor (server01)
    Both Publisher and Distributor  in server01

    Hello,
    Just as other post above, the issue may caused by the account permission of the Distribution Agent.
    For pull subscriptions, the account must at minimum be a member of the db_owner fixed database role in the subscription database.
    And to connect to distributor, the account used for the connection must:
    1,Be a member of the PAL.
    2.Have read permissions on the snapshot share.
    Reference:http://technet.microsoft.com/en-us/library/ms189691.aspx
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • The selected operation process could not be invoked.

    The selected operation process could not be invoked.
    An exception occured while invoking the webservice operation. Please see logs for more details.
    java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is bpws:getVariableData('Variable_1') <= ora:getPreference(dyn_var). The XPath expression failed to execute; the reason was: oracle.xml.parser.v2.XMLNodeList cannot be cast to java.lang.String. Check the detailed root cause described in the exception message text and verify that the XPath query is correct. at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:575) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:381) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:298) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.sun.el.parser.AstValue.invoke(AstValue.java:157) at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283) at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53) at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1259) at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94) at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94) at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91) at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475) at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:698) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:285) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420) at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157) at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.emSDK.license.LicenseFilter.doFilter(LicenseFilter.java:101) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.emas.fwk.MASConnectionFilter.doFilter(MASConnectionFilter.java:41) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.AuditServletFilter.doFilter(AuditServletFilter.java:179) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:203) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.core.app.perf.PerfFilter.doFilter(PerfFilter.java:141) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:542) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201) at weblogic.work.ExecuteThread.run(ExecuteThread.java:173) Caused by: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is bpws:getVariableData('Variable_1') <= ora:getPreference(dyn_var). The XPath expression failed to execute; the reason was: oracle.xml.parser.v2.XMLNodeList cannot be cast to java.lang.String. Check the detailed root cause described in the exception message text and verify that the XPath query is correct. at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:260) at oracle.sysman.emSDK.webservices.wsdlparser.OperationInfoImpl.invokeWithDispatch(OperationInfoImpl.java:985) at oracle.sysman.emas.model.wsmgt.PortName.invokeOperation(PortName.java:729) at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:569) ... 69 more Caused by: javax.xml.ws.soap.SOAPFaultException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is bpws:getVariableData('Variable_1') <= ora:getPreference(dyn_var). The XPath expression failed to execute; the reason was: oracle.xml.parser.v2.XMLNodeList cannot be cast to java.lang.String. Check the detailed root cause described in the exception message text and verify that the XPath query is correct. at oracle.j2ee.ws.client.jaxws.DispatchImpl.throwJAXWSSoapFaultException(DispatchImpl.java:955) at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:750) at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:234) at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:105) at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:256) ... 72 more

    The selected operation process could not be invoked.
    An exception occured while invoking the webservice operation. Please see logs for more details.
    java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is bpws:getVariableData('Variable_1') <= ora:getPreference(dyn_var). The XPath expression failed to execute; the reason was: oracle.xml.parser.v2.XMLNodeList cannot be cast to java.lang.String. Check the detailed root cause described in the exception message text and verify that the XPath query is correct. at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:575) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:381) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:298) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.sun.el.parser.AstValue.invoke(AstValue.java:157) at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283) at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53) at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1259) at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94) at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94) at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91) at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475) at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:698) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:285) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420) at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157) at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.emSDK.license.LicenseFilter.doFilter(LicenseFilter.java:101) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.emas.fwk.MASConnectionFilter.doFilter(MASConnectionFilter.java:41) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.AuditServletFilter.doFilter(AuditServletFilter.java:179) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:203) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.core.app.perf.PerfFilter.doFilter(PerfFilter.java:141) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:542) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201) at weblogic.work.ExecuteThread.run(ExecuteThread.java:173) Caused by: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is bpws:getVariableData('Variable_1') <= ora:getPreference(dyn_var). The XPath expression failed to execute; the reason was: oracle.xml.parser.v2.XMLNodeList cannot be cast to java.lang.String. Check the detailed root cause described in the exception message text and verify that the XPath query is correct. at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:260) at oracle.sysman.emSDK.webservices.wsdlparser.OperationInfoImpl.invokeWithDispatch(OperationInfoImpl.java:985) at oracle.sysman.emas.model.wsmgt.PortName.invokeOperation(PortName.java:729) at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:569) ... 69 more Caused by: javax.xml.ws.soap.SOAPFaultException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is bpws:getVariableData('Variable_1') <= ora:getPreference(dyn_var). The XPath expression failed to execute; the reason was: oracle.xml.parser.v2.XMLNodeList cannot be cast to java.lang.String. Check the detailed root cause described in the exception message text and verify that the XPath query is correct. at oracle.j2ee.ws.client.jaxws.DispatchImpl.throwJAXWSSoapFaultException(DispatchImpl.java:955) at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:750) at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:234) at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:105) at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:256) ... 72 more

  • Getting error selected operation process could not be invoked while testing?

    Hi All,
    Can some one help me on the below issue
    Scenario:
    I need to call a procedure from a package
    Getting below error
    The selected operation process could not be invoked.
    An exception occured while invoking the webservice operation. Please see logs for more details.
    oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: oracle.fabric.common.FabricException: oracle.fabric.common.FabricInvocationException: Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.3.0) (Build 100323)): oracle.toplink.exceptions.DatabaseException<br>Internal Exception: weblogic.jdbc.extensions.PoolDisabledSQLException: weblogic.common.resourcepool.ResourceDisabledException: Pool SOALocalTxDataSource is Suspended, cannot allocate resources to applications..<br>Error Code: 0<br>Call: SQLCall(UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?)<br>Query: DataModifyQuery(): Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.3.0) (Build 100323)): oracle.toplink.exceptions.DatabaseException<br>Internal Exception: weblogic.jdbc.extensions.PoolDisabledSQLException: weblogic.common.resourcepool.ResourceDisabledException: Pool SOALocalTxDataSource is Suspended, cannot allocate resources to applications..<br>Error Code: 0<br>Call: SQLCall(UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?)<br>Query: DataModifyQuery()<br>
    java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: oracle.fabric.common.FabricException: oracle.fabric.common.FabricInvocationException: Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.3.0) (Build 100323)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: weblogic.jdbc.extensions.PoolDisabledSQLException: weblogic.common.resourcepool.ResourceDisabledException: Pool SOALocalTxDataSource is Suspended, cannot allocate resources to applications..
    Error Code: 0
    Call: SQLCall(UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?)
    Query: DataModifyQuery(): Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.3.0) (Build 100323)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: weblogic.jdbc.extensions.PoolDisabledSQLException: weblogic.common.resourcepool.ResourceDisabledException: Pool SOALocalTxDataSource is Suspended, cannot allocate resources to applications..
    Error Code: 0
    Call: SQLCall(UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?)
    Query: DataModifyQuery()
      at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:575)
      at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:381)
      at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:298)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
      at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
      at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1259)
      at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
      at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
      at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
      at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
      at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
      at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
      at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
      at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
      at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
      at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
      at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:698)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:285)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.sysman.emSDK.license.LicenseFilter.doFilter(LicenseFilter.java:101)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.sysman.emas.fwk.MASConnectionFilter.doFilter(MASConnectionFilter.java:41)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.sysman.eml.app.AuditServletFilter.doFilter(AuditServletFilter.java:179)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:203)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.sysman.core.app.perf.PerfFilter.doFilter(PerfFilter.java:141)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:542)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: oracle.fabric.common.FabricException: oracle.fabric.common.FabricInvocationException: Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.3.0) (Build 100323)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: weblogic.jdbc.extensions.PoolDisabledSQLException: weblogic.common.resourcepool.ResourceDisabledException: Pool SOALocalTxDataSource is Suspended, cannot allocate resources to applications..
    Error Code: 0
    Call: SQLCall(UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?)
    Query: DataModifyQuery(): Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.3.0) (Build 100323)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: weblogic.jdbc.extensions.PoolDisabledSQLException: weblogic.common.resourcepool.ResourceDisabledException: Pool SOALocalTxDataSource is Suspended, cannot allocate resources to applications..
    Error Code: 0
    Call: SQLCall(UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?)
    Query: DataModifyQuery()
      at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:260)
      at oracle.sysman.emSDK.webservices.wsdlparser.OperationInfoImpl.invokeWithDispatch(OperationInfoImpl.java:985)
      at oracle.sysman.emas.model.wsmgt.PortName.invokeOperation(PortName.java:729)
      at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:569)
      ... 69 more
    Caused by: javax.xml.ws.soap.SOAPFaultException: oracle.fabric.common.FabricException: oracle.fabric.common.FabricInvocationException: Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.3.0) (Build 100323)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: weblogic.jdbc.extensions.PoolDisabledSQLException: weblogic.common.resourcepool.ResourceDisabledException: Pool SOALocalTxDataSource is Suspended, cannot allocate resources to applications..
    Error Code: 0
    Call: SQLCall(UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?)
    Query: DataModifyQuery(): Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.3.0) (Build 100323)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: weblogic.jdbc.extensions.PoolDisabledSQLException: weblogic.common.resourcepool.ResourceDisabledException: Pool SOALocalTxDataSource is Suspended, cannot allocate resources to applications..
    Error Code: 0
    Call: SQLCall(UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?)
    Query: DataModifyQuery()
      at oracle.j2ee.ws.client.jaxws.DispatchImpl.throwJAXWSSoapFaultException(DispatchImpl.java:955)
      at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:750)
      at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:234)
      at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:105)
      at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:256)
      ... 72 more
    Regards,
    Kiran Kumar

    As answered by Punnet, your Datasource SOALocalTxDataSource on weblogic console is in suspended state.
    Login to weblogic console. go to datasources --> SOALocalTxDataSource  -->Control Tab --> Click Resume and try again.
    Regards,
    Karan

  • The merge process could not allocate memory for an operation; your system may be running low on virtual memory. Restart the Merge Agent.

    I encountered this problem on our SQL2012 and I have tried different scenarios (see below) to no avail. I have decided to give up and check if someone here has encountered this and resolved it. 
    One thing I know, it's not a memory issue. Both servers we're using has lots of memory to spare and we monitor the memory as the replication goes through it's steps. 
    I hope someone can help me on this. Thanks!
    The Error:
    The merge process could not allocate memory for an operation; your system may be running low on virtual memory. Restart the Merge Agent.
    Our Scenario
    We're using SQL Server 2012 SP1. All subscriptions are pull based.
    We're using direct Merge Replication (not FTP or web sync)
    We already have 10 active replications with larger databases. Only 1 has this issue.
    Database size is less than 5 GB
    Rebuilding the publisher is not an option.
    What have I tried?
    There is no memory problem --- we have lots to spare
    I have tried re-initialization of the database. Same problem.
    I tried deleting the database and reinitializing it. Same problem
    New snapshot. Same problem.
    I tried changing the subscriber server but still same issue. 
    MCP, MCSD, MCDBA (ANXA)

    Here is the result for the sp_configure on our subscriber. We're doing a pull on the server with the issue.
    name
    minimum
    maximum
    config_value
    run_value
    max server memory (MB)
    128
    2147483647
    2147483647
    2147483647
    In addition, I made a comparison between the working servers and the one with the issue -- there seems to be a difference in the service pack. Publisher has none but the subscriber is operating on SP1. But still strange as only 1 database is affected. 
    MCP, MCSD, MCDBA (ANXA)

  • The process could not execute 'sp_repldone/sp_replcounters' error for Log Reader Agent and SQL Server Assertion 17066 & 3624 errors in SQL Logs

    One of our SQL Server started creating SQLDUMP file and and on investigation I found the error longs are filled with Errors 3624 & 17066. There is transnational replication configured on one of the databases is the LogReader Agent is failing error "The
    process could not execute 'sp_repldone/sp_replcounters' on XXXXX". 
    Not sure if both these Assertion & Logreader Agent errors are related. Before I remove and put the replication, I wanted to check if anyone has experienced the same issues or aware of what the cause. 
    ***********Error messages from SQL Logs******
    **Dump thread - spid = 0, EC = 0x0000000111534460
    Message
    A system assertion check has failed. Check the SQL Server error log for details. Typically, an assertion failure is caused by a software bug or data corruption. To check for database corruption, consider running DBCC CHECKDB. If you agreed to send dumps to
    Microsoft during setup, a mini dump will be sent to Microsoft. An update might be available from Microsoft in the latest Service Pack or in a QFE from Technical Support.
    Error: 3624, Severity: 20, State: 1.
    SQL Server Assertion: File: <logscan.cpp>, line=2123 Failed Assertion = 'UtilDbccIsInsideDbcc () || (m_ProxyLogMgr->GetPru ()->GetStartupState () < RecoveryUnit::Recovered)'. This error may be timing-related. If the error persists after rerunning
    the statement, use DBCC CHECKDB to check the database for structural integrity, or restart the server to ensure in-memory data structures are not corrupted.
    Error: 17066, Severity: 16, State: 1.
    External dump process return code 0x20000001.
    External dump process returned no errors.
    Thank you in advance.

    You need to determine if this error is a transient one or a show stopper one.
    It sounds like your log reader agent has crashed and can't continue.
    If so your best bet is to call Microsoft CSS and open a support incident.
    It also sounds like DBCC CHECKDB was running while the log reader agent crashed.
    If you need to get up and running again run sp_replrestart, but then you might find that replicated commands are not picked up. You will need to run a validation to determine if you need to reinitialize the entire publication or a single article.
    I have run into errors like this, but they tend to be transient, ie the log reader agent crashes, and on restart it works fine.
    looking for a book on SQL Server 2008 Administration?
    http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search?
    http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941

  • Hello dps team,  A few weeks ago we renewed our dps licence. Now we want to release our newest issue but we can't. Following error message appears "At the attempt to release the folio creates an error. The process could not be started. Please try again la

    Hello dps team,
    A few weeks ago we renewed our dps licence. Now we want to release our newest issue but we can't. Following error message appears "At the attempt to release the folio creates an error. The process could not be started. Please try again later."
    Is there a problem with our dps version or any maintenance work at the servers from Adobe?
    Best,
    Oliver

    Hi Oliver,
    Please login to your DPS dashboard and contact support by clicking "Contact support" at the bottom left
    Thanks
    Lohrii

  • Hierarchies Job Failing  The job process could not communicate with the dat

    Hi Experts,
    We have a group of hierarchies that run as a separate job on the DS schedules. The problem is this when we schedule the job to run during the production loads it fails but when we run immediately after it fails it runs completely fine. So it basically means that if i run it manually it runs but when its scheduled to run with the production job it fails. Now the interesting thing is If i schedule the job to run anytime after or before the production jobs are done. It works fine.
    The error i get is
    The job process could not communicate with the data flow <XXXXXX> process. For details, see previously logged
                                                               error <50406>.
    Now this XXXXX DF has only Horizontal Flatenning and it does not run as separate process because if i have it has separate process it fails with an EOF . So i removed the run as separate process and changes the DF to use in memory .
    Any Suggestion on this problem...

    Thanks Mike.. I was hoping its a memory issue but the thing i don't understand is when the job is scheduled to run with the production job it fails. when i manually run the job during the production job it runs, this kinda baffles me.
    DS 3.2 (Verison 12.2.0.0)
    OS: GNU/LINUX
    DF Cache Setting :- In Memory
    processor       : 0
    vendor_id       : GenuineIntel
    cpu family      : 6
    model           : 26
    model name      : Intel(R) Xeon(R) CPU           X5670  @ 2.93GHz
    stepping        : 4
    cpu MHz         : 2933.437
    cache size      : 12288 KB
    fpu             : yes
    fpu_exception   : yes
    cpuid level     : 11
    wp              : yes
    flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc ida nonstop_tsc arat pni ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
    bogomips        : 5866.87
    clflush size    : 64
    cache_alignment : 64
    address sizes   : 40 bits physical, 48 bits virtual
    power management: [8]
    processor       : 1
    vendor_id       : GenuineIntel
    cpu family      : 6
    model           : 26
    model name      : Intel(R) Xeon(R) CPU           X5670  @ 2.93GHz
    stepping        : 4
    cpu MHz         : 2933.437
    cache size      : 12288 KB
    fpu             : yes
    fpu_exception   : yes
    cpuid level     : 11
    wp              : yes
    flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc ida nonstop_tsc arat pni ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm
    bogomips        : 5866.87
    clflush size    : 64
    cache_alignment : 64
    address sizes   : 40 bits physical, 48 bits virtual
    power management: [8]
    Thanks for your help

  • The State System message file processing could not process

    Hi
    We have Windows server 2008R2 SCCM 2012 R2 CU3 SQL 2008 R2.
    Every 15-19 minutes I got two errors in State messages ID6104 (The State System message file processing could not process file 'HI6DYYB8.SMX' and moved it to the corrupt directory. Review the statesys.log file for further details.), 6105 (The State System
    message file processing processed one or more files that contained errors or invalid data. Review the statesys.log file for further details.). It started on Monday.
    Also on server  in statesys.log
    SQL MESSAGE: spProcessStateReport - Record 1 failed processing with error -50010:
    SMS_STATE_SYSTEM 26.02.2015 07:11:30
    9880 (0x2698)
    CMessageProcessor - Non-fatal error while processing HI6DYYB8.SMX
    SMS_STATE_SYSTEM 26.02.2015 07:11:30
    9880 (0x2698)
    STATMSG: ID=6104 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_STATE_SYSTEM" SYS=server.fqdn SITE=MYSITE PID=3744 TID=9880 GMTDATE=ce feb 26 05:11:30.119 2015 ISTR0="HI6DYYB8.SMX" ISTR1="" ISTR2="" ISTR3=""
    ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    SMS_STATE_SYSTEM 26.02.2015 07:11:30
    9880 (0x2698)
    Thread "State Message Processing Thread #0" id:9880 was unable to process file "D:\SCCM_prog\inboxes\auth\statesys.box\process\HI6DYYB8.SMX", moving to corrupt directory.
    SMS_STATE_SYSTEM 26.02.2015 07:11:30
    9880 (0x2698)
    total chucks loaded (0) SMS_STATE_SYSTEM
    26.02.2015 07:11:30 9880 (0x2698)
    What could cause this messages to appear?

    That just indicates that a state message sent by a client was somehow corrupted. You can examine the .smx that was moved to the corrupt-box, but it's not unusual that it happens. 
    Torsten Meringer | http://www.mssccmfaq.de

Maybe you are looking for

  • How do I get events to show on a shared calendar?

    My roommate shared his calendar with me. I accepted BUT the events on his calendar do NOT show on my iPhone. I thought that was the point of sharing calendars. What do I need to do? IOS 7.01 Thanks, Van

  • Can't find driver for SB0

    Hello, I have an Audigy card (SB0230), and I can't find a driver for it. I tried few solutions, and here are what I done already: - I tried to install the newest driver from creative.com for Audigy board, but installer don't recognized my card and st

  • My operating system will not boot up and I have a black screen

    My laptop just went black as if it was in stnd by mode yet now will not boot up. It gets to the wirl of the fans and the cd drive turning but that is it. I m running the BIOS Test and nothing is showing up. the screen is black with a single dash flas

  • How do I get a HD video project to look good in SD?

    I have been trying to use Premier to produce videos for our church's kids programs since Christmas.  They look great until I burn them to DVD and then they look grainy or fuzzy.  Might as well use an old SD camera.  I just started searching the forum

  • Convert sql mysql to oracle

    It is possible to obtain result in ORACLE with this one sql of MYSQL SELECT DISTINCT EntidadID, NOMBRE, MATCH(NOMBRE, Acronimo) AGAINST ('text') As Score FROM oracle.DE_ENTIDAD WHERE MATCH(NOMBRE, Acronimo) AGAINST ('text') ORDER BY Score DESC,NOMBRE