Transactional cursor error

Hi there.
I am new to BDB and am using version 4.8.26.
I am experiencing an issue with the Db::cursor() method. It blows up with a DBException where the 'what' informs me "Error:Unable to create variable object"
Can someone please review the code below and tell me what I am doing wrong?
Thanks alot in advance!!
CTOR
          BDBManager(const std::string& env, u_int32_t pagesize, u_int32_t lg_buf_size): m_dbEnv(0){
               u_int32_t envflags =
                         DB_CREATE
                         | DB_RECOVER
                         | DB_INIT_TXN
                         | DB_INIT_MPOOL
                         | DB_INIT_LOG
                         | DB_INIT_LOCK;
               u_int32_t dbflags = DB_CREATE;//don't perform I/O to write to logging subsystem
               * because we are using transactions we need to make sure the
               * log file can hold at least a couple of
               m_dbEnv.set_lg_bsize(lg_buf_size);
               m_dbEnv.open(env.c_str(), envflags, 0);
               m_dbEnv.set_flags(DB_TXN_NOSYNC, 1);
               m_rawMsgs = new Db(&m_dbEnv, 0);
               m_rawMsgs->set_bt_compare(&sortkey);
               m_rawMsgs->open(NULL, "raw.db", NULL, DB_BTREE, dbflags, 0);
               m_state = new Db(&m_dbEnv, 0);
               m_state->set_bt_compare(&sortkey);
               m_state->set_pagesize(pagesize);
               m_state->set_flags(DB_DUPSORT);
               m_state->open(NULL, "state.db", NULL, DB_BTREE, dbflags, 0);
My Dodgy Method
          void openTxn(){
               m_currentTxn = NULL;
               m_putCurs = NULL;
               m_dbEnv.txn_begin(NULL, &m_currentTxn, 0);
               if(tx){
                    try{
                         m_state->cursor(m_currentTxn, &m_putCurs, 0);//cursor only needed for state
                    catch(DbException dbE){
                         m_state->err(dbE.get_errno(), dbE.what());
                    catch(std::exception e){
                         m_state->errx(e.what());
     private:
          static int sortkey(Db* db, const Dbt* a, const Dbt* z){
               u_int64_t aa,zz;
               memcpy(&aa, a->get_data(), sizeof(u_int64_t));
               memcpy(&zz, z->get_data(), sizeof(u_int64_t));
               return (aa-zz);
          DbEnv m_dbEnv;
          Db* m_rawMsgs;
          Db* m_state;
          DbTxn* m_currentTxn;
          Dbc* m_putCurs;

Hello,
"Error:Unable to create variable object" is not a Berkeley DB error.
Is there any issue with space where the program is being run? If you
are not compiling without optimization you could try that.
Are any other errors raised? You can also set verbose messaging
which could provide more information on what the problem is.
You can set verbose error messages with either:
http://download.oracle.com/docs/cd/E17076_02/html/api_reference/CXX/envset_errfile.html
http://download.oracle.com/docs/cd/E17076_02/html/api_reference/CXX/dbset_errfile.html
Thanks,
Sandra

Similar Messages

  • Non-transactional cursor writes block reads

    I'm opening a cursor without using a transaction like so:
    CursorConfig conf = new CursorConfig();
    Cursor cursor = db.openCursor(null, conf);
    I then iterate over the items, sometimes replacing a value. I want to be able to read (and maybe write) to any value from another thread while the cursor is still open, but gets result in the following error:
    com.sleepycat.je.DeadlockException: (JE 3.3.74) Lock expired. Locker 32098350 -1_NioProcessor-3_ThreadLocker: waited for lock on database=settings LockAddr:1537969 node=2623139 type=READ grant=WAIT_NEW timeoutMillis=500 startTime=1229438453225 endTime=1229438453730
    Owners: [<LockInfo locker="11743647 -1_NioProcessor-1_ThreadLocker" type="WRITE"/>]
    Waiters: []
    I would have expected that outside a transaction any update made through a cursor would be applied immediately, but instead the record is locked until the cursor is closed. This happens whether or not je.env.isTransactional is set to true.
    Setting je.env.isLocking to false gives me the cursor behaviour that I want, but I'm not sure what else is affected by this setting, and the javadoc comment is just vaguely worrying rather than helpful ("This property should be set to false only in special circumstances when it is safe to run without record locking.")
    I am not planning on using any transactions in this application.

    Cormac,
    I was looking through the documentation for a reference page to direct you to, and I realized that probably the clearest explanation in the javadoc is in the com.sleepycat.je.LockMode page here: [http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/je/LockMode.html]. There is a reference to it from the CursorConfig page, but I can see that the link between the two pages is not that clear.
    From the LockMode javadoc, there is this paragraph.
    bq. Locking Rules \\ Together with CursorConfig, TransactionConfig and EnvironmentConfig settings, lock mode parameters determine how records are \\ locked during read operations. Record locking is used to enforce the \\ isolation modes that are configured. Record locking is summarized below for \\ read and write operations. For more information on isolation levels and \\ transactions, see [Writing Transactional Applications|http://www.oracle.com/technology/documentation/berkeley-db/je/TransactionGettingStarted/index.html]. \\ With one exception, a record lock is always acquired when a record is \\ read or written, and a cursor will always hold the lock as long as it is \\ positioned on the record. The exception is when [READ_UNCOMMITTED|http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/je/LockMode.html#READ_UNCOMMITTED] \\ is specified, which allows a record to be read without any locking.
    Transactional cursors, by default, hold all locks until the cursor is closed. In your case, you are using a non transactional cursor, and locks are not collected the same way. But a lock for modified record is still taken in a non transactional cursor, and is held as long as the cursor is positioned at that record, to provide cursor stability. I am guessing that is what is happening in your case. If you close the cursor or move to a different position, you will be releasing the lock.
    In a second posting, you comment on your experiences using the je.env.locking property. That property is really only to be used in cases where the application is very constrained and has high performance requirements; frankly, that was put in for a particular set of power users and we really don't recommend it for general purpose use. (We should doc it better too). One characteristic is that it disables log cleaning, because the lack of locks makes it impossible for us to properly coordinate access to the data from the log cleaning threads.
    Regards,
    Linda
    Edited by: Linda Lee on Dec 16, 2008 2:19 PM (changed " link between the two pages is that clear" -> not that clear)

  • Invalid Cursor error when modifying Assignment details - Transfer workflow

    Hi,
    We're trying to submit a Transfer transaction but if we try to modify any field in the Assignment details screen, we're getting a system error, and sometimes we see ORA-01001: invalid cursor error. We have already checked the database objects (procedures, packages, triggers) and we don't see any code which has an invalid use of a cursor. Does anyone have a clue on the cause of this error?

    This is just a guess,
    all you cursors are being opened regardless of any condition, for example;
    OPEN CUT(:NEW.LAYOUT_NO);
    OPEN DET(:NEW.LAYOUT_NO);
    OPEN ITM(:NEW.LAYOUT_NO);
    OPEN LOT(:NEW.LAYOUT_NO);
    OPEN DTN(:NEW.LAYOUT_NO, :NEW.CUT_NO, :NEW.NOTE);UNA however is opened after a condition;
    IF DTN%NOTFOUND THEN
      /** start --added for cha 2011-3172 6/14/2011 **/
          OPEN UNA(:NEW.LAYOUT_NO, :NEW.ACCOUNT_NO);All cursors arel however closed regardless, i.e. they are all assumes to be open;
      CLOSE CUT;
      CLOSE DET;
      CLOSE DTN;
      CLOSE ITM;
      CLOSE LOT;
      CLOSE STAT;
      CLOSE UNA;So I think you are closing the UNA cursors wen it is in fact not open.
    So, move the "CLOSE UNA;" line of code to before the END IF; on line 278, since that is when it will definitely be open.

  • "Invalid Cursor" Error in Form

    Hi,
    I wrote a procedure that take a REF CURSOR as an IN OUT argument. This procedure does an "OPEN cursor FOR qry" with a dynamic query:
    OPEN l_cursor FOR
           'SELECT A '||
             'FROM B '||
            'WHERE C = :l_var'
         USING myVar;After calling the procedure, I do a LOOP with FETCH.
    It works well when I use it in SQL*Plus with DBMS_OUTPUT but it returns a "ORA-01001 invalid cursor" error in Forms.
    Any help is welcome!
    Regards,
    Olivier.

    I found a solution on Metalink:
    Note:170881.1
    Note: 1007395.6
    Olivier.

  • Installing Win 7 via Bootcamp on 27' iMac 2010 gives BLACK screen, BLINKING cursor error (BSBCE)?

    Hi All,
    All coments appreciated regarding thiis issue.
    I have a 2010 27' i7 2.93Ghz iMac with 8Gb ram, 2Tb Seagate, and 256 Samsung SSD.
    I am running 10.6.8 with all updates on the 2Tb Seagate (has BC 3.04), and 10.7.1 on the Samsung (has BC 4.0).
    I have tried over a dozen times to install Win 7 (both a 32 bit Professional edition and a 64 bit Ultimate edition) on BC partitions on both drives. These have been all on separate occasions of course.
    All installs result in what appears to be a successful install, but when the machine reboots to launch Win 7 for the first time, I ALWAYS get a black screen with a blinking cursor error (BSBCE).
    This is not the 2009 video card driver issue problem reported so widely and referred to in the Apple article TS3173. I had that model previously and the way around that was to connect a second monitor/LCD for the installation.
    No this is a new and separate issue.
    And I am no nubie. I have used IT for over 25 years and teach networking courses in the Win and Mac environments.
    The problem appears to be in a corrupt boot loader install.
    I have used both WIn 7 install disks to do a repair each time. The repair says it is successful but after rebooting all I get is the black screen and flashing cursor, with no keyboard response. I have used both Bluetooth keyboards and USB keyboards. Nothing seems to make a difference re getting WIn 7 to boot after the install on either drive.
    I have also used the Bootrec commands in the command window. They all return a successful outcome but when rebooting I see the ever familar BSBCE.
    Now,,,,,here is the real puzzle. I copied my previous Win 7 Ultimate install using Winclone before I sold my older 27' iMac.
    If I restore that install to the 2010 iMac Win 7 boots fine!
    So some error is happening on my current machine when the bootloader/bootmanager is being written to the BC partition.
    The problem is there with the BC on both 10.6 and 10.7, and these are different versions of BC!
    Now to further complicate the problem, I manage 12X 2011 21.5' iMacs in a lab at work. Win 7 Professional 32bit installed on these machines just as it should (same disks that produces the black screen flashing cursor).
    I have read that some people thing it is a Boot Rom version issue, and there may be some substance to this as WIN 7 installs so easily on the 2011 iMacs in my lab.
    I called Applecare about this and went through the procedures outlined above. The guy was very helpful and sympathetic but he had no answer to the problem. His suggestion was to pull the SSD out and do it again with only one drive. As the machine can ship from Apple with both of these drives I really do doubt that pulling the SSD would make a difference.
    Mac OS 10.6 and 10.7 work fine, no problems on both drives, so I don't think it is a drive issue.
    OK Mac gurus...over to you.

    I have a bookmark for iMac w/ SSD and hard drive.
    There is also the 'req'd reading' in http://www.apple.com/support/bootcamp
    with one article on Black screen w/ iMac 2010.

  • Balance in transaction currency error for AUC settlement

    I was trying to perform AUC settlement and hit Balance in transaction currency error. When i open up the line items I found that there are 2 sets (duplicate) of data posted to the depreciation area. The second set is with value 0 except depreciation area 01 posted as 100000EUR.
    so now i have 2 line with 100000EUR for depreciation area 01. I guess this is the main culprit of generating the error Balance in transaction currency.
    I'd glad if someone can tell me why they are 2 sets of data generated in line items? I only post the vendor invoice against the AUC once.
    Or perhaps am I heading to the right way in identifying the root cause of this issue?
    This is part of the AC010 course part of asset accounting that teaching on AUC aasets.
    Any positive reply is welcomed!
    I attached the line item image. Please note that there are some lines hidden for dep area beyond 03. and all are with amount 0.
    [Line Item Image|http://www.bnl.com.my/photos/aucsettle.jpg]
    Edited by: Kam Weng Leong on Dec 13, 2009 5:00 AM

    I was trying to perform AUC settlement and hit Balance in transaction currency error. When i open up the line items I found that there are 2 sets (duplicate) of data posted to the depreciation area. The second set is with value 0 except depreciation area 01 posted as 100000EUR.
    so now i have 2 line with 100000EUR for depreciation area 01. I guess this is the main culprit of generating the error Balance in transaction currency.
    I'd glad if someone can tell me why they are 2 sets of data generated in line items? I only post the vendor invoice against the AUC once.
    Or perhaps am I heading to the right way in identifying the root cause of this issue?
    This is part of the AC010 course part of asset accounting that teaching on AUC aasets.
    Any positive reply is welcomed!
    I attached the line item image. Please note that there are some lines hidden for dep area beyond 03. and all are with amount 0.
    [Line Item Image|http://www.bnl.com.my/photos/aucsettle.jpg]
    Edited by: Kam Weng Leong on Dec 13, 2009 5:00 AM

  • ECC Transaction iView Error on Browser Resize

    Hello.
    I have created hundreds of SAP ECC Transaction iViews in the portal.  After doing some testing, I realized that any time a browser window is modified when an ECC transaction iView is within display, the resize causes the transaction iView to refresh.  Upon refreshing, the transaction throws error or works as if the user submitted the transaction on the backend, instead of just remaining in the same state.
    For instance, if you have an SAP Transaction iView to an ECC system for tcode QM01 and it is accessible through the Detailed Navigation, this iView can be opened either in its own browser window, or within the desktop inner page.  If configured to pop-up in a new browser window and you click or drag to resize the browser window, the transaction refreshes, and throws the error: "Fill in all required entry fields."  This is the same error that is thrown in ECC when a user submits the transaction with no data.  Similarly, if you have the iView configured to open within the portal framework and you click on the transaction it opens in the desktop inner page.  If you maximize/restore down the browser window displaying the portal, the transaction refreshes within the desktop inner page and throws this same error, like it was submitted.
    It happens with every ECC transaction iView that I have created, but does not happen with SRM IAC iViews, Web DynPro iViews, or SUS functionality iViews.  This leads me to believe it is a problem in ITS.  Does anyone know what is going wrong, or how to fix this?
    Thanks for any help!
    Alexa

    Hi,
       Super admin has permission for end user for all the iViews. So he will be able to view the iView. As mentioned, please check if the end user permission is given for the end user to access the iView. Also check if the permission is given for that particular system. To check permissions, go to System Administration -> Permissions -> Portal permissions -> Portal Content. Check for iView and system that you have created.
    Regards,
    Harinin S

  • Get error from SQL AGENT: The SSIS Runtime has failed to enlist the OLE DB connection in a distributed transaction with error 0x8004D024

    I am running SQL Agent that executes an SSIS process from sql server1. The SSIS process executes its SQL/tables/sp’s  against another sql server2.
    I get an error after adding data flow tasks with transaction supported within a sequence with transaction required. The error, “The SSIS Runtime has failed to enlist the OLE DB connection in a distributed transaction with error 0x8004D024 "The transaction
    manager has disabled its support for remote/network transactions"
    Prior to adding this sequence everything was working from sql agent, and there were other sequences with oledb destinations.
    Everything works when running within SSIS Package.
    I see this article on similar issue,
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/0bfa2569-8849-4884-8f68-8edf98a9b4fe/problem-to-execute-a-package-and-tasks-with-a-certain-transactionoption-property-i-need-help?forum=sqlintegrationservices
    “I had similar issue and solved by setting the following on both the machines. Allow Remote Clients, Allow Remote Administration,
    Allow Inbound Clients, Allow Outbound Clients, and TIP are enabled in Component Services/My Computer/Properties/MSDTC/Security Configuration.”
    I don’t want to remove transaction required for the “Remove Duplicates from Staging” sequence.
    Anyone seen this?
    Greg Hanson

    DTC was running on remote computer. The problem was it was no longer accepting transactions from remote servers. This was in SSIS so I had to turn to "Transaction Supported" for all Data Flow Transactions.
    Greg Hanson

  • Yum install Oracle-Validated Transaction Check Error:

    Doing a yum install oracle-validated command with CentOS 5.3 and got these errors:
    Running rpm_check_debug
    Running Transaction Test
    Finished Transaction Test
    Transaction Check Error:
    file /etc/issue from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /etc/issue.net from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /etc/redhat-release from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /usr/share/eula/eula.en_US from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /usr/share/firstboot/modules/eula.py from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /usr/share/firstboot/modules/eula.pyc from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    file /usr/share/firstboot/modules/eula.pyo from install of enterprise-release-5-0.0.17.x86_64 conflicts with file from package centos-release-5-3.el5.centos.1.x86_64
    Error Summary
    Did the yum update work? Should I procede with the oracle install?
    Thanks in advance

    Hi Tom,
    Could you please help me as im trying to install ORACLE OID 10.1.4.0.1 on OEL 5 n trying to use yum to load the default RMP
    ]# yum install oracle-validated
    Loaded plugins: security
    el5_oracle_addons | 951 B 00:00
    primary.xml.gz | 1.6 kB 00:00
    el5_oracle_addons 10/10
    epel | 2.3 kB 00:00
    primary.sqlite.bz2 | 2.0 MB 00:05
    el5_ga_base | 1.1 kB 00:00
    Setting up Install Process
    Parsing package install arguments
    No package oracle-validated available.
    repo file :
    [el5_ga_base]
    name=Enterprise Linux $releasever GA - $basearch - base
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/0/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=1
    [el5_u1_base]
    name=Enterprise Linux $releasever U1 - $basearch - base
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/1/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=0
    [el5_u2_base]
    name=Enterprise Linux $releasever U2 - $basearch - base
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/2/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=0
    [el5_u3_base]
    name=Enterprise Linux $releasever U3 - $basearch - base
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/3/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=0
    [el5_addons]
    name=Enterprise Linux $releasever - $basearch - addons
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/addons/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=0
    [el5_oracle_addons]
    name=Enterprise Linux $releasever - $basearch - oracle_addons
    baseurl=http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/oracle_addons/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
    gpgcheck=1
    enabled=1
    best regards,

  • J1IEX: Balance in Transaction Currency ERROR

    All SAP Gurus,
    While doing J1IEX: Balance in Transaction Currency ERROR occurs.
    This happens only when figures are not even in case of capital goods credit.
    Which SAP Note to be applied so that, system will accept odd figures too.
    Regards,

    Hi Rajan, Check the following threads :
    Balance in transaction currency
    Re: Balance in transaction currency Error

  • Balance in transaction currency error

    Hi Friends,
    In order to ressolve "Balance in transaction currency"  error during J1IIN, we have applied oss notes 1018071 & 978186. However we are getting same promblem
    Please help on this.

    Hi shiv,
    Kindly refer this threads,
    Balance in transaction currency
    Error : Balance in Transaction Currency
    Error F5702 Balance in transaction currency VF01
    Re: Balance in  Transaction Currency
    error in Balance in transaction currency
    Balance in transaction currency
    Thanks,
    Swamy H P

  • Transaction Processor Error in View Pending Transactions

    Dear All,
    I am getting the Error: "Transaction Processor Error" in View Pending Transactions.
    How can I identify due to what reason, this error had occured
    because of this I am not able to close the inventory period for these transaction months..
    and also I am having the following Error msg for another item in view Pending Transactions..,
    How can I clear this ..?
    Please update...
    Many Thanks in advance....
    Edited by: santark on Nov 10, 2009 6:46 PM

    Hi,
    This is not really and error. Oracle processes transaction in a batch. If one record will fail because of some error, other records/transaction in the batch fails with this error. For this error you really need to get the ERROR_EXPLANATION to find out the exact message as to why it is possibly failing. These can usually have their three flags reset and re-submitted as this error is usually attached to those records in a group where one of the records has been erred with one of the more severe errors.
    I believe you can resubmit the transactions which are failed with the below script
    Update mtl_material_transactions_temp
    set      process_flag = ‘Y’,
         lock_flag = 'N',
         transaction_mode = 3,
    error_code = NULL
    Where organization_id = &org_id
    Thanks,
    Raghav

  • Transact RFC error

    Hi Gurus,
    I am getting one issue while loading the data thru infopackage.
    While loading the data in 3.5 flow for some souce system it is taking long time
    and givig me transact RFC error. I have checked the source system connectivity and it is fine.Although  the status is yellow during the load but at the end of the load it turns to red and it gives me below mentioned error:
    Missing data packages for No selection information arrived from the source s
    Diagnosis
    Data packets are missing from No selection information arrived from the source s. BI processing does not return any errors. The data transport from the source system to BI was probably incorrect.
    Procedure
    Check the tRFC overview in the source system.
    You access this log using the wizard or following the menu path "Environment -> Transact. RFC -> Source System".
    Error handling:
    If the tRFC is incorrect, resolve the errors listed there.
    Check that the source system is connected properly to BI. In particular, check the remote user authorizations in BI.
    Kindly let me know your suggestion in this issue.
    Thanks in advance.
    Amit

    Hi
    This error would normally occur, if at the time of processing, the data packets get stuck
    To check for stuck trfc follow the path
    Environment -> Transact. RFC -> Source System
    there, check if trfc recorded, then it means, it is stuck, slecect that particular record and press F6 to execute the LUW.
    If this is not the case, check the job overview in the source system.
    IF you find ARFCSTATE = loading/sysfail, it means the trfc is stuck ..
    you can check the datapacket number from there, and try mannual update for those partiular data packets.
    Or else, sometimes, the packet itself doesnt arrive in BW, because of connection problem during the processing of few packets, ands later when you check, it seems fine.
    In such cases simply repeat the load
    Hope this helps
    Regards
    Shilpa

  • Transaction Control Error

    Hi,
    i am getting "Transaction Control Error" in newly created Client while executing any tcode. can you please give the solution for this.
    venkat

    Hi,
    i copied from 000 client to new client. it was successfully completed. After that if execute mm01 or mm02 transactions this type error i am getting. Can you please give the solution..
    venkat

  • Transaction Demarcation Error

    Hi,
    I have written entity bean and tried to verify it in J2EE 1.4 SDK in Deploytool.
    It's giving me one error about findByPromaryKey() and findBySalary() methods in SalaryHome interface and description of error is something like "...Transaction Demarcation Error...".
    Any idea when it comes and how to resolve it?
    Any help is appreciated.
    Thanks
    Rajeev.

    These methods should have container-transaction attributes defined for them in the ejb deployment descriptor, ejb.xml.
    <container-transaction>
    <method>
    <ejb-name>TestBeanEJB</ejb-name>
    <method-intf>Home</method-intf>
    <method-name>findByPrimaryKey</method-name>
    <method-params>
    <method-param>java.lang.Integer</method-param>
    </method-params>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>

Maybe you are looking for

  • Deploying Enterprise Archive into weblogic 10.3.4.0 application server

    Hi All, I am trying to deploy enterprise archive into web-logic application server. This ear contains two modules. web service module and web application module. This application was previously running on Apache tomcat server and now i am migrating t

  • Not receiving email from AOL

    Hi - About a week ago I stopped receiving email from AOL on my i5s phone.  Only thing I can think of is I changed my password on AOL, I tried changing it on my phone too, but I get the following message.  "Cannot Get Mail  The mail server "imap.aol.c

  • Integration between Lightroom and Photoshop broken

    It will almost inevitably turn out that I'm missing something glaringly obvious, but since upgrading to Lightroom 5.5 and Photoshop CC 2014, my photos are losing their LR adjustments when sent to PS. I'm no longer asked how I want the RAW files rende

  • Can i connect imac and macbook by usb?

    can i connect imac and macbook pro by using USB clable? i just want pass my files and music from macbook to imac. thank you

  • What happens after reformatting the computer ? ( windows XP )

    Hello everyone, after a nearly two years of running, my winxp installation needs a cleanup so i'm planning on formatting the hard drive and installing xp So i wanted to know what to do in order to backup the iTunes/iPhone sync i'm guessing there's a