MQSeries and WLS6.1-SP3 integration question

Hello all,
I am trying to have WLS6.1-sp3 MDBs consume messages off
MQSeries 5.2 queues. My quetions are:
1. Do I need to use the JMSBridge60.zip? I assume I don't need it
since it say WLS6.1 has builtin brdige. If so, then what is the
appropriate approach.
2. Is it possible to have WLS and MQSeries 5.2 participate in
two-phase commit based trascations?
your help is greatly appreciated.
Many thanks.

Hello all,
I am trying to have WLS6.1-sp3 MDBs consume messages off
MQSeries 5.2 queues. My quetions are:
1. Do I need to use the JMSBridge60.zip? I assume I don't need it
since it say WLS6.1 has builtin brdige. If so, then what is the
appropriate approach.
2. Is it possible to have WLS and MQSeries 5.2 participate in
two-phase commit based trascations?
your help is greatly appreciated.
Many thanks.

Similar Messages

  • WLS6.1 sp3 migration question

    Hello,
    We are planning to move to WLS6.1 sp3. Currently we are on WLS6.1.
    Have anyone of you encountered any know issues in migration (on
    Solaris 8) ?
    Other question, have you encountered any critical/severe issues, which
    may indicate that sp3 is not the right pack to move to?
    regards
    Navin

    Hi Havin,
    "navin" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    We are planning to move to WLS6.1 sp3. Currently we are on WLS6.1.
    Have anyone of you encountered any know issues in migration (on
    Solaris 8) ?
    Other question, have you encountered any critical/severe issues, which
    may indicate that sp3 is not the right pack to move to?You may actually go straight to the SP4. The only issue you may look
    at is that weblogic SP4 is shipped with the oracle JDBC driver for 9.2,
    which may not work with older version of oracle, if you have one. So
    you'll have to download the oracle driver matching you version of the
    database from http://otn.orcale.com and put it as a first thing in the
    weblogic startup classpath.
    Regards,
    Slava Imeshev

  • ECC 5.0 and CRM 7.0 Integration Questions

    Hello,
    We are on ECC 5.0 and are part of a global implementation that is putting in CRM 7.0.
    We have a couple of issues/questions.
    1.  We want to integrate ECC Internal Orders with CRM Contracts and Orders.  However we don't see the ECC Internal Order type SAPS in ECC 5.0.  What release/plugin would give us SAPS Internal order type
    2.  We currently use CS and PM in ECC, and we have equipment and func. locations.  Do we need to be on a certain version/plugin to integrate Equipment and Func. Locations with CRM iBase?
    3.  Any tips/suggestions on integrating Vertex with CRM for taxes.
    Thanks
    chris

    Hi
    Here are the Answers
    1. We want to integrate ECC Internal Orders with CRM Contracts and Orders. However we don't see the ECC Internal Order type SAPS in ECC 5.0. What release/plugin would give us SAPS Internal order type
    - This is release indepedant- It is been available from R/3 4.7 so you should have it, if you dont have an SAPS order type, you have 2 options
              1. Create your own SAPS Order type
              2. Define RFC from  Client "000" and push the order type. This must be available in "000" as a standard delivery, may be your Basis did not move the order types properly.
    2. We currently use CS and PM in ECC, and we have equipment and func. locations. Do we need to be on a certain version/plugin to integrate Equipment and Func. Locations with CRM iBase?
    Yes you can have the equipment and Functional Locations, but for FLocs to download to CRM you need ECC6.0 with Sp6 anything below cannot be integrated or downloaded with CRM7.0 .. for Equipments any versions are fine and you do all configuration and customization in CRM
    3. Any tips/suggestions on integrating Vertex with CRM for taxes.
    Its a broad question, SAP provides standard integration option to vertex, and you integrate as needed..
    let me know if you need anything else.

  • IIS WLS6.1 SP3 and cluster load balancing

    I am setting up an installation with IIS, WLS6.1 SP3 using a cluster. Monitoring
    the instances in the cluster the entire load is going to one instance. If that
    instance is stopped the other takes over, no problem. If I set DynamicServerList
    to off in the iisproxy.ini file the load balances correctly.
    Is there a way to ensure WLS sends the dynamic server list as advertised? Failing
    that what are the problems that may arrise from not using the Dynamic Server List?

    I would like to see the entries in your iisproxy.ini file?
    Can you post 'em?
    Kumar
    Danny Newman wrote:
    I am setting up an installation with IIS, WLS6.1 SP3 using a cluster. Monitoring
    the instances in the cluster the entire load is going to one instance. If that
    instance is stopped the other takes over, no problem. If I set DynamicServerList
    to off in the iisproxy.ini file the load balances correctly.
    Is there a way to ensure WLS sends the dynamic server list as advertised? Failing
    that what are the problems that may arrise from not using the Dynamic Server List?

  • WLS6.1 sp3, jms/mq MDB

    Hi
              We are using WLS6.1 sp3, accessing MQ through MQ/JMS and Bean managed MDBs. We are managing transaction by throwing Runtime exception and sending the message for requeueing for any issue. We are not using any Messaging bridge approach.
              Has any faced any issue with this approach? May be with later SPs or 7.0, does any foresee any problem in this approach?
              Thanks
              Srinivas
              

    (1) MDB container managed transactions are not
              supported in 6.1SP3 for most foreign vendors. This type
              of question is pretty common, here is the cut and
              paste response:
              Start by reading this white-paper on dev2dev.bea.com
              "Using Foreign JMS Providers with WebLogic Server"
              Be aware that WL 8.1 provides a couple new features that
              simplify integration. The white-paper does not cover them:
              Resource-Reference JMS Pooling (pooling and auto-enlistment)
              Foreign Destination Wrappers (register foreign dest in local JNDI)
              See http://edocs.bea.com/wls/docs81/notes/new.html#1160067
              (2) Managing the operation by using two different atomic operations
              (one for receive, one for send), and failing the send on
              certain failures does not guarantee exactly-once. No matter
              what messaging system is used. There are fundamental race
              conditions that can cause lost or duplicate messages. The
              only way to force exactly once when using two atomic operations
              is to write the code in such
              a way that allows duplicate receives to occur, and to detect if
              the received message has already been operated on by
              checking a history record that was recorded
              for each previous receive. Where the history record
              must be written to a database atomically
              as part of the send transaction using a transaction.
              (3) I recommend using the bridge, or moving up to
              version 7.0 or later.
              Tom
              Srinivas wrote:
              > Hi
              >
              > We are using WLS6.1 sp3, accessing MQ through MQ/JMS and Bean managed MDBs. We are managing transaction by throwing Runtime exception and sending the message for requeueing for any issue. We are not using any Messaging bridge approach.
              >
              > Has any faced any issue with this approach? May be with later SPs or 7.0, does any foresee any problem in this approach?
              >
              > Thanks
              > Srinivas
              

  • Xcelsious Engage 2008 Compatibility with BO XI 3.1 SP3 Integration kit

    Hi Experts,
    I have installed BO XI R3.1 SP3,Crystal Reports 2008 SP3,Live Office,SAP GUI ,Xcelsius Engage 2008.
    1)I want to install BO XI R3.1 SP3 Integration tool kit for SAP Solutions.Can you please tell me that above installed Xcelsius release is compatible to the mentioned tools or i need to install any Service Packs.
    Edited by: Venkat8130 on May 24, 2011 6:30 AM

    hi,
    You can use this link:https://websmp101.sap-ag.de/bosap-support
    then:
           Software Downloads>BusinessObjects Downloads>Browse the SAP BusinessObjects Portfolio>Installation and Upgrade>SBOP INTGR. FOR SAP-->BOBJ INTGR. FOR SAP XI 3.1
    then you can see it.
    lory

  • URL to download BO XI 3.1  SP3 Integration kit for SAP Solutions

    HI
    I have Installed BO XI 3.1 SP3 Enterprise in the server.I want to Install BO XI 3.1 SP3 Integration kit for SAP solutions.
    1)I want to know what is the order of Installations i need to install in case of Crystal Reports and Xcelsius,BI,SAP GUI.
    2)Give me  the link to Down load above version Integration Kit.
    3)What are Installations Compulsory before installing BO XI 3.1 SP3 integration kit SAP solutions and give some more brief Idea

    hi,
    You can use this link:https://websmp101.sap-ag.de/bosap-support
    then:
           Software Downloads>BusinessObjects Downloads>Browse the SAP BusinessObjects Portfolio>Installation and Upgrade>SBOP INTGR. FOR SAP-->BOBJ INTGR. FOR SAP XI 3.1
    then you can see it.
    lory

  • ISE and Symantec SEP 11 Interworkering Question

    Hi guys,
    I have a question about ISE and Symantec SEP 11.
    In my customer envrionment, they want to build a wireless byod work place.  But the endpoints are installed SEP software.
    Do you know the workflow for the SEP, when it check the system is not secrity then put my endpoints to the guest VLAN.
    In my opinion, the endpoints should authenticationed and authorized by ISE first.
    Then, the endpoints should connect to internet successfully.
    Now, if the endpoints using SEP software to check the system status.
    What should the SEP do if the system is not safe?
    Is the SEP return a signal to Switch, let it change the Vlan configuration of the interface to the Guest Vlan ?
    But this action will cause the AP disconnect to the WLC, and makes all the clients which is connect to this AP is disconnect.
    Somebody knows it ?
    Thank you !

    HI Chetan,
    Thanks for your reply.
    I've search the SEP web site and found some work flow. And I combine them to my environment.
    I'm not sure it's right, the flow is:
    1. Client computer connects and send logon through EAP.
    2. The WLC forwards the user name and passwrod to the LAN Enforcer.
    3. The LAN Enforcer forwards the username and password to the ISE server.
    4. The ISE server generates and EAP challenge.
    5. The LAN Enforcer receives the EAP challenge and adds the Host Integrity check.
    6. The LAN Enforcer checks the Host Integrity results and forwards them to the ISE server.
    7. The ISE server performs EAP authentication and sends the result to the LAN Enforcer.
    8. The LAN Enforcer receives the authenticaiton result and forwards it and the action to take to the WLC.
    9. If the client passes the EAP and Host Integrity challenges, the WLC allows network access.
    But when i configure the WLC, the RADIUS server address is the ISE server ip address. That means WLC forwards the username and password to the ISE server directly, and it will not through to the LAN Enforcer.
    So this is very confused me.
    Do you know why?
    Thank you !
    Regards,
    Yuxiang.

  • Process Integrator question?

    Hi,
    I'm not sure where to ask a Process Integrator question so I have
    decided to ask here. I have been asked to look at business
    process (workflow) automation. I have read the datasheet and your
    whitepaper on Process Integrator and my question at the moment
    is "How do we integrate Process Integrator with existing sets of
    EJB's? How does it tie together with WebLogic 5.1 (is it a bunch
    of EJB's deployed on top of the app server ala Commerce Server)?
    I'm looking for more technical answers so that I have a reasonable
    understanding in estimating how much work/effort it would take
    to use this product. I also know that this is your engine for your
    future Collaborate product, however, that product will not be
    available soon enough to tackle our customers current needs.
    Thanks for your patience in reading this long message and
    I would appreciate any answers including "forget about it until
    Collaborate goes to market!". I would like to give an honest
    technical reason to my manager about why we should
    consider (or not consider) using Process Integrator.
    Thanks again!
    Hugo
    408-861-5292
    marchFIRST
    Cupertino, CA 95014

    I don't know much about WLPI, but I have forwarded this along internally and
    someone should be contacting you soon.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Hugo Penafiel" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    I'm not sure where to ask a Process Integrator question so I have
    decided to ask here. I have been asked to look at business
    process (workflow) automation. I have read the datasheet and your
    whitepaper on Process Integrator and my question at the moment
    is "How do we integrate Process Integrator with existing sets of
    EJB's? How does it tie together with WebLogic 5.1 (is it a bunch
    of EJB's deployed on top of the app server ala Commerce Server)?
    I'm looking for more technical answers so that I have some
    understanding in estimating how much work/effort it would take
    to use this product. I also know that this is your engine for your
    future Collaborate product, however, that product will not be
    available soon enough to tackle our customers current needs.
    Thanks for your patience in reading this long message and
    I would appreciate any answers including "forget about it until
    Collaborate goes to market!". I would like to give an honest
    technical reason to my manager about why we should
    consider using Process Integrator.
    Thanks again!
    Hugo
    408-861-5292
    marchFIRST
    Cupertino, CA 95014

  • I seem to not enter the correct answers to my security questions for itunes to buy an in-app purchase and also cannot answer the questions exactly like i answered them when creating the account for my ipod, how do i find out what answers i put

    I seem to not enter the correct answers to my security questions for itunes to buy an in-app purchase and also cannot answer the questions exactly like i answered them when creating the account for my ipod, how do i find out what answers i put for my ipod touch and itunes?

    Try these previous discusssions:
    recover answers to security questions: Apple Support Communities
    how do i change apple ID security...: Apple Support Communities

  • I forgot my icloud password and answers to the security questions, only have a primary email and don´t have a resque email, neither pin nor two steps to reset password.

    How to get a temporary pin number to my primary email apple ID cause i can not access to my icloud cause i forgot password and answers to the security questions, neither key nor two steps.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (123643)

  • HT5787 If i know email ( but i dont have acces to it ) and i dont have secret questions how can i recover my icloud account ?

    If i know email ( but i dont have acces to it ) and i dont have secret questions how can i recover my icloud account ?
    I'n my company ( pawn shop ) i hope i transleted fine , i bought an iphone wich it seems to be ok at the first time.
    That was on 26.11.2013 ( as can be seen in my pawn contract and billing ) . after 2 weeks i found a client to buy my second hand iphone and the i saw my mistake it is icloud blocked i need that password so i can reset the iphone to sell it. how can i manage this problem ? i can provide all my billings, contracts, society data everything.

    If you know the primary email linked to the account but do not have access to it or the answers to the security questions, then the next best thing to do is call Apple at 800-275-2273 and ask for Account Security.  They will ask you for two pieces of information from the account in order to unlock it.  The options are usually the security questions (each question counts as one piece), the credit card linked to the account, and either a device serial number or device verification code that they will send you.
    After this verification is complete they can send the reset link for your password to any email you choose.  Please be aware that if they verify you with something other than two security questions, there is a 24 hour wait before the email arrives.
    Good luck!

  • After i redeemed my itunes gift card, i can't purchase anything in the app store or itunes store. When i press purchase, the security questions page will pop up and after you answered all questions it will force restart my iphone. Can anyone help me?

    After i redeemed my itunes gift card, i can't purchase anything in the app store or itunes store. When i press purchase, the security questions page will pop up and after you answered all questions it will force restart my iphone. Can anyone help me?

    Hi godfest,
    Welcome to the Support Communities!
    The articles below will get you connected with the iTunes Store Support.  These folks can review your account with you:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933?viewlocale=en_US
    iTunes Store & Mac App Store: Seeing your purchase history and order numbers
    http://support.apple.com/kb/ht2727
    Cheers,
    - Judy

  • I just got a new iPad 2 and I have lot of questions. I was able to wirelessly link my iPad and iTunes on my PC. I was able to SYNC my email and calendar (new only no history), however I have not been able to SYNC Outlook contacts.

    I just got a new iPad 2 and I have lot of questions. I was able to wirelessly link my iPad and iTunes on my PC. I was able to SYNC my email and calendar (new entries only no history), however I have not been able to SYNC Outlook contacts. Outlook has multiple contact lists. Only one has any data. I can't find a way to delete the others and I can't keep the one I want to use at the top of the list. Any ideas?
    I have a question about email. I have several thousand emails in 10 or so days. How can I select multiple emails for deletion in stead of one at a time? How do I designate emails from a given sender as junk or block certain senders?
    Ron

    the spcs page on this site state which video formats the ipad supports
    I'd suggest converting your old videos to one of those formats
    handbrake is a free program which does this for you
    itunes used to be able to too when I right clicked incompatible media but don't see the option any more
    or maybe it only show when one right click incompatible media and currently my lib don't have any
    about the music then it's odd what formats are they?
    if they are acc protected have you tried to remove the DRM this can be don using itunes as
    apple don't use DRM for music any more

  • When trying to download apps on my new iPad I keep getting prompted to update my security questions for my safety. When I choose this option it freezes and won't load the questions, however, when I hit not now it won't let me download. What do I do?

    When trying to download apps on my new iPad I keep getting prompted to update my security questions for my safety. When I choose this option it freezes and won't load the questions, however, when I hit not now it won't let me download. What do I do?

    Reboot your iPad and then see if you can set the security questions.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

Maybe you are looking for