Rejected messages in CMWQ

Hi all
We receive a fairly steady stream of rejected messages in CMWQ but we have only just enabled the functionality to see the further details.
We get a regular message with the text shown below.
Can anyone give any insights into what causes this:
ExecuteNonQuery erfordert eine ge?ffnete und verf?gbare Verbindung. Der aktuelle Status der Verbindung ist 'Geschlossen'.
   bei System.Data.SqlClient.SqlConnection.GetOpenConnection(String method)
   bei System.Data.SqlClient.SqlConnection.ValidateConnectionForExecute(String method, SqlCommand command)
   bei System.Data.SqlClient.SqlCommand.ValidateCommand(String method, Boolean async)
   bei System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
   bei System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
   bei MWImport.DBHandler.ExecNonQuery(StringBuilder& QueryList)
   bei MWImport.QInDataImport.ProcessXmlMessage(XmlTextReader& oMsgRdr, MessageType MsgType)
   bei MWImport.QInDataImport.ReceiveCurrentMessage(String& QBlockerName)
We use MSA 5.0 SP11 and have note 1071267 implemented on every client
Thanks very much
James

For this particular site the BDoc is CAPGEN_OBJECT_WRITE but I believe I have seen it for others also
Could that be important?

Similar Messages

  • Exchange 2013 - The Microsoft Exchange Transport service is rejecting message submissions because the service continues to consume more memory than the configured threshold

    Noticed at about noon that no emails had been received all day. Began to investigate and found that the MS Exchange Transport service had been set to deny email submission because it was using too much memory on the server (91%). 
    The error message makes me think that we may have been getting used by malware or something similar.“The Microsoft Exchange Transport service is rejecting message submissions because the service continues to consume more memory than the
    configured threshold.” 
    There are also several warning messages that list particular IP addresses and say that a connection from that IP was denied because there were already the maximum number of connections (20). 
    From what I can tell, all of the IP addresses are from Taiwan. 
    The time period for which some emails may be missing is from close of business yesterday ( 4/3/2014) through about 12:45 today (4/4/2014). 
    From the time I spent reading and trying to figure out the error, I think we may need to readjust our throttling policies to prevent this from happening. 
    The exchange server is currently running at 90%+ CPU and 50%+ memory usage the majority of the time, and I’m not sure how to fix it.
    Also, I cannot get into EMS I get a access denied message from the destination computer. (Exchange server) I want to get into there to change the throttling policy back to default, since we disabled it.
    The Error reads:
    The WinRM client cannot process the request. The WinRM client tried to use Kerberos authentication mechanism, but the destination computer <Exchange> returned an 'access denied' error. Change the configuration to allow Kerberos authentication
    mechanism to be used or specify one of the authentication mechanism supported by the server. (How do I do this?) To use Kerberos, specify the local computer name as the remote destination. (I'm trying to use EMS while logged into the local Exchange server)
    Also verify that the client computer and the destination computer are joined to a domain. (Exchange is on our domain, and the computer trying to connect is the same computer) To use basic, specify the local computer name as the remote destination, specify
    Basic authentication and provide user mane and password. Possible authentication mechanisms reported by server.
    At line:1 char:1
    + New-PSSession -ConnectionURI "$connectionUri" -ConfigurationName Microsoft.Excha ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New-PSSession], PSRemotingTransportException + FullyQualifiedErrorId : AccessDenied,PSSessionOpenFailed
    I assumed control of this exchange system already in place and I do not have much experience with exchange 2013 or server 2012. I do know 2008, but that doesn't help very much in this situation.
    Recent changes to the system:
    About three days ago we switch our sessions policy to allow many more connections, and I believe this caused the issue. This is what I changed it to:
    Made the registry DWORD (32-bit) "Maximum Allowed Sessions Per User" and modified the value to 1000. Location of registry change @ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem
    I just changed it to 10 from the 1000. I'm hoping this solves this. So far no.
    Also, I am not the best in the shell or command line interfaces. Any help would be wonderful!

    Hi,
    Yes, could be hardware performance issue. Try recycle the Transport process and see if the issue persists.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Fault name for Rejection Messages in Fault policy.

    Hi ,
    I am trying to do my fault handling for Rejected messages .I am bit confused what is the fault name i should specify for rejection messages .
    Say for BPEL , We have bpelx:binding fault etc for BPEL ..
    <faultName xmlns:rjm="http://schemas.oracle.com/sca/rejectedmessages" name="rjm:[?????????????] ">
    <condition>
    <action ref="writeToFile"/>
    </condition>
    </faultName>
    </Conditions>
    Regards ,
    Naga

    It should be the "service name" for the inbound adapter in the composite. Here is the doc link which explains this: http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10231/life_cycle.htm#TKADP187.
    regards,
    Sandeep

  • How to handle rejected messages in file adapter

    Hi....! every one.........
    in file adapter read operation it will pick the files even the file contains unstructure message but that file wont be processed.
    where the rejected message goes.
    i have requirement like that rejected message i have to store in another file
    please provide me answer..........

    Hi,
    You can add the parameter 'PhysicalErrorArchiveDirectory' in the JCA file (of the File Adapter).
    Put there the required directory where you want the rejected file to be sent.
    You can add this property in 2 ways:
    1. In your JDeveloper open the JCA file and add: <property name="PhysicalErrorArchiveDirectory" value="/../.."/>
    2. In EM, right click the composite->Service/Reference Properties->Choose your file->On the Properties tab press Add-> Choose 'PhysicalErrorArchiveDirectory' and put the directory-> press Apply.
    Arik

  • How to store the rejected messages in bpel using file adapter

    Hi all,
    I am using the file adpter to read the text file.In file some bad messages are there.
    now i can read the correct data.but i can't view rejected messages.
    if im not using "rejectedmessagehandler" , but it is stored in default directory.
    In my application,correct messages are reading but bad messages are not stored in default directory.
    pls can you help on that rejected messages store

    Hi
    You have to define rejectedMessageHandlers in activation agent part of ur fileadpater in bpel.xml.
    ex:
    *<activationAgent*
    className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent"
    partnerLink="UrPartnerLinkName">
    *<property name="rejectedMessageHandlers">*
    file://YourFolderStructure (Where you want to save your rejected messages... Only folder structure)
    *</property>*
    *</activationAgent>*
    If u have any rejected messages those will be written to a file named as INVALID_MSG_ + process-name + operation-name + current-time in the above structure
    Regards
    PavanKumar.M

  • File Rejected Message Handler in ESB

    Hi All
    I have installed Oracle SOA Suite 10.1.3.1 + 10.1.3.4 patch-set + MLR#5 on 3 servers:
    1) Unix server A
    2) Unix server B
    3) Windows XP server
    I have developed an ESB which is polling a file from an FTP in a particular XML Schema.
    I have also set "rejectedMessageHandlers" in ESB FTP adapter's .esbsvc file.
    So its set to rejectedMessageHandlers=/server/dhami/files/rejected on UNIX server A and B AND
    rejectedMessageHandlers=file://C:/oracle/Files/error/esbHandler in Windows XP server.
    Now when i provide a wrong XML file as input, say myXMLInput.xml it is rejected.
    Issue is that in Unix Server A and Windows XP server, rejected file name comes as myXMLInput.xml,,
    but on Unix Server B it comes as INVALID_MSG_********20090607_090132_0806.dat
    Can anybody know the reason of that difference in behaviour? All the 3 environments are at same level.
    Please Help.
    Thanks
    -- Inder

    Hey guys, issue was that UNIX Server B was on MLR#5 patch level but dont know how it was rolled back to MLR#1.
    So the issue resolution is that UNIX Server B too should be upgraded to MLR#5.
    Then the rejected message files will come in as myXMLInput.xml and not as INVALID_MSG_********20090607_090132_0806.dat
    Thx

  • MQ Adapter does not clear the rejected message from the queue

    Hi All,
    I'm using a MQ Adapter to fetch the message from the queue without any Backout queue configured. However, whenever there is any bad structured message found in the queue, MQ adapter rejects the message and moves the message to the rejmsg folder but does not clear it off the queue, as a result of which it keeps retrying the same hence, filling the logs and the physical memory. Somehow we do not have any backout queue configured so I can move the message to blackout queue. I have tried configuring the jca retry properties and global jca retry as well but to no avail.
    - Is it not the default behaviour of MQ Adapter to remove the rejected message from the queue irrespective of Backout queue is configured or not? The same behaviour working well with the JMS and File Adapter though.
    - Is there any way I can make MQ Adapter delete the message from that queue once it is rejected?
    Regards,
    Neeraj Sehgal

    Hi Jayson,
    Check this URL which answers a problem with com.sap.engine.boot.loader.ResourceMultiParentClassLoader problem:
    http://209.85.175.132/search?q=cache:RnFZ9viwuKkJ:https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.sdn.folder.sdn!2fcom.sap.sdn.folder.application!2fcom.sap.sdn.folder.roles!2fcom.sap.sdn.folder.navigationroles!2fcom.sap.sdn.role.anonymous!2fcom.sap.sdn.tln.workset.forums!2fforumtest!2fcom.sap.sdn.app.iview.forumthread%3FQuickLink%3Dthread%26tstart%3D45%26threadID%3D1020700+com.sap.engine.boot.loader.ResourceMultiParentClassLoader&hl=en&ct=clnk&cd=3&gl=in&client=firefox-a
    Please check that the JDK compliance level is at 5.0
    Window->Preferences->Java->Compiler->Compiler compliance level set this to 5.0
    Set the installed JRE to the one you have mentioned JDK 5.0 update 16
    Window->Preferences->Java->Installed JRE's->
    Click on the add button to select the path of your JDK.
    once completed click on the check box next to it.
    regards,
    AKD

  • TS2755 Hi All - I sent a text using my iphone 5 - It is PAYG and had no money in it. It tried to send as an SMS but gave the 'green button reject message'. After deleting the convo, the phone keeps trying to send the deleted text via SMS and wont stop not

    Hi All - I sent an sms using my iphone 5 - It is PAYG and had no money in it. (stupidly)
    It tried to send as an SMS but gave the 'green button reject message'.(no money)
    Step 2 in this stupidity - the phone keeps trying to send the deleted text via SMS and wont stop notifying me of this. Totally ruining the functionallity of my phone, and more so totally annoying. All I want to do is stop the constant re-trying of sending the deleted SMS.
    Any ideas?
    Many Thanks!

    Hi, many thanks for your help - Pressing and holding sleep/reset hasn't worked, the msg is still continually reporting it is failing to send. I can restore to a previous version however I'll lose my paid apps. Is there any way to work around this. I'm only concerned about one app - Epocam HD which I purchased last month. My last backup on PC is 4 March 13 - before I bought the paid app - Itunes advises me I'll have to re-pay to get my apps (app) back. Even though it advises that icloud backed up this morning at 1:30 am (which although it is before the text, I cannot manually select this restore).
    What a mess!

  • Can Rejected Messages to put back in the AQ?

    Hi,
    I am using version 10.1.3.3.
    I am trying to figure out a way to put rejected messages back in on the AQ. I have looked at the AQMessagesRejectionHandler sample. The sample contains the following code in the bpel.xml file:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <BPELSuitcase>
    - <BPELProcess id="AQMessageRejectionHandler" src="AQMessageRejectionHandler.bpel">
    - <partnerLinkBindings>
    - <partnerLinkBinding name="Dequeue">
    <property name="wsdlLocation">Dequeue.wsdl</property>
    </partnerLinkBinding>
    - <partnerLinkBinding name="Enqueue">
    <property name="wsdlLocation">Enqueue.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    - <activationAgents>
    - <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="Dequeue">
    <property name="portType">Dequeue_ptt</property>
    <property name="rejectedMessageHandlers">file://C:\product\10.1.3.1\OraBPEL\bpel/samples/tutorials/124.AQAdapter/AQMessageRejectionHandler/rejected queue://jdbc:oracle:thin:@localhost:1521:iasdb|scott/tiger|Rejected_Messages</property>
    </activationAgent>
    </activationAgents>
    </BPELProcess>
    </BPELSuitcase>
    In the Oracle® Adapters for Files, FTP, Databases, and Enterprise Messaging User’s Guide (10g Release 2 (10.1.2.)) I found the following documentation:
    <BPELSuitcase>
    <BPELProcess src="ErrorTest.bpel" id="ErrorTest">
    <activationAgents>
    <activationAgent
    className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent"
    partnerLink="inboundPL">
    <property name="rejectedMessageHandlers">
    file://C:/orabpel/samples/test/errorTest/rejectedMessages
    </property>
    My question is regarding the function of the line (in the sample):
    queue://jdbc:oracle:thin:@localhost:1521:iasdb|scott/tiger|Rejected_Messages
    Does this put the messages back on the AQ?
    If so, how do I change the path to my own queue?
    I am new to BPEL so please be as specific as possible.
    Thank you in advance

    Hi,
    Thank you for the response.
    Yes, you are right.
    My problem was one of using correct syntax.
    This is what I ended up with:
    <activationAgents>
    <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="BusinessEventService">
    <property name="portType">Consume_Message_ptt</property>
    <property name="rejectedMessageHandlers">queue://jdbc:oracle:thin:@localhost:1521:iasdb|scott/tiger|Rejected_Messages</property>
    </activationAgent>
    </activationAgents>
    It seems to be working.

  • Rejected Message in BPEL

    Hi
    Normally, when any file is rejected in BPEL, the file is sent to rejected message folder in JCA. Is there any size limit to this JCA folder?
    I am working on a process, till yesterday the messages were getting rejected correctlyand were going to this folder. But I am not able to somehow get this going today.
    Can anyone suggest anything?
    Regards,
    Ketan

    Hi,
    I got the following answer from Metalink / BPEL Software Enginneering:
    "+The issue is not related with the JMSRedelivered flag. Actually that is the out of box behavior of the adapter in 10.1.3.4 and beyond. When a PCResourceException is encountered that will in turn result in the rollback of global transaction. Adapter will make a note of the message id in this case. Because of the rollback the dequeue will not get committed and message gets rolled back to the source queue. On the subsequent dequeue of the same message adapter will in turn reject the message and the message is handled by the rejection handler. So what you are seeing is the correct behavior of the adapter.+"
    So this behavior that I'm experiencing is NOT related to JMSRedelivered header but to the message id,
    and this is working as designed - unfortunately.
    Regards
    Christian

  • Rejection Message not flowing back to MM

    Hi,
    If a supplier rejects a PO in SRM(SUS), then the rejection message is not flowing back to MM (from where the PO is sent), as to why the supplier rejected the PO.
    Please help.
    Regards,
    Manu

    Hi,
    What you mentioned is not a supported feature by default.
    Please read OSS note 761150 for enabling.
    Regards.

  • Create Transport rule for restrict message size and send a rejected message CC: to Administrator

    I want to create a Exchange Transport rule for message size restriction (10 MB) when message size is exceed to 10 MB it rejected by the Exchange server and
    also rejected message CC: to Administrator. I also create it but unable to configure rejected message CC: to Administrator. Thanks.
    Babu

    Hi Babu,
    I have some tests in my environment using Exchange 2013, you can create a transport rule such as follows to achieve your goal.
    Hope this can be helpful to you.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact 
    [email protected]
    Amy Wang
    TechNet Community Support

  • Did anyone tried Rejection Message Handler via Queue based method?

    Dear All,
    I am presently doing a Rejected Message Handler process and successfully implemented with File based and Web Service based. But I am not getting the clue for Queue based. We can enqueue the rejected message into queue as a JMS message via this method. But the URI format they have given is *"jdbc:oracle:thin:@<host>:<port>:<sid>#<un>/<pw>#queue"*. Format includes jdbc connection string along with queue name. For this I have created JMS module with JDBC Persistent store and created queue in it. But still I am not able to enqueue the message inside the queue. Also, is there anyway to see the queue names inside the DB. Did anyone tried this method? Could you please share the info??

    WL JMS Queue consume>BPEL1 (One way) invoke>Mediator service (one way) route> BPLE2 (one way). Also I have added transaction properties in BPEL1 and 2 + References + Services.
    Now, if there is a fault in BPEL2 the transaction should be rolled back in BPEL1 and the message should be seen in the WL queue itself. But that is not happening in my case. Everything is getting rolled back upto a point just after the >recieve activity in BPEL1 except the message is not getting rolled back to queue.There will be 2 transactions in this scenario : 1) jms queue to soa hydration store 2) soa-hydration to bpel execution.
    This is the behaviour for 1 way or async interfaces , jms adapter thread completes its transaction work after persisitng to dehydration store and another bpel system thread starts work executing the bpel code after retrieving the message off the db in a separate transaction. So the rollback you are seeing is only applicable for 2nd transaction which roll backs to the dehydration store instead of the queue.
    For synchronous interfaces, the same adapter thread will be involved for complete message processing including bpel code execution. So I think if you want to get the jms queue within the same transaction you can try set up the interfaces to be sync, even with dummy responses. This might make jms adapter thread to start a transaction --> read message off queue within the same transaction --> execute bpel code within same transaction --> complete/rollback transaction based on bpel code execution.

  • Mail server rejected message: spam or virus detected (#5.3.0)

    Hi everybody,
    for the first time ever I got this funny message:
    mail server rejected message: spam or virus detected (#5.3.0)
    This happens now with e-mails containing a pdf which I a) have already sent before and b) created on the mac. Checked with another pdf just for testing - same effect. Any other documents work fine - just those pdfs don't work anymore.
    Any ideas?
    Thanks in advance,
    Bettina

    Bettina,
    There is the possibility of the MS Office and Word being infected (but not the Mac overall) with what are called micro-viri, and are cross-platform. Many AV filters will catch those. I am providing a link where some of us discussed this MS Office infection:
    http://discussions.apple.com/thread.jspa?messageID=2782109&#2782109
    Let us know what you find? See also:
    http://outlandishjosh.com/wp/index.php?p=861
    which you will see in that topic linked above.
    I have not confirmed the path you chose to create the PDF will transmit this virus, but this must be checked out, and is probably the source of the message you are getting.
    Ernie

  • Can't remove rejected messages

    In SOA 11g, I have a bunch of rejected error messages. It won't let me delete them. The instances that they are tied to are already deleted. Are these stored in a table?

    These messages should be stored inside REJECTED_MESSAGES table under dev_soainfra schema..
    You could use the FABRIC.DELETE_REJECTED_MESSAGES function to delete all the rejected messages based on the required criteria.
    DECLARE
    FILTER INSTANCE_FILTER := INSTANCE_FILTER();
    MAX_INSTANCES NUMBER;
    DELETED_INSTANCES NUMBER;
    BEGIN
    FILTER.COMPOSITE_PARTITION_NAME:='default';
    FILTER.COMPOSITE_NAME := 'OrderBookingComposite';
    FILTER.COMPOSITE_REVISION := '1.0';
    FILTER.MIN_CREATED_DATE := to_timestamp('2009-07-01','YYYY-MM-DD');
    FILTER.MAX_CREATED_DATE := to_timestamp('2009-08-24','YYYY-MM-DD');
    MAX_INSTANCES := 100;
    DELETED_INSTANCES := FABRIC.DELETE_REJECTED_MESSAGES(
    FILTER => NULL,
    MAX_INSTANCES => MAX_INSTANCES
    END;
    /

Maybe you are looking for

  • Monitor "no input signal"

    When I turn on the computer and the monitor, the monitor does not recognize a signal from the computer.  I have tried restarting the monitor and the computer, unplugging all cables including the power cables and reconnecting, I re-seated the graphics

  • MainStage 1.0.1 released

    via software update! MainStage 1.0.1 contains several updates, including: Improves stability Addresses minor usability issues Adds options for saving parameter values when switching patches This software is recommended for all users of MainStage 1.0.

  • Airport express confusion

    Hi I want to set up a simple wireless system and I think Airport Express will do. However, I note the following message: "CD with AirPort Utility (Mac and Windows), 802.11n Enabler (for Intel Core 2 Duo and Xeon-based Macintosh computers except 17-in

  • Can i replace social icons in the Muse CC 2014 social widget?

    I would like to replace the embedded social icons in the Muse Social Widget with some flat png icons I have. Can I?

  • Supported operating systems for Business One

    Hello, I was under the impression that Business One was a solution for smaller organizations and only was officially supported for the msft operating system. Can someone clarify/confirm if this is correct? There is a pdf on this SDN site that seems t