BEA-010061 + BEA-010096 JCaps queue set up via annotations

Hi,
I was trying to set up jcaps queue but unable to do so. Have created a wl jms queue and it works.Was trying to port over the configuration from the xmls to annotations.
Spec: WL v 10
xmls:
ejb.xml:
<message-driven>
<ejb-name>xxxBean</ejb-name>
<ejb-class>xxxClass</ejb-class>
<transaction-type>Bean</transaction-type>
<activation-config>
<activation-config-property>
<activation-config-property-name>destinationType</activation-config-property-name>
<activation-config-property-value>javax.jms.Queue</activation-config-property-value>
</activation-config-property>
</activation-config>
<resource-ref>
<res-ref-name>jms/SeebeyondFactory</res-ref-name>
<res-type>javax.jms.QueueConnectionFactory</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
<resource-ref>
<res-ref-name>jms/QCF</res-ref-name>
<res-type>javax.jms.QueueConnectionFactory</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
</message-driven>
weblogic.ejb.xml:
<weblogic-enterprise-bean>
<ejb-name>xxxBean</ejb-name>
<message-driven-descriptor>
<pool>
<max-beans-in-free-pool>1</max-beans-in-free-pool>
<initial-beans-in-free-pool>1</initial-beans-in-free-pool>
</pool>
<destination-jndi-name>SeeBeyond.Queues.TestQ</destination-jndi-name>
<connection-factory-jndi-name>SeeBeyond.QueueConnectionFactories.QueueConnectionFactory</connection-factory-jndi-name>
</message-driven-descriptor>
<resource-description>
<res-ref-name>jms/SeebeyondFactory</res-ref-name>
<jndi-name>SeeBeyond.QueueConnectionFactories.QueueConnectionFactory</jndi-name>
</resource-description>
<resource-description>
<res-ref-name>jms/QCF</res-ref-name>
<jndi-name>javax.jms.QueueConnectionFactory</jndi-name>
</resource-description>
</weblogic-enterprise-bean>
Code:
@MessageDriven(mappedName = "SeeBeyond.Queues.TestQ", activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(propertyName="connectionFactoryJndiName",propertyValue="SeeBeyond.QueueConnectionFactories.QueueConnectionFactory"),
@ActivationConfigProperty(propertyName="destinationJndiName", propertyValue="Queues.TestQ"),
@ActivationConfigProperty(propertyName="destinationName", propertyValue="Queues.TestQ")
Error:
<Oct 17, 2011 10:19:29 AM SGT> <Warning> <EJB> <BEA-010061> <The Message-Driven EJB:xxxMDB is unable to connect to the JMS destination: SeeBeyond.Queues.TestQ. The Error was:
weblogic.jms.common.InvalidDestinationException: [JMSClientExceptions:055142]Foreign destination, Queue[Queue.TestQ]>
<Oct 17, 2011 10:19:39 AM SGT> <Warning> <EJB> <BEA-010096> <The Message-Driven EJB: xxxMDB is unable to connect to the JMS destination or bind to JCA
resource adapter: SeeBeyond.Queues.TestQ. Connection failed after 2 attempts. The MDB will attempt to reconnect/rebind every 10 seconds.
This log message will repeat every 600 seconds until the condition clears.>
What should be the right annotation? Thanks.

Hi,
I was trying to set up jcaps queue but unable to do so. Have created a wl jms queue and it works.Was trying to port over the configuration from the xmls to annotations.
Spec: WL v 10
xmls:
ejb.xml:
<message-driven>
<ejb-name>xxxBean</ejb-name>
<ejb-class>xxxClass</ejb-class>
<transaction-type>Bean</transaction-type>
<activation-config>
<activation-config-property>
<activation-config-property-name>destinationType</activation-config-property-name>
<activation-config-property-value>javax.jms.Queue</activation-config-property-value>
</activation-config-property>
</activation-config>
<resource-ref>
<res-ref-name>jms/SeebeyondFactory</res-ref-name>
<res-type>javax.jms.QueueConnectionFactory</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
<resource-ref>
<res-ref-name>jms/QCF</res-ref-name>
<res-type>javax.jms.QueueConnectionFactory</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
</message-driven>
weblogic.ejb.xml:
<weblogic-enterprise-bean>
<ejb-name>xxxBean</ejb-name>
<message-driven-descriptor>
<pool>
<max-beans-in-free-pool>1</max-beans-in-free-pool>
<initial-beans-in-free-pool>1</initial-beans-in-free-pool>
</pool>
<destination-jndi-name>SeeBeyond.Queues.TestQ</destination-jndi-name>
<connection-factory-jndi-name>SeeBeyond.QueueConnectionFactories.QueueConnectionFactory</connection-factory-jndi-name>
</message-driven-descriptor>
<resource-description>
<res-ref-name>jms/SeebeyondFactory</res-ref-name>
<jndi-name>SeeBeyond.QueueConnectionFactories.QueueConnectionFactory</jndi-name>
</resource-description>
<resource-description>
<res-ref-name>jms/QCF</res-ref-name>
<jndi-name>javax.jms.QueueConnectionFactory</jndi-name>
</resource-description>
</weblogic-enterprise-bean>
Code:
@MessageDriven(mappedName = "SeeBeyond.Queues.TestQ", activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(propertyName="connectionFactoryJndiName",propertyValue="SeeBeyond.QueueConnectionFactories.QueueConnectionFactory"),
@ActivationConfigProperty(propertyName="destinationJndiName", propertyValue="Queues.TestQ"),
@ActivationConfigProperty(propertyName="destinationName", propertyValue="Queues.TestQ")
Error:
<Oct 17, 2011 10:19:29 AM SGT> <Warning> <EJB> <BEA-010061> <The Message-Driven EJB:xxxMDB is unable to connect to the JMS destination: SeeBeyond.Queues.TestQ. The Error was:
weblogic.jms.common.InvalidDestinationException: [JMSClientExceptions:055142]Foreign destination, Queue[Queue.TestQ]>
<Oct 17, 2011 10:19:39 AM SGT> <Warning> <EJB> <BEA-010096> <The Message-Driven EJB: xxxMDB is unable to connect to the JMS destination or bind to JCA
resource adapter: SeeBeyond.Queues.TestQ. Connection failed after 2 attempts. The MDB will attempt to reconnect/rebind every 10 seconds.
This log message will repeat every 600 seconds until the condition clears.>
What should be the right annotation? Thanks.

Similar Messages

  • BEA - 010061 InvalidDestinationException

    Environment:
              Sun Solaris
              BEA 8.1 SP2 (direct upgrade to SP2, never used SP1 on this machine)
              Websphere MQ 5.3
              Startup class defined MQConnectionFactory and MQQueue in JNDI, as per BEA white-paper.
              MDB references this queue and simply prints the message content to console.
              At Server Startup the startup class runs OK.
              When the MDB is deployed it reports the error below.
              <Jul 29, 2004 9:38:02 AM EDT> <Warning> <EJB> <BEA-010061> <The Message-DrivenEJB: OscarMessageReceiverBean is unable to connect to the JMS destination: OscarM
              QReceiverQueue. The Error was:
              [EJB:011010]The JMS destination with the JNDI name: OscarMQReceiverQueue could not be found. Please ensure that the JNDI name in the weblogic-ejb-jar.xml is cor
              rect, and the JMS destination has been deployed.>
              Native Queue works for get and put.
              JMS Queue access from outside the BEA environment works for get and put.
              Within the BEA managed-server the objects defined in JNDI are also OK, I know
              this because I changed the startup class to test the newly defined ConnectionFactory
              and Queue from BEA's JNDI tree to read the queue contents, which all worked fine.
              Exactly the same application and startup class worked fine with BEA 7.0 SP4 and MQ 5.3 - I copied the "start" script and classes from the old directory to the new one and have always had this problem.
              I have opened a ticket with BEA, but they are researching this. I have found quite a few hits on this error, all pertaining to weblogic-ejb-jar.xml, however I have modeled the documentation. I am not using Workshop.
              HELP!!!

    As Greg mentioned, one thing that might help is deferring start of the MDB. There is an application descriptor setting just for this purpose - see the 8.1 EJB MDB docs:
              start-mdbs-with-application
              http://edocs.bea.com/wls/docs81/ejb/message_beans.html#1162449
              Does the MDB eventually connect?
              Tom Barnes, BEA
              FYI: Very likely, the "startup" class method for integrating MDBs is no longer needed. This is due to new integration features built into 8.1 - which simplify things. There are some notes on the topic that I've posted fairly frequently to this newsgroup, search for "MQ+tom", and note that the EJB MDB docs now delve into this issue in detail:
              http://edocs.bea.com/wls/docs81/ejb/message_beans.html#1156059

  • After installing Endeca Extension Error BEA-000386 BEA-090402

    HI
    after installing Endeca Extensions according with note
    Installing Oracle E-Business Suite Extensions for Oracle Endeca, Release 12.1 V5 (Doc ID 1683053.1)
    Option 5 Studio Managed Server
    from startAllEndeca.sh fails
    with error BEA-000386 BEA-090402
    I 've modified 3 files boot.properties 
    /u01/Oracle/Middleware/user_projects/domains/endeca_domain
    specifying username=endeca and password=welcome123
    but it's stail failing with same error.
    Any idea?
    Anything else that must be changed?
    Thanks in advance
    Laura

    Hi Laura,
    This forum is dedicated to Oracle Endeca Commerce.  Please see the following post regarding the correct forum for Oracle Endeca Information Discovery questions.  It looks like it was mistakenly moved here by another member Oracle since the products shared the same "Endeca" term.
    https://community.oracle.com/message/12877494#12877494
    Thanks,
    Alex

  • Update particular elements in a queue/set

    Hi, what is the most efficient (in terms of speed, and also memory cost) to update an object in a Queue/Set?
    Suppose I have a Word class:
    public class Word{
        String word;
        int frequencyInText;
    }And I want to keep Word objects in a Queue/Set. Then whenever a new Word is added to the Queue/Set, if it already exists, i want to increase the word's frequency by 1. However Queue/Set do not have a method to retrieve a particular object, in this case, this particular object is the word that already contained by the Queue/Set
    I can simply iterate through every element in the Queue/Set, and check if the element equals the duplicate one. if so, modify that object. But this sounds a very heavy process when the Queue/Set is very large, also when the evaluation of equality is complex.
    I dont want to use Map to keep <word, frequency> because I want words sorted according to frequency (the "value" field). Also, the collection is updated and queried every now and then. Using Map instead would be more expensive, i suppose.
    Is there better ways to do this? thanks very much!

    Thanks. My Word class already implements comparable.
    Words are comparable on frequency (occurances in a
    text), and are equal if the word Strings are equal.Also, ensure you overwrite equals() and hashCode() methods correctly and verify your compareTo() also works as expected.
    by calling add(o); so I assume, to update a
    particular object, I still have to iterate through
    all elements in the TreeSet. And this gives me O(log
    n)? Please correct me if im wrong, and thanks veryI think your analysis is correct. Unless you are storing the refs of objects externally too and updating the num occurences through them does not alter the contract for equals()/hashCode(), to update, you will have to first remove(o) and then add(o) in the TreeSet. These are log(N) operation.
    Choosing a Hashtable based data structure is advisable for such dictionary operation as it gives you O(1) mostly ... pls re-look at your strategy for using Set.
    -BJ

  • IPod touch failed set-up via USB - please help?

    NB - this is not related to my Mac computer. I am connecting an iPod touch 4th generation to a Windows machine running XP (SP3).
    The iPod is new and I can't get it to set up via USB connection to computer running iTunes (I have mobile broadband, and it isn't a wireless connection). I have tried the minimum, older version of iTunes and the most up-to-date version.
    On connection, both the iPod and iTunes acknowledge each other and the iPod charges. It says "connected to iTunes", but does nothing further. Once the screen saver blanks the screen, it simply shows "connect to iTunes" again, clearly part of the set-up process, when I re-activate the screen.
    In iTunes, the iPod Touch comes up under "Devices" at the left-hand side of the iTunes display, but I can't click on it to reveal anything about the iPod - nothing happens. At the same time, a progress bar appears at the tope of hte window saying, "accessing iTunes store" (I'm assuming this must be part of the set-up process?!), but it never completes. Sometimes, I get an error message telling me I have no active internet connection (the connection IS active, but I have also emailed my service provider in case this is relevent), but mostly it just hangs - in short, I can't do anything.
    I can't tell you which version of the iOS the iPod is running, because - you've guessed it - it will only run its set-up procedure, and that's not completing, so I can't find out anything about it...
    So disappointed, and very dispirited after spending days on this and getting nowhere. Apple has not responded to a service request thus far.
    Desperate to get this sorted out, because the whole point of finally getting an iPod (which everyone told me would be so simple to set up and use) is because I'm doing a really big charity walk in a couple of weeks - that, and the training walks, are really long (next one, tomorrow, is seven hours), and doing them without music is soul-destroying.
    If you can help, I'd be grateful beyond words.
    Thanks for reading,
    Sheri.

    Why do Apple not respond to correctly initiated support requests?
    This is taking weeks to fix on my own - that is *crazy* in this day and age. Here is an update. Sorry it's long, but it's in case it helps anyone else. I tried *everything*.
    What did it in the end was a tiny - REALLY tiny - thing, but I suspect it wouldn't have worked if not in combination with several other things.
    It's a setting in internet explorer, which I use rarely if ever, but a friend (i.e. a stroke of luck that he was around) pointed out that iTunes uses it in the background to work properly, and it's a security setting in the "Advanced" tab of the "Internet options" bit of IE. You need to UNtick the box for "Check server's certificate revocation". Which suggests that, before doing this, iTunes was going into an endless loop of checking. Not sure about that, but anyway - it worked in terms of getting the oPod recognised and set up (but see later in the post for the current situation). BUT... before that, I'd had to:-
    1. via my firewall, open two ports (80 and 443) needed by iTunes (I think this was key as well, actually - why on earth doesn't this sort of support come with the kit?)
    2. uninstall latest iTunes and revert to a previous version (may or may not have been necessary, but seemed logical especially as the iPod's iOS wouldn't be up-to-date) - that needed doing twice, as the first version I tried was *too* early for a 4th generation touch
    3. flush the resolver cache several times, and various other command-line actions
    4. try all connecting and communicating in different orders (e.g. trying to authenticate iTunes *first*, before connecting iPod) - but now I've seen the set-up process once through in its entirety, it's become *so* obvious that none of that was working, so it's partly my inexperience with iPods which made it take so long to find the solution
    5. try to set it up via the iTunes website instead (fail!)
    6. test secure site (https) access and inputting various server addresses to see if my firewall or mobile broadband provider was blocking them
    7. attempt connection with various parts of virus protection and firewall disabled, and even disable the entire firewall
    Not to mention endless emails and discussion forum contributions, reading and tweaking, all the re-boots...
    CURRENT SITUATION
    Lots of aspects working, but as soon as I ask the iPod to do anything internet related (use Safari, access App Store, etc - or even just sign in), it returns the message, "Cannot connect to iTunes store" - despite being connected by a cable to a computer which IS connected to the internet and IS running iTunes, IS accessing the store, HAS synced with and updated the iPod...
    Absolutely NOTHING in Apple "support" discussions/documents makes any difference, and is almost exclusively aimed at those connecting wirelessly anyway (so lots of stuff about routers, DNS settings, etc.); wireless is not an option oopen to me.
    Unbelievable.
    Any suggestions which don't just point me to an Apple support document would be very welcome, because I think I have read them all...

  • [svn:fx-trunk] 9290: A skin would almost always be reloaded when setting it via skinFactory when a style invalidation occurs .

    Revision: 9290
    Author:   [email protected]
    Date:     2009-08-13 16:41:54 -0700 (Thu, 13 Aug 2009)
    Log Message:
    A skin would almost always be reloaded when setting it via skinFactory when a style invalidation occurs.  skinFactory was being smart about ClassFactories, but since Design View was the only one using this API (as it's undocumented and officially unsupported), the ClassFactory case wasn't helping them much.  Because of this, now we only recreate the skin when the skinFactory style has been explicitly set as per design view's request.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Glenn
    Tests run: checkintests, mustella SkinnableComponent, SkinnableContainer
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableCom ponent.as

    Perre wrote:I'm used to being able to pick one or a couple of songs and then adding it a specified playlist. Is this impossible in sonata?
    It's clearly not impossible, just different than you expect. Create your playlist as you want it to appear in the Current tab (meaning don't dump every single song from your library in there, just the ones you want) and then save the playlist.
    Perre wrote:And if I try to play the m3u file created (the one with every song listed) through freevo I get a message that the directory is empty. What am I doing wrong??
    Look at save_absolute_paths_in_playlists in your mpd.conf.

  • WebLogicServer BEA-000337 ExecuteThread: '11' for queue: 'weblogic.kernel.Default' has been busy for "698" seconds working on the request

    Hi,
    When I invoke this JSP, the servlet gets the request and sends a reply, but the
    JSP never finishes. The connection isn't dropped, the browser icon keeps spinning,
    as if it is still trying to load the page. But nothing ever happens. After more
    than 10 minutes or more I get a message in the stdout of weblogic server saying
    something about a stuck thread.
    Note: The JSP sends an SQL statement to Servlet, which in turn calls a DAO class
    to execute the sql and return the result back to Servlet. i m using Weblogic 8.1
    Please help me as it is very urgent. Production Problem. It occurs randomly.

    Hi,
    It looks like you have an AXIS webservice based Application deployed on the Server which has the following Method: com.test.ws.Stub.getInfo(ClientStub.java:813) the call to that method is happening over HTTPS protocol. getInfo() method might be trying to read a Large amount of Information from some sources which may be taking more than 600 Seconds. 600 Seconds is the Default Duration for WebLogic Threads after which the WebLogic Marks those Threads as Stuck Thread.
    So we need to debug the data which is being fetch by the Application code at the following line com.test.ws.Stub.getInfo(ClientStub.java:813)...It might be possible that sometimes while execution of the above method it might be processing or asking for a Large amount of Data which is more than the Configured Thread Timeout period.
    As well as it looks like the Above code is trying to get some data from a remote Server/JVM beacuse it is getting stuck while reading Data from a Socket:
    java.net.SocketInputStream.socketRead0(Native Method)
    java.net.SocketInputStream.read(SocketInputStream.java:129)
    So u need to check the Other end also from where the code is actually trying to get the Information or Data ....*com.test.ws.Stub.getInfo(ClientStub.java:813)*
    Developers can easily findout what the "ClientStub.java" classes method getInfo() is actually doing.
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic/?page_id=2261  (Middleware Magic Is Here)

  • Weblogic server failed to start errors BEA-000362 & BEA-000365

    Hi Friends,
    I'm trying to start weblogic server after starting admin server.I'm getting the below error after
    running the command:
    $ ./startManagedWebLogic.sh
    <Jul 29, 2011 10:09:54 AM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Jul 29, 2011 10:09:55 AM IST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Jul 29, 2011 10:09:57 AM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.1.3-11-141760-1.6.0_24-20110301-1430-linux-ia32 from Oracle Corporation>
    <Jul 29, 2011 10:09:58 AM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <Jul 29, 2011 10:09:58 AM IST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.management.ManagementException: [Management:141247]The configuration directory /Middleware/SOASuite11gR1/wlserver_10.3/common/bin/config does not exist and the admin server is not available.
    at weblogic.management.provider.internal.RuntimeAccessImpl.parseNewStyleConfig(RuntimeAccessImpl.java:200)
    at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:115)
    at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:42)
    at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461)
    at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
    at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:882)
    at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:572)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:469)
    at weblogic.Server.main(Server.java:71)
    >
    <Jul 29, 2011 10:09:58 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Jul 29, 2011 10:09:58 AM IST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Jul 29, 2011 10:09:58 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    Do you have any idea how to resolve this error and start weblogic server succesfuly.
    Best regards,
    Edited by: user13311731 on Jul 28, 2011 10:45 PM

    Hi,
    Try starting the managed server with parameters:
    ./startManagedWebLogic.sh myManagedServerName http://serverName:7001
    Does that make a difference?
    Regards Peter

  • Inbound-Queue - Set Queue To Retry via Coding

    Hello Experts,
    I am just implementing a MEP-Scenario and facing a problem in timing.
    Because of Missing Data delivered via RFC from other system i need to set an inbound-queue (R3AD...) to waiting and retry.
    Is it possible to do this via coding?
    When I fire an error message (type EAX) the queue gets in status "SYSFAIL" - but in this case it will not automatically retry again.
    Any hints are appreciated.
    Thanks
    Mario

    Hi ,
    You can deregister the inbound queue R3AD* from SMQR tcode and the other way is You can write a program to start the inbound queue processing which has a status 'SYS-FAIL'.
    Thank you,
    Gangadhar.S

  • AE appends my filename when setting up a render queue output filename via scripting

    I wrote a script that imports quicktimes and creates comps from them and adds them to the render queue. I'm running into an issue where files with certain names get appended when adding them to the queue. I believe it has something to do with the "." in the name. For example a quicktime named "filename_v25.140504.mov" is used to create a comp named "filename_v25.140504_test_01". This comp is then add to the render queue using the script below.
    var myRQItem = proj.renderQueue.items.add(renderComp);
    var myFile = new File(renderLocation.toString() + "/" + renderComp.name);
    myRQItem.outputModules[1].file = myFile;
    The filename it becomes "filename_v25.mov". It appears to be stripping everything after the last ".". This becomes a problem when I have several comps with names like: "filename_v25.140504_test_01", "filename_v25.140504_test_02", "filename_v25.140504_test_03" etc... since they all get added as "filename_v25.mov".
    Has anyone ran into this issue? Any solutions? Thanks!
    BTW I'm using CC on a mac running 10.9

    I haven't run into that particular issue, but what code are you using to create the comp based on the QuickTime file?  Can you replace the "." with a "_" when the comp is created?  If you can get ahold of the file name as a string, you could split it on the "." character then join the returned array with the "_" character. 
    --Arie

  • Egress queueing - priority-queues and queue-sets

    If I use the priority-queue out command on an interface 3750 does this treat queue1 as the priority queue?
    How can I tell which traffic is sent to each queue by default? Or do I have to specifically define it such as
    mls qos srr-queue output dscp-map queue 1 threshold 3 40 41 42 43 44 45 46 47
    I really want dscp 40-47 to go priority and the rest to be spread evenly across the other 3 queues as the vast majority of the rest of the traffic will be 0. Is there a command that lets the other 3 queues be best effort?
    Also, is this an OK config to use with priority-queueing? I don't actually want a large amount of bandwidth for the priority traffic, just for it to be expidited.
    Queueset: 2
    Queue : 1 2 3 4
    buffers : 10 30 30 30
    threshold1: 100 200 100 100
    threshold2: 100 200 100 100
    reserved : 50 50 50 50
    maximum : 400 400 400 400
    Any help very gratefully received.
    Thanks, J

    Sorry, just bouncing this to see if anyone around today can help :)

  • 3750 - mls qos queue-set output threshold

    In the IOS command, http://www.cisco.com/en/US/docs/switches/lan/catalyst3750/software/release/12.2_44_se/command/reference/cli1.html#wp2144505. The drop-threshold1 and 2 is in the range from 1 3200%. Can somebody elaborate on the 3200%. How do they determine that number and what that number means to my threshold? Thanks

    The drop threshold should be lower than the shutdown threshold (if configured) and should be based on the maximum
    amount of PDUs you expect to receive on a port and on the CPU utilization during peaks hours. These values usually determine what is a normal peak condition and therefore what could be an abnormal peak condition. Then you can set the threshold between the two to avoid excessive spikes of PDUs on a port

  • Two new iPod touches: one set up via wi-fi the other will only connect to iTunes on a computer to set up. Does the 2nd have the old iOS?

    Two touches for kids for Christmas. White one set up in about 5 minutes out of the box using our home wi-fi. Turned on the black one and it only shows an icon to connect it to the computer and iTunes to set it up. This is a problem since we don't have our laptop available right now. I'm disappointed because I had read so much about this new iOS 5 and the ease of set up without the computer. Does this mean that our black iPod touch does not have iOS 5? If I plug it into iTunes later will it look and act the same as the white one ?

    Susan, the OP(original poster) can't access the iPod to check the verson.
    For the OP, I would assume that it does not have iOS 5.  Sorry.

  • HP Laserjet 5MP - help to set up via USB please

    I have my trusty workhouse, the HP Laserjet 5MP that I want to continue to use with 10.6
    Have just bought a parallel to USB cable, my system sees the cable, but I cannot get the printer to work - any idea on how to get it working.
    I have seen recommendations to connect via ethernet, but for some reason I haven't clue how to find or set up an IP address for the printer.

    See Mac OS X- About printing with a USB-to-parallel cable for potential problems using these cables with some printers and drivers.
    To use an Ethernet setup the printer must have a TCP/IP card installed - Jet Direct for that model. If there is such a card installed then there will be an active Ethernet port on the rear of the printer, and the card installed in one of the inside slots.
    Using an Ethernet port setup on the printer should be explained in the printer's user manual. if you don't have one you can download manuals from the HP web site.

  • Can't see the logical system set up via Gui PI while build up business syst

    Hi all:
        I set up a logical ssytem via Sale via PI Gui----ECC800, but when build up
    business systems ECC800, I cann't see ECC800.  it seems that we need to
    synchronise it through Gateway, Could you please tell me how in detail? 
       Thank you very much!!!

    Unfortunately, it seems that Toahiba has not improved their driver releases. As they repackage the nVidia drivers, a straight nVidia driver will seldom install properly. I had a Toshiba Satellite (biggest, baddest in its day), and it never got a video driver update. No nVidia drivers would install. I found this Web site, and for the five years that I used that laptop, it rewrapped every new nVidia driver, to install on the Toshiba: http://www.laptopvideo2go.com/drivers.
    Predicated on a similar Toshiba thread, I checked for that old Satellite, and Toshiba had not issued a new one, four years later - so their one driver was about 9 years old at that point.
    Good luck,
    Hunt

Maybe you are looking for

  • Calling a CAF program via web service generates QName cannot be null error, but only for 1/5 of the same call in a parallel for loop.

    I'm calling 5 identical web service calls using a parallel for loop in BPM. Obviously the data in each slightly differs. Why would this call suspend the process and give the following errors: handleCommunicationError( ErrorContextData, Throwable, Tra

  • Sounblaster Z Driver unsigned

    So i recently installed the sounblaster Z 1500, Now when i play a game it crashes, so i ran DXdiag and i get errors under sound The file cthda.sys is not digitally signed, which means that it has not been tested by Microsoft's Windows Hardware Qualit

  • Flash PHP JPG/PNG Email

    Hi, I would like to take a "screenshot" of the stage within flash and send it as an image by email. I have tried AMFPHP and the method described here - http://www.bytearray.org/?p=90#respond This is saving a jpg of a movie on the server, but no email

  • How to use Parameterized Stored Procedure in OBIEE 10 g..?

    Hi All, In my rpd, to load the data in the Physical layer, I'm using a Stored Procedure (*SQL Server Stored Procedure*). This stored procedure is using some parameters, so my intention is 1) Provide prompts for each parameter 2) Allow the user to sel

  • Style a column in an IRR

    Hi, I want to style a column in an interactive report ( i want the right border 4px solid black) For the column header this works with .apexir_WORKSHEET_DATA th#column_name Ho to apply this to the data of the column?? Apex version 4.2.1