JMS Foreign Provider using XAConnectionFactory for Container Managed Trans

Hello, we've been running some proof of concepts using Weblogic 10.3 with a JMS Foreign Provider attached to MQSeries 7.
We created a very simple MDB to read a message and output it's content.
We created a bindings file with a Connection Factory (without XA)
The question I have is that when I set the Transaction Management to Container and Transaction Attribute to "Required" , does Weblogic automatically look for a XAQueueConnectionFactory? We get the error below:
[EJB:011013]The Message-Driven EJB attempted to connect to the JMS connection factory with the JNDI name: OP_CF. However, the object with the JNDI name: OP_CF is not a JMS connection factory. NestedException Message is :com.ibm.mq.jms.MQQueueConnectionFactory cannot be cast to javax.jms.XAConnectionFactory>
When we set the transacation to Bean Managed or we set to Container Managed but set the attribute to "NotSupported" it works fine.
My goal is to have a MDB that has Container Managed Transactions and "Requires" Attribute, but only particpates in a local transaction and does not need the overhead of XA. It will read from a Foreign MQ manager Queue, process and then write back to the same Foreign MQ manager(different queue), so only one resource (MQ) is used.
If we set the above settings, it seems that a XAConnectionFactory is required. Is that true?

-- If you do not enable the container transaction, then the MDB connection factory does not need to be an XA connection factory.
-- If the application is performing messaging operations, and wants to use locally managed transactions, then you have a variety of options. These are all standard JMS:
* Use an XA connection and XA session. Begin JTA transactions before performing JMS operations, and call commit or rollback on the JTA transaction after performing the JMS operations. For foreign vendors, you must take extra steps to ensure that the vendor enlists with the WebLogic transaction -- typically by using WebLogic resource reference wrappers.
* Use the standard JMS API "transacted session" on a non-XA session -- the transaction will be local to the session (this is extremely similar to JDBC local transactions).
* Use a non-transacted session. Sends will occur immediately. Receive messages will be acknowledged immediately for auto-ack sessions, or will not for non-ack.
-- Note that if a transaction only includes a single operation, there's no need for XA or non-transacted sessions.
-- For more information on transactions and integration, I highly recommend reading our [ Integrating Remote JMS Providers | http://download.oracle.com/docs/cd/E15523_01/web.1111/e13727/interop.htm#JMSPG553 ] FAQ. I also very highly recommend purchasing a copy of [ Professional Oracle WebLogic Server | http://www.amazon.com/Professional-Oracle-WebLogic-Server-Patrick/dp/0470484306/ref=sr_1_1?ie=UTF8&s=books&qid=1252088885&sr=8-1 ], and of course reviewing our [ JMS Information Roadmap | http://download.oracle.com/docs/cd/E15523_01/web.1111/e14529/messaging.htm#sthref23 ].
-- Finally, you may also want to consider replacing some MQ usage with WebLogic JMS. WL JMS is a heavily adopted messaging vendor, and for obvious reasons, tends to integrate especially well with the WebLogic app server.
Hope this helps,
Tom

Similar Messages

  • MDB - JMS foreign provider

              Using WLS8.1:
              I'm currently trying to set up a MDB listening directly on a JMS queue, provided
              by Sonic.
              I registered my queue through the Sonic JMS console in the WLS JNDI repository,
              and can browse to the object successfully in the JNDI browser.
              However, when I deploy my MDB, I get an exception:
              <Feb 28, 2004 3:27:09 PM MET> <Warning> <EJB> <BEA-010061> <The Message-Driven
              EJB: SomeMDB is unable to connect to the JMS destination: myforeigndestination.
              The Error was:
              weblogic.jms.common.InvalidDestinationException: Foreign destination, q_external
              weblogic.jms.common.InvalidDestinationException: Foreign destination, q_external
              at weblogic.jms.common.Destination.checkDestinationType(Destination.java:106)
              at weblogic.jms.client.JMSSession.createConsumer(JMSSession.java:1580)
              at weblogic.jms.client.JMSSession.createReceiver(JMSSession.java:1484)
              at weblogic.ejb20.internal.JMSConnectionPoller.setUpQueueSessions(JMSConnectionPoller.java:1609)
              at weblogic.ejb20.internal.JMSConnectionPoller.createJMSConnection(JMSConnectionPoller.java:1844)
              at weblogic.ejb20.internal.JMSConnectionPoller.connectToJMS(JMSConnectionPoller.java:1087)
              at weblogic.ejb20.internal.JMSConnectionPoller.trigger(JMSConnectionPoller.java:970)
              at weblogic.time.common.internal.ScheduledTrigger.run(ScheduledTrigger.java:243)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
              at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
              at weblogic.time.common.internal.ScheduledTrigger.executeLocally(ScheduledTrigger.java:229)
              at weblogic.time.common.internal.ScheduledTrigger.execute(ScheduledTrigger.java:223)
              at weblogic.time.server.ScheduledTrigger.execute(ScheduledTrigger.java:50)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              The only way to get it working is setting up an additional internal WL queue,
              connected by a Messaging Bridge, but that's not what I want.
              It seems like weblogic JMS implemenation only accepts weblogic Queue's as valid
              Queue objects.
              Thanks for any pointers.
              Rgrds,
              Klaas van der Ploeg
              

              Klaas van der Ploeg wrote:
              > Using WLS8.1:
              >
              > I'm currently trying to set up a MDB listening directly on a JMS queue, provided
              > by Sonic.
              >
              > I registered my queue through the Sonic JMS console in the WLS JNDI repository,
              > and can browse to the object successfully in the JNDI browser.
              > However, when I deploy my MDB, I get an exception:
              > <Feb 28, 2004 3:27:09 PM MET> <Warning> <EJB> <BEA-010061> <The Message-Driven
              > EJB: SomeMDB is unable to connect to the JMS destination: myforeigndestination.
              > The Error was:
              > weblogic.jms.common.InvalidDestinationException: Foreign destination, q_external
              > weblogic.jms.common.InvalidDestinationException: Foreign destination, q_external
              > at weblogic.jms.common.Destination.checkDestinationType(Destination.java:106)
              > at weblogic.jms.client.JMSSession.createConsumer(JMSSession.java:1580)
              > at weblogic.jms.client.JMSSession.createReceiver(JMSSession.java:1484)
              > at weblogic.ejb20.internal.JMSConnectionPoller.setUpQueueSessions(JMSConnectionPoller.java:1609)
              > at weblogic.ejb20.internal.JMSConnectionPoller.createJMSConnection(JMSConnectionPoller.java:1844)
              > at weblogic.ejb20.internal.JMSConnectionPoller.connectToJMS(JMSConnectionPoller.java:1087)
              > at weblogic.ejb20.internal.JMSConnectionPoller.trigger(JMSConnectionPoller.java:970)
              > at weblogic.time.common.internal.ScheduledTrigger.run(ScheduledTrigger.java:243)
              > at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
              > at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
              > at weblogic.time.common.internal.ScheduledTrigger.executeLocally(ScheduledTrigger.java:229)
              > at weblogic.time.common.internal.ScheduledTrigger.execute(ScheduledTrigger.java:223)
              > at weblogic.time.server.ScheduledTrigger.execute(ScheduledTrigger.java:50)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              >
              >
              > The only way to get it working is setting up an additional internal WL queue,
              > connected by a Messaging Bridge, but that's not what I want.
              >
              >
              > It seems like weblogic JMS implemenation only accepts weblogic Queue's as valid
              > Queue objects.
              Emphatically not true. In pointed fact, WebLogic has gone through
              great pains over the years to ensure integration works with multiple
              JMS vendors - sending out fix requests to them as needed (including
              Sonic).
              Anyhow, you are trying to use a non-WebLogic destination with a
              WebLogic JMS session. No vendor supports this. Instead, you
              must make sure that the MDB creates a Sonic JMS session. So
              configure a foreign connection factory, and configure the
              MDB to refer to this connection factory. You can find
              this information in WebLogic's JMS developer guide.
              This is the first time I've gotten a Sonic question in quite a
              while, but I know that they have step-by-step doc on how to
              integrate their product with WebLogic. You might want to try
              looking there for more help. I don't know if their doc
              leverages 8.1 foreign destination wrapper feature.
              Tom Barnes, BEA
              >
              > Thanks for any pointers.
              >
              > Rgrds,
              > Klaas van der Ploeg
              

  • Problems while defining EJB relations for container managed bean

    I am having a problem while trying to create my relations for my container managed bean.
    My Database schema is:
    Order table
    order_id
    message
    WorkItem table:
    order_id
    item_id
    message
    I have defined my OrderBean to have:
    @LocalMethod()
    @CmrField
    public abstract Collection getCmWorkItemsCmr();
    @LocalMethod()
    public abstract void setCmWorkItemsCmr(Collection workItems);
    I am not sure how to define my relation for my class:
    @Relation(cmrField = "cmWorkItemsCmr", multiplicity = Relation.Multiplicity.MANY, name = "Orders-CmWorkItems")
    An order can have many workitems. I am not sure how to fill in the rest for foreign Key jointable and such.
    Any help pointing me in the right direction would be helpful.
    Thanks,
    Ian

    I am having a problem while trying to create my relations for my container managed bean.
    My Database schema is:
    Order table
    order_id
    message
    WorkItem table:
    order_id
    item_id
    message
    I have defined my OrderBean to have:
    @LocalMethod()
    @CmrField
    public abstract Collection getCmWorkItemsCmr();
    @LocalMethod()
    public abstract void setCmWorkItemsCmr(Collection workItems);
    I am not sure how to define my relation for my class:
    @Relation(cmrField = "cmWorkItemsCmr", multiplicity = Relation.Multiplicity.MANY, name = "Orders-CmWorkItems")
    An order can have many workitems. I am not sure how to fill in the rest for foreign Key jointable and such.
    Any help pointing me in the right direction would be helpful.
    Thanks,
    Ian

  • Support for Container Managed XA Txn?

    I have been searching the online documentation but have been unable to
              determine if WLS 6.0 Container Managed Transactions include support for XA
              transactions. That is, the EJB container will start a distributed
              transaction. Or, it is necessary to use Bean Managed Transactions.
              

    Carl Lawstuen wrote:
              > I have been searching the online documentation but have been unable to
              > determine if WLS 6.0 Container Managed Transactions include support for XA
              > transactions. That is, the EJB container will start a distributed
              > transaction.
              Yes
              > Or, it is necessary to use Bean Managed Transactions.
              No.
              -- Rob
              

  • Using Failover for DB Manager Service Objects

    Michelin Tire Corporation
    At Michelin, we are trying to implement a failover
    service object using Oracle 7.3 on RS6000 platform (AIX 4.1.4).
    We understand that we need to use HACMP (Clustering) and
    Oracle's parallel server. This way the DB Service objects
    on two different computer nodes can access the same database.
    Has anyone used this configuration? If so, have you had any problems?
    and how well does it work?
    We would appreciate any information on this subject.
    Thanks in advance,
    Thomas Sams

    Tommy Sams wrote:
    >
    Michelin Tire Corporation
    At Michelin, we are trying to implement a failover
    service object using Oracle 7.3 on RS6000 platform (AIX 4.1.4).
    We understand that we need to use HACMP (Clustering) and
    Oracle's parallel server. This way the DB Service objects
    on two different computer nodes can access the same database.
    Has anyone used this configuration? If so, have you had any problems?
    and how well does it work?
    We would appreciate any information on this subject.
    Thanks in advance,
    Thomas SamsAt CSI, we have planned to use HACMP with Forte' failover to provide a
    high availability architecture for one of our customer.
    There are a lot of stuff to consider, some related to hacmp
    configuration, some to forte' mechanisms.
    In particular we should use HACMP for managing RDBMS backup and Forte'
    capabilities to deal with partitions/envs/nodemgrs failover. We have not
    take into account Oracle's parallel server at the moment ( althought it
    could be a good solution ) because we don't really need to access oracle
    from 2 different nodes at the same time, but "just" to have a "realtime"
    dbms backup in case of primary server fault.
    The architecure we choosen is based on tre AIX server ( 1 application
    server, 1 main dbms server, 1 backup server ( oracle failover, envs
    failover).
    We have started testing it using forte 2.0.h, but we realized that a
    more complete functionality will be offered using 3.0 KEEP_ALIVE
    features. So I could give you more feedback in the near future.
    What type of solution have you in mind ?
    Regards
    Fabrizio Barbero
    Barbero Fabrizio
    CSI-PIEMONTE
    Cso Unione Sovietica 216
    10134 Torino ITALY
    tel: +39 11 3168515
    fax: +39 11 3168212
    e-mail: [email protected]

  • Using SPML for Identity Management in EJB WebService

    Dear All,
    I have a requirement af using SPML(Service Provisioning Markup Language) for Identity management. Identity management is used to manage the user like deleting a user, modifying, adding a user etc for a application.For that the request for all these functions need to be made using the SPML. The idea is that first the data used to make any request will come from the SAP R3 using an EJB which will retrieve that data by calling a BAPI via JCO and then it is needed to be passed to the entitlement system using the SPML.Thus I have to publish a web service which will get data by calling BAPI and give it to entitlement system using SPML and how can I achieve it?. I have less knowledge about SPML, your guidence will help.
    Thanks & Regards,
    Samir

    There is a document on the SAP Service Market Place that covers the SPML in the UME APIs. This quote is from the [UME documentation|http://help.sap.com/saphelp_nw04s/helpdata/en/5b/5d2706ebc04e4d98036f2e1dcfd47d/frameset.htm]:
    SPML Support
    The UME APIs support access using the Service Provisioning Markup Language (SPML). For more information, see service.sap.com/security > Security in Detail > Secure User Access > Identity Management > SAP Identity Management APIs.
    -Michael
    Edited by: Michael Shea on Jan 17, 2008 9:01 AM

  • Using vrf for separating management and user traffic

    hello
    We use vrf in our network for separating user / production traffic vs management traffic. but the way we have used it has turned out to be messy and we are in a situation where we no longer have the distinction between the two. I personally feel that vrf is a great way to separate management vs user traffic.
    Here is why I am in a dilema
    If  VLANS for users computers and server VLANS are in USERS vrf
    and management servers ( including domain controllers, AD) are in management vrf  , there is no way this will work . and this was the reason we thought it was going to work. now I am wondering if using vrf is even necessary in an enterprise environment when management traffic can be separated on server end and not so much at the clients end.
    anyone has any ideas how to go about this..

    Hello, very interesting scenario! I was in a similar position to you. I agree VRF's are great for management purposes, as it provides you with total segregation of routing instances. In fact the newer cisco devices come with vrf's configured for management out the box, with a separate interface for management only (for the network device itself).
    However, when it comes to enterprise networks and you have domain controllers, file servers, messaging, maybe ACS or ISE, proxies etc... and other services that should be available for your users, is there any point in using vrf's to separate users from management servers. Lets take for example:
    A PC on the domain, and I want to log in using my AD credentials. You need to be able to contact the domain controller(s) in order to login right? Since vrf's are contained they will have no routes to get to different networks in other vrf's. Except when configured to do so.
    Unless you do something called vrf route leaking or advertising. It's explained well here:
    http://packetlife.net/blog/2010/mar/29/inter-vrf-routing-vrf-lite/
    http://blog.ipexpert.com/2010/12/01/vrf-route-leaking/
    Anyway, nevertheless - you are still going to be providing reachability via routing, so this defeats the purpose kindof... It could add unnecessary complexity too.
    Me personally, I just made sure that they were separated by VLAN's and had a dedicated vrf for management, i.e. ssh, snmp etc... to the network devices. I weighed up and thought its not worth doing something that will not really be of any benefit.
    I can understand the need for ISPs and large service providers to use this but not business/enterprise.
    I hope this helps.

  • Help using workflow for import manager

    hi all,
    assumes import server is used for automation creation/update of records,
    i need to design a workflow to verify existing record  that:
    if a validation pass: update all fields + update mapping key
    if a validation fail : update mapping key only
    can anyone provide good suggestion on how it can be done via workflow?
    MDM API is out of scope...
    thanks,
    Shanti

    Hello Shanti
    Import manager and import server  launch workflow after data loading is finished.
    You cannot manage loading rules from workflow.
    You can create two inbound ports:
    one for keys loading
    another one for keys+fileds loading
    Regards
    Kanstantsin Chernichenka

  • Provide Useful links for WebDynPro (Dynamic Prog,DCs,Theme Mgmnt,Debugging)

    Hi Folks,
    Kindly provide the useful links/Blogs/Reference for the below mentioned list:
       WD Dynamic Programming
       DC cross reference/inclusion techniques
       NWDI  DC/SC configurations and usage
       Portal configuration of pages, worksets, roles
       Theme management at WD and portal levels.
       Programmatically handing JCo connections (open, execute and close)
       WD debugging techniques
    Thanks
    Kapil Sharma

    You want a moccachino with that?...

  • Should a graphic designer use Iphoto for file management ?

    I am a designer who is overwhelmed by too many images from different sources (scan, online, art, photos) that need to be organized by themes (animals, flowers, calligraphy, projects, etc) so I tried transferring all my ps and tif and jpg files into iphoto (hoping to avoid using bridge, which I don't like).
    I noticed after I drug some them into iphoto, I reopened them in PS (drug file to the PS software Logo in dock), all the layers were had been flattened and the file went from 600 dpi to 72! EEEEK!
    I am a graphic designer and need large files with layers. Is iphoto a bad way to organize images? The orginal reason I like iphoto is because you can just drag out a file, and the original remains. In bridge, the original actually MOVES OUT.
    (I posted this in the wrong forum before, so this is a repeat posting)

    kidquotes:
    I would seriously look into a more robust DAM (digital asset management) application. The one that I use is Media Expression. It allows you to manage your folder system, move image files between folders from within the application, rename files, add metadata and write them to the files so they travel with them.
    Go go The DAM Forum where professional photographers discuss the various DAM applications and their relative merits, etc. Expression Media was originally iView MediaPro and, at the time, was consdered one of the very best. EM was bought by Microsoft (ugh) but has evolved into am improved product but is more expensive.
    As far as the dpi the resolution didn't change. iPhoto displays all at 72 dpi but if you were to look at the file in Photoshop it's print size would be nearly 9 times larger. It's all relative. SeeThe Myth of DPI.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • User Level Vs. Application Level Authorization and Authentication for Container Managed Datasources (Oracle Connection Pools)

    Oracle Database Server 9i supports the usage of LABELS to enforce highly granular
    resource access restrictions at the database level independent of the application
    that is accessing it. In order to use this however, the particular user, and
    not just the application, accessing the database must be known. Oracle Application
    Server (Oracle's J2EE product line) solves this by providing the ability to PROXY
    the identity of the application user and creditials (SSL Certs for instance) down
    to the database server.
    I haven't seen a similar ability for BEA Weblogic Server 8.1 which allow the user
    identity and credientials to be PROXIED to the database server. Is this possible?
    Have I missed an important document?
    Thanks for any input,
    Raymond Tiong

    On 3 Feb 2004 12:51:26 -0800, Raymond Tiong <[email protected]> wrote:
    >
    Oracle Database Server 9i supports the usage of LABELS to enforce highly
    granular
    resource access restrictions at the database level independent of the
    application
    that is accessing it. In order to use this however, the particular
    user, and
    not just the application, accessing the database must be known. Oracle
    Application
    Server (Oracle's J2EE product line) solves this by providing the ability
    to PROXY
    the identity of the application user and creditials (SSL Certs for
    instance) down
    to the database server.
    I haven't seen a similar ability for BEA Weblogic Server 8.1 which allow
    the user
    identity and credientials to be PROXIED to the database server. Is this
    possible?
    Have I missed an important document?
    Thanks for any input,
    Raymond Tiong
    I think there is a section in the JDBC documentation for 8.1 which
    describes what it takes to utilize Oracle 9i extension called "Virtual
    Private Database". With this extension, one might be able to proxy the
    callers
    identity to the DB.
    See: http://e-docs.bea.com/wls/docs81/jdbc/thirdparty.html#1103627

  • Use m1 for appliance managment only option in ironport email vmaware platform

    can anybody let me know this question in vmware??? i cannot see this option

    You can change the route that the update and upgrades use by going to System Adminstration>Upgrade and Update Settings.  Then click on the "Edit Update Settings".  You can pick the routing table/interface here.  By default its set to the managment interface.
    I'm fairly sure that the NTLM traffice from the WSA to the domain is via the managment interface.
    P1 is for the proxy traffic. Whatever way you get internet traffice to the box, it goes through P1, in and out (unless you use P2)
    M1 is for all of the other stuff: web management, ssh, updates, ldap/ntauth, etc.

  • Using CARM for complex managed OTAP environments

    To all
    As all of you out there we have a Normal OTAP SAP street (GED/QAS/PRD) with a Solution manager and CHARM. So far so good.
    We, as most company’s, have an Education system (GEO)  for training users when new functional objects were implemented. Until now releases where transported through our OTAP street via Charm. When new objects should be trained the corresponding transports are loaded in the GEO system via TR STMS.
    All’s well but thinking about this why can’t CHARM be used to do this?
    Lets state a new function. So the Object is:
      1 developed in GED
      2 transported to QAS and tested
      3 transported to PRD
    All controlled by Charm, via the transport routs (STMS)
    As this being a new function before transporting  it to PRD, we import (by hand) in the Education system GEO. It can by under control of Charm but this route DEV/QAS/GEO/PRD is not always the case. Some time’s the route could be DEV/QAS/PRD/GEO or DEV/GEO/QAS/PRD. Or even only DEV/QAS/PRD.
    This depends on a time factor, when they would like to start training users.
    Can a flexible Project construction in CHARM towards this GEO system been build?
    Is it possible to release the transports to GEO at a point in time when we want it. Or can a transport at QAS when approved, put them in GEP and GEO. All under control of CHARM
    henk

    Have a look at the jboss web site for reference sites - someone has asked the same sort of question as yourself there. I don't know about the scalability etc personally as I've just started using it, but it does seem well designed. The documentation isn't as comprehensive as you might get from BEA or IBM, but then again, the server is free and the documentation costs $10, as opposed to paying $10000 for an app server. If you read the documents and ask good questions you will get up to speed with it. The support seems very good - as long as you ask an intelligent question ( there are a few threads in this forum about how to do that.)

  • Using OEM for file management

    Is anyone using OEM to manage files on their clients?
    We currently have a bunch of scripts that distribute certain files to certain systems based on system criteria, such as OS version, system "usage" (ie oracle DB, backup server) etc.
    I was looking @ OEM Deployment Procedures as something that might help with this. I didn't see a premade "file distribution" procedure, though, so I would probably have to write my own somehow.
    I'm also open to using Ops Center or some other plugin that might be more suited to this task.

    I am going to assume that you are using EM 12c. Let me know if this is not true.
    Deployment procedures (DP) is the ideal solution for this. There is no out of box DP for file transfer because it is extremely easy to create one. You have two options:
    1. transfer files from one server to another (using the file transfer step in DP)
    2. upload files to EM software library and then transfer them to different hosts (using the component and directive step in DP)
    Useful links:
    http://docs.oracle.com/cd/E24628_01/em.121/e27046/part_dp.htm#CCHJBDFD
    https://apex.oracle.com/pls/apex/f?p=44785:24:0::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:5787,1
    https://apex.oracle.com/pls/apex/f?p=44785:24:0::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:5788,1

  • Is there advantage by using virtualhost for solution manager db?

    I never done by this before.
    What is the advantage and what are the steps that you use to complete?
    Thank You For Your Help

    Hi,
    Why you want to use virtual hostname ? Are you installing system on HA ?
    Thanks
    Sunny

Maybe you are looking for

  • Solution for the Camera Raw 8.2 update installation problem

    Hi. Adobe Camera Raw 8.2 for CC & CS6 was released two months ago. http://blogs.adobe.com/lightroomjournal/2013/09/camera-raw-8-2-and-dng-converter-8-2-now-a vailable.html But many people got problem in updating Camera Raw 8.2. I tried to inspect the

  • During down payment of asset po  can any body solute the problem

    the following message is coming during down payment of asset po **purchase document allocated to asset** Purchase document is allocated to asset Message no. F5378 Diagnosis The asset number   assigned in the purchase document is different from the as

  • Excel import problems (collected)

    There are a few problems with Excel Import. Some have been reported elsewhere. Test Data Table Definition.   CREATE TABLE "JIM"."EXCEL_IMPORT"    (     "COLUMN1" VARCHAR2(100 BYTE),      "COLUMN2" VARCHAR2(100 BYTE),      "COLUMN3" VARCHAR2(100 BYTE)

  • Internet connections on Red Hat linux on Dell

    People, Can someone help me with how to configure internet connections on RHEL 3.0 on a Dell inspiron laptop? The problem: i can't connect to the internet on a Dell laptop that has RHEL 3.0 and i intend to install Oracle 10g on it.

  • Custom script execution error

    Hello, Iam trying to execute a custom logc script through DM and get the below error "RUN_LOGIC:Cannot find document/directory" I checked UJFS and the script file is in \ROOT\WEBFOLDERS\<Appset>\ADMINAPP\<Application name>\ Let me know if i need to d