Weblogic Intergration / transaction mode / Sybase

We are using Weblogic 8.1 to integrate a couple of DBMS's. A fact is that we can't change anything in these DBMS's, they are like blackboxes to us. As far as I could discover in the documentation of Weblogic, a distributed transaction uses the Autocommit-mode set to false, indicating a chained transaction mode, starting automatically a transaction on issueing the first DML statement in the database.
          One of the DBMS's is Sybase Adaptive Server 12.5. We are using some stored procedures in this DBMS, which were created in the standard mode, i.e. 'unchained' transaction mode which translates to Autocommit set to true.
          On running our application, of course, Sybase throws an error, indicating that a stored procedure created in unchained mode cannot be executed in an chained transaction.
          Well, theoratically, we could change the transaction mode of the stored procedures to 'chained', with the 'chained' or anymode' option on sp_procxmode. But, practically, we can't do that due to business policies and this also shouldn't be needed, as we are using Weblogic integration, which promotes INTEGRATING DBMS's and EIS's.
          So, my question is: Is there an option to use a global, distributed transaction in Weblogic integration, that runs in an unchained transaction mode, thus, allowing us to integrate this Sybase DBMS in our application, without making changes to the DBMS.
          Greetings,
          Ivo Willemsen

Hello Ivo.
          I'm having the same problem and I need to know if you were able to solve it.
          Thanks.

Similar Messages

  • Error when starting Weblogic in debug mode

    Hi there
    Has anyone experienced any difficulties when starting weblogic in debug mode.
    More specifically, it cannot start correctly because it thinks that another instance
    is using the same port (definately not the case).
    Any clues/suggestions are greatly appreciated.
    Error log follows:
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <Unable to create
    a server socket for port: 8320. java.net.BindException: Address already in use
    Perhaps another process is using port 8320.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Notice> <WebLogicServer> <SSLListenThread
    listening on port 8321>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <The WebLogic
    Server is no longer listening for connections. You should probably restart it.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <Server shutdown
    has been requested by system>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <The shutdown sequence
    has been initiated.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Info> <WebLogicServer> <Server shutdown is
    commencing NOW and is irreversible.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Error> <Performance Pack> <Unable to load
    performance pack, using Java I/O.
    java.lang.ThreadDeath
    at java.lang.Thread.stop(Thread.java:581)
    at weblogic.t3.srvr.T3Srvr.die(T3Srvr.java:764)
    at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:507)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
    at weblogic.Server.main(Server.java:35)

    Thanks for the suggestion.
    Unfortunatley the port is definately free/available during startup.
    Stephane Kergozien <[email protected]> wrote:
    Maark,
    Before starting your server, please could you check that the port is
    not used by one
    other process. You can use the netstat command to do this.
    Regards
    Stephane
    Mark wrote:
    Hi there
    Has anyone experienced any difficulties when starting weblogic in debugmode.
    More specifically, it cannot start correctly because it thinks thatanother instance
    is using the same port (definately not the case).
    Any clues/suggestions are greatly appreciated.
    Error log follows:
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <Unableto create
    a server socket for port: 8320. java.net.BindException: Address alreadyin use
    Perhaps another process is using port 8320.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Notice> <WebLogicServer> <SSLListenThread
    listening on port 8321>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <TheWebLogic
    Server is no longer listening for connections. You should probablyrestart it.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <Servershutdown
    has been requested by system>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <The shutdownsequence
    has been initiated.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Info> <WebLogicServer> <Servershutdown is
    commencing NOW and is irreversible.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Error> <Performance Pack> <Unableto load
    performance pack, using Java I/O.
    java.lang.ThreadDeath
    at java.lang.Thread.stop(Thread.java:581)
    at weblogic.t3.srvr.T3Srvr.die(T3Srvr.java:764)
    at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:507)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
    at weblogic.Server.main(Server.java:35)--
    Regards,
    Stephane Kergozien
    BEA Support

  • Select in read only transaction mode / insert in write mode

    hello,
    i have a following question: i have 2 db, one is rdb and one oracle
    im extracting data out of table out of rdb and inserting them into oracle via OWB;
    however this is run in read-write mode and causes locks in rdb; the only way to prevent locks is to run a select statement that accesses rdb in 'read only' transaction mode;
    my question is: is this possible to split up the select and insert statements of oracle into 2 different transaction modes, so that select statement is run in 'read-only' mode and insert in 'write' mode?
    i appreicate tips on how this could be achieved
    thx
    rgds

    Hello,
    is this something like:
    insert into oracle_table (select * from rdb_table@rdb_link);
    Then it is easy, you just need to use an sql init file for your OCI Service. Create a file, e.g. sql_init.ini that contains this line:
    declare transaction read only;
    Then alter your service so that it sees the sql init file, e.g.:
    SQLSRV> alter service <your OCI service> sql_init_file sql_init.ini
    The service owner must have the privileges to read the file. You need to restart the OCI service.
    Then a statement of the above kind results in a read only transaction on Rdb side, and the insert on Oracle side is done.
    I hope your SQL/Services version is a recent one (actual version is 7.3.1), because of this (from the SQL/Services Release Notes 7.2.0.1):
    5.4.25 Declare Transaction in SQL Init File Being Overridden
    In releases of OCI Services for Oracle Rdb prior to 7.2.0.1, if a DECLARE
    TRANSACTION statement was executed in the SQL initialization file of a service, it would
    be overridden by a DECLARE TRANSACTION statement executed later by OCI Services
    for Oracle Rdb. Toward the end of the connection setup, OCI Services for Oracle Rdb would
    execute a DECLARE TRANSACTION statement to set the default transaction
    characteristics to be close to Oracle default transaction characteristics. This would supersede
    any DECLARE TRANSACTION statement in the SQL initialization file. Starting with
    release 7.2.0.1, OCI Services for Oracle Rdb recognizes that a DECLARE TRANSACTION
    statement has been executed and will not execute another one.
    Regards
    Wolfgang
    P.S.: It is always better to place Rdb related questions in our communities at https://communities.oracle.com/portal/server.pt/community/rdb_product_family_on_openvms . Those are watched by Rdb Engineering and Support. It was by pure chance that I saw this forum thread.

  • How to start weblogic in debug mode from BEA WebLogic Eclipse plugin

    I have a problem making weblogic work with eclipse3.1. I am using a BEA WebLogic plugin to handle weblogic (start/stop) from eclipse. However I want to debug my application and I am unable to figure out a way to start my weblogic in debug mode like we do in WSAD. I tried using some other plugins also but no luck. Please suggest me a plugin to handle this or any other way of debugging my application from eclipse. I am using weblogic 8.1.

    Hi,
    Dev Environment
    weblogic eclipse plugin 2.0 beta
    weblogic server 8.1
    eclipse 3.1.1
    Created a server that i would like to deploy my EJB so that i can put break points on my EJB in eclipse.
    How do i do it?
    I managed to deploy an ear (containing the ejb) directly to the weblogic installed folder and it deployed the ejb. But the breakpoint set in eclipse is not triggered. Of course in this case as weblogic server is running the .ear file deployed manually in the file system.
    Any help is appreciated.
    Mel

  • How to start weblogic in debug mode ? and how to set the eclipse in the deb

    how to start weblogic in debug mode ? and how to set the eclipse in the debug

    Put this in JAVA_OPTIONS :
    Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=3999,suspend=y,server=y
    After restarted weblogic, in eclipse set your breakpoint , open debug perspective then choose Remote Java Appliction and configure Connection Properties (host=localhost and port=3999)

  • Start weblogic in debug mode

    Hi,
    I want to start weblogic in debug mode.
    Do you know what modifications should be made in the default configurations?
    -John

    John wrote:
    Hi,
    I want to start weblogic in debug mode.
    Do you know what modifications should be made in the default configurations?
    -JohnWebLogic Server doesn't have a debug mode. Are you trying to see debug
    messages in the shell window where you started the server?
    ~Ryan

  • Help! Starting Weblogic in Debug Mode

    Hi there
    Any clues/suggestions are greatly appreciated.
    Has anyone experienced any difficulties when starting weblogic in debug mode.
    More specifically, it cannot start correctly because it thinks that another instance
    is using the same port (definately not the case).
    Error log follows:
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <Unable to create
    a server socket for port: 8320. java.net.BindException: Address already in use
    Perhaps another process is using port 8320.> <Mar 18, 2002 7:42:32 AM GMT+10:00>
    <Notice> <WebLogicServer> <SSLListenThread listening on port 8321> <Mar 18, 2002
    7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <The WebLogic Server is no
    longer listening for connections. You should probably restart it.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <Server shutdown
    has been requested by system> <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer>
    <The shutdown sequence has been initiated.> <Mar 18, 2002 7:42:32 AM GMT+10:00>
    <Info> <WebLogicServer> <Server shutdown is commencing NOW and is irreversible.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Error> <Performance Pack> <Unable to load
    performance pack, using Java I/O. java.lang.ThreadDeath at java.lang.Thread.stop(Thread.java:581)
    at weblogic.t3.srvr.T3Srvr.die(T3Srvr.java:764) at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:507)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171) at weblogic.Server.main(Server.java:35)

    The following error has nothing to do with running in debug mode?
    It just means that there's another process already binded to port 8320
    you might want to see the output of netstat -a
    BTW, what flags you switched on to run the server in debug mode?
    Kumar
    "Mark" <[email protected]> wrote in message
    news:3c951474$[email protected]..
    >
    Hi there
    Any clues/suggestions are greatly appreciated.
    Has anyone experienced any difficulties when starting weblogic in debugmode.
    More specifically, it cannot start correctly because it thinks thatanother instance
    is using the same port (definately not the case).
    Error log follows:
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <Unableto create
    a server socket for port: 8320. java.net.BindException: Address already inuse
    Perhaps another process is using port 8320.> <Mar 18, 2002 7:42:32 AMGMT+10:00>
    <Notice> <WebLogicServer> <SSLListenThread listening on port 8321> <Mar18, 2002
    7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <The WebLogic Server isno
    longer listening for connections. You should probably restart it.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <Servershutdown
    has been requested by system> <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert><WebLogicServer>
    <The shutdown sequence has been initiated.> <Mar 18, 2002 7:42:32 AMGMT+10:00>
    <Info> <WebLogicServer> <Server shutdown is commencing NOW and isirreversible.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Error> <Performance Pack> <Unable toload
    performance pack, using Java I/O. java.lang.ThreadDeath atjava.lang.Thread.stop(Thread.java:581)
    at weblogic.t3.srvr.T3Srvr.die(T3Srvr.java:764) atweblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:507)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171) atweblogic.Server.main(Server.java:35)
    >
    >

  • Type of error in the log file while using using call transaction mode u2018Eu2019

    Hi Gurus,
    Please Answer for this qusetion urgently
    what type of error exactly  you will be seeing in the log file while using call transaction mode u2018Eu2019?
    Thanks/
    Radha.

    Hi,
    Can you be clear.
    In call transaction , no error logs  are created, you have to handle the errors explicitly using the structure BDCMSGCOLL.
    Whenever you use E mode then if the transaction encounters any of the errors i.e. data type mismatching or invalid values etc, it will stop at that screen.
    You can handle the errors in call transaction in the following method.
    create a table using the structure BDCMSGCOLL.
    then
    loop at ......
          CALL TRANSACTION 'XK01' USING I_BDCDATA MODE 'N' UPDATE 'S' MESSAGES INTO I_MESGTAB.
    endloop.
      SORT I_MESGTAB BY MSGID MSGV1 ASCENDING.
      DELETE ADJACENT DUPLICATES FROM I_MESGTAB.
      LOOP AT I_MESGTAB.
        CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            ID   = I_MESGTAB-MSGID
            LANG = I_MESGTAB-MSGSPRA
            NO   = I_MESGTAB-MSGNR
            V1   = I_MESGTAB-MSGV1
            V2   = I_MESGTAB-MSGV2
            V3   = I_MESGTAB-MSGV3
            V4   = I_MESGTAB-MSGV4
          IMPORTING
            MSG  = MESG1.
        IF I_MESGTAB-MSGTYP = 'S' .
          WA_SUCCMESG-MESG = MESG1.
          APPEND WA_SUCCMESG TO I_SUCCMESG.
    else     IF I_MESGTAB-MSGTYP = 'E' .
          WA_ERRMESG-MESG = MESG1.
          APPEND WA_ERRMESG TO I_ERRMESG.
        ENDIF.
      ENDLOOP.
    Hope this is clear.
    Thanks and Regards.

  • Problems with environments and transactional mode in the Python API

    Hello everyone,
    I have been having problems with the Python API, and I wonder if anyone can comment? I am using DB XML version 2.2.13, with python 2.3 (RedHat linux WS 4.0) and python 2.4 (SuSE 10.1) with identical results. I started with a simple example:
    #!/usr/bin/python
    """XPath example from http://www.w3schools.com/xpath/default.asp
    ported to DbXML
    from bsddb3.db import *
    from dbxml import *
    books = """<?xml version="1.0" encoding="ISO-8859-1"?>
    <bookstore>
      [xml data omitted for brevity]
    </bookstore>"""
    if __name__ == "__main__":
        conFlags = DB_CREATE | DB_NOMMAP
        myMgr = XmlManager()
        myMgr.setDefaultContainerFlags(conFlags)
        myMgr.setDefaultContainerType( XmlContainer.NodeContainer)
        uc = myMgr.createUpdateContext()
        container = myMgr.createContainer("books.dbxml")
        container.putDocument("books.xml", books, uc)So far, so good - this works, and creates a container books.dbxml that I can open and query. Next, I try to instantiate the XmlManager using an environment:
    if __name__ == "__main__":
        envFlags = DB_CREATE | DB_PRIVATE
        conFlags = DB_CREATE | DB_EXCL | DB_NOMMAP
        myEnv = DBEnv()
        myEnv.open("/home/pkeller/dbxml_tests", envFlags, 0)
        myMgr = XmlManager(myEnv, DBXML_ADOPT_DBENV)
        myMgr.setDefaultContainerFlags(conFlags)
        myMgr.setDefaultContainerType( XmlContainer.NodeContainer)
        uc = myMgr.createUpdateContext()
        container = myMgr.createContainer("books.dbxml")
        container.putDocument("books.xml", books, uc)This fails with the following output:
    Traceback (most recent call last):
      File "w3school_xpath_c2.py", line 60, in ?
        container = myMgr.createContainer("books.dbxml")
      File "/scratch_bernoulli/pkeller/dbxml/install/lib/python2.3/site-packages/dbxml.py", line 125, in createContainer
        def createContainer(*args): return dbxml.XmlManagercreateContainer(*args)
    RuntimeError: Error: Invalid argument
    Segmentation faultA bit odd - I can't find anything in the docs about the required arguments to XmlManager.createContainer being different if an environment has been used explicitly.
    Anyway, I persevered (my aim being to use transactional mode in Python). Changing the environment and container flags like so:
        envFlags = DB_CREATE  | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_TXN | DB_PRIVATE
        conFlags = DB_CREATE  | DB_EXCL | DBXML_TRANSACTIONAL | DB_NOMMAPThis change allowed the script to run, outputting the single classic line:
    Segmentation fault(the C++ API docs at http://www.sleepycat.com/xmldocs/gsg_xml/cxx/transaction.html#initializetransaction are incorrect by the way - there is no flag DB_TRANSACTIONAL).
    In spite of the segfault, the file "books.dbxml" was produced and could be queried by another application. A transaction log file "log.0000000001" was also written (10485760 bytes long).
    Running this last example again with "python -v" showed that the segfault was being produced during the python's cleanup phase:
    # clear __builtin__._
    # clear sys.path
    # clear sys.argv
    # clear sys.ps1
    # clear sys.ps2
    # clear sys.exitfunc
    # clear sys.exc_type
    # clear sys.exc_value
    # clear sys.exc_traceback
    # clear sys.last_type
    # clear sys.last_value
    # clear sys.last_traceback
    # clear sys.path_hooks
    # clear sys.path_importer_cache
    # clear sys.meta_path
    # restore sys.stdin
    # restore sys.stdout
    # restore sys.stderr
    # cleanup __main__
    Segmentation faultCan anyone clarify what is going on? I had been hoping to deploy DB XML as an alternative to something more admin-heavy, but with this behaviour that would be hard to justify. A dirty exit from Python means that no-one will consider trusting their data to this engine (or am I doing something wrong?).
    Regards,
    Peter.

    Peter,
    Your first failure -- invalid argument -- was due to an invalid combination of
    flags to DBEnv.open(). Along with DB_CREATE you need at least DB_INIT_MPOOL.
    As you can see, it worked once you added more flags.
    The second, cleanup problem (segmentation fault) is the result of out of order
    destruction of objects. This is fixed in the next release (later this year), but
    you can work around it by ensuring that your XmlContainer and XmlManager
    objects are deleted/cleaned up before the DBEnv object.
    Python will cleanup in reverse order of creation, unless you perform explicit
    deletions, which is also fine (e.g. del container, del myMgr).
    Explicit deletion is always safe.
    Regards,
    George

  • POP capabilities are gotten in authorization mode, and not transaction mode

    I am using Javamail in an email client that requires UIDL support for POP3 servers. There are some servers that return the UIDL capability only in transaction mode, not in authorization mode (eg. pop.aol.com). I am unable to connect to such servers once I upgraded to javamail 1.4.4, since it is now looking at the capabilities before executing the UIDL command. However, it gets the capabilities in authorization mode, and servers like the one above do not send the UIDL capability in this mode. If the capabilities were refreshed in transaction mode (once login was done), UIDL would be returned. This looks like a bug. Is there a workaround for this?

    This definitely looks like a bug in AOL's server, please report it to them.
    RFC 2449 says:
       A capability description MUST document in which states the capability
       is announced, and in which states the commands are valid.
       Capabilities available in the AUTHORIZATION state MUST be announced
       in both states.
       If a capability is announced in both states, but the argument might
       differ after authentication, this possibility MUST be stated in the
       capability description.
       (These requirements allow a client to issue only one CAPA command if
       it does not use any TRANSACTION-only capabilities, or any
       capabilities whose values may differ after authentication.)
    6.8.  UIDL capability
       CAPA tag:
           UIDL
       Announced states / possible differences:
           both / noThis says to me that the UIDL capability, if supported, must be announced in both states
    and must not change between states.
    You can set the session property mail.pop3.disablecapa to "true" to disable the use of the CAPA
    command, which will cause it to assume UIDL is supported.

  • Error msgs in call transaction mode using RFBIBL00

    Hi Gurus,
    I am using FRBIBL00 program in call transaction mode to post FI documents and i am getting the below msgs:
    FB012                    Session 1 : Special character for 'empty field' is /
    F5201                    Posting period 008 0831 is not open
    FB012                    Session 1 : Special character for 'empty field' is /
    FB007                    Session 1 session name TEST1 was opened
    FB008                    Session 1 session name TEST1 was created
    Please help me in resolving this.
    Regards'
    Madan.

    Hi Prabhu/Vishwa,
    Thanks for your quick response.
    I am calling RFBIBL00 in "call transaction" mode to post FI ocs.
    here is the format of the file written on to the application server.
    Session - 0TEST1       100KBQ9FCEC    00000000X/
    Header - 1FB01                20080816SAYBP120080831/ CHF  /         /         20080831/               /               /                        /   /
    Item level - 2BBSEG                         50/         //   79378           /               /               /               IU//               /
    2BBSEG                         40/         //   79378           /               /               /               IU//               /
    2BBSEG                         50/         //   42266           /               /               /               IU//               /
    2BBSEG                         40/         //   42266           /               /               /               IU//               /
    The file format is correct, it is working fine in case of Batch session method.
    I want it to work for both Batch session and Call transaction.
    Please help me to reslove call transaction mode.
    Regards'
    Madan.

  • Changing transaction mode for each savepoint?

    hi,
    is there a way of changing transaction mode for each savepoint during a transaction?
    Brgds.

    By transaction mode is meant the mode set at the beginning of the transaction i.e READ ONLY or READ WRITE in Oracle (and not the isolation level).
    We need to simulate several transactions within the same transaction for test purposes. Since each simulated transaction may be either readonly or readwrite we need some way to change the transaction mode several times during the transaction. What we have come with until now is to use SETROLE to toggle between a role with "readonly" rights and one with full "readwrite" rights. Are there other ways?

  • Error "Transactional Mode" in Universe in View Contents

    Hi Experts,
                     I had created a universe connecting to Oracle 9i Database with ODBC and the universe connection is Genric ODBC.
    I am able to get all the tables in the Universe create objects ect.But when i try to view the table content
    I am getting an error "Transactional Mode" any one has any idea .what this could be about.
    Is it coz i am using the Genric ODBC connection or some thing else ???
    Version:  BOXI 3.0
    Regards
    Prashant

    Hi Prashant,
    This error message appears because some databases do not have 'Transactional mode' as a parameter. By default the Generic ODBC connection has this parameter but it is set to 'No'.
    To resolve this error message, comment out the Transactional mode parameter in the odbc.sbo file.
    This resolution involves making a modification to the odbc.sbo file. Incorrect editing can cause unpredictable results.
    Please make a backup copy of the odbc.sbo file and be sure you know how to restore it if a problem occurs. Please make note of the changes you make to the odbc.sbo file and inform technical support of these changes in any future contact.
    1. Find the odbc.sbo file in the default location of <Business Objects install directory>\BusinessObjects Enterprise 11.5\win32_x86\dataAccess\connectionServer\odbc.
    2. Edit the odbc.sbo file and comment out the line:
    "<Parameter Name="Transactional Available">No</Parameter>"
    Use the xml comment characters: "<!-- -->"
    The line should look like this:
    "<!-- Parameter Name="Transactional Available">No</Parameter -->"
    This known issue has been assigned ADAPT00606872, and affects the following:
    BusinessObjects XI Release 2
    This is issues has been fixed in BusinessObjects XI Release 2 SP2 Parts 1 & 2. but as you are using 3.0 i think it is reappeared.
    I am not sure but try installing 3.1 and check whether it has been fixed or not.
    I Hope this Helps..
    Thanks...
    Pratik

  • JNDI with Weblogic Intergrator 2.1

    Hello,
    I have just installed Weblogic Integrator on WLserver 6.1 with service pack 1.
    I would like to know if it´s possible for weblogic intergrator too see JNDI objects
    outside the machine is on, ie Have WLPI installed on machine A , and on machine
    B and C only have Weblogic server installed. At the moment with that exact same
    set up , WLPI can only see JNDI objects on the machine that it is installed on.
    IS there any possibility for this to work.
    Regards Bobby

    Hi Bobby,
    Currently, the only way to do this is to have your own business operation that connect
    to another server to access services that way. WLI can only access local objects and
    services. If the three servers are on the same cluster, the default action for WLS is
    to replicate the objects to all the servers, so your WLI installation should be able to
    see objects locally.
    Sean
    Bobby wrote:
    Hello,
    I have just installed Weblogic Integrator on WLserver 6.1 with service pack 1.
    I would like to know if it´s possible for weblogic intergrator too see JNDI objects
    outside the machine is on, ie Have WLPI installed on machine A , and on machine
    B and C only have Weblogic server installed. At the moment with that exact same
    set up , WLPI can only see JNDI objects on the machine that it is installed on.
    IS there any possibility for this to work.
    Regards Bobby[sean.garagan.vcf]

  • Can't start a cloned connection while in manual transaction mode

    Hi every body
    I'm trying to set my connection autoCommit to false and begin a manual transaction in my application .I use sql server 2000 as my dbms and I set the connection selectMethod to "cursor" ,but when I run my application I see this error
    Can't start a cloned connection while in manual transaction mode
    what's wrong??

    Very hard to say using the code posted. However, a few things immediately jump out at me:
    Call setAutoCommit() immediately after getting the Connection. I have never tried calling that method in the middle of a transaction, and I imagine the results are not good.
    Where are your Statements? You should use PreparedStatement whenever possible. At worst, use a Statement. I don't even see that.
    Either commit and rollback yourself, or let auto-commit do it. IMO, whenever you write SQL, you should be coginzant of when a commit or rollback should occur. Therefore, I never use auto-commit.- Saish

Maybe you are looking for

  • Enterprise not working in SAO manager

    Hi All, I have created a Enterprise Service in the Enterprise Services Builder. I added the source for the Enterprise service in the proxy (XML version) on the back end (ECC 6.04). When I test the service in the back end I get a response with data an

  • AVI - idvd sound drop out?

    When burning an 30 minute avi movie using idvd - the sound plays for the first 4 or so minutes then cuts out on the finished disc. The picture remains perfect - the sound just stops. I have Perian 1.1.3 installed and the movies play perfectly in both

  • Inconsistent type weight when printing pdf (acrobat X)?

    I am having trouble getting type type in my pdf document to appear consistent when printing to the office printer. - the file is originally a ID CS6 document - I export to press quality - the typeface in question is an open type font - the pdf looks

  • Any Report that updates the GR document number of R/3 to SRM

    Hi  Experts Can any one tell me is there any reoprt that updated the GR numbers of R/3 to SRM Because I have done the confirmations in SRM ( 4.0) it created a confirmation number but  the shoppingc art history is not updated with the GR document numb

  • Media browser in iLife and iWork apps do not displays the iPhoto lib

    My iMedia Browser can't find the iPhote library anymore. The same goes for my Aperture library. So i can't find my photo in any of the iLife or iWork apps from the media browser. I have na idea what the problem is. Everthing (for example the iPhoto l