Connection roll back error

Hi,
I have a problem. I am using JSF1.1, EJB2.x, JDBC and weblogic8.1sp6. the structure of the application is like this, jsf bean calls facade bean(which is stateless session bean) method. facade bean method calls dao method to perform database insert/updates. the trasaction attribute of facadebean's method is set to required in ejb-jar.xml.
now I create connection in the dao method and pass that to further dao methods. I have connection.setAutoCommit(false) in the dao methods. Problem is that in case of exception, rollback is not working. whatever updates are performed before the exception, get commited to the database, whether I specify rollback in the catch block or not. If I rollback in the dao method, I get the following exception when trying to rollback.
can anyone help me please?
here are my methods
==============FACADE===================================
     public void edit(AuditData audit_data, ApplicationVo p_vo)
          throws appException {
          try {
               this.getDao().edit(audit_data, p_vo, null);
          } catch (appException e)     {
               throw e;
===================== DAO METHOD =================================
     public void edit(AuditData audit_data, ApplicationVo p_vo, Connection c)
          throws appException {
          boolean connectionNull = false;
          if (c == null) {
               c = this.getConnection();
               connectionNull = true;
          try {
               c.setAutoCommit(false);
          } catch (SQLException e) {
               throw new appException("edit: SQLException in connection setAutoCommit. "+ e.getMessage(), e);
          try {
          //perform some other update/insert/delete operations on a list in applicationVO
          /*......loop over list
          //then audit the changes, audit method also has the same structure.
               this.audit(audit_data, c);
          } catch (SQLException e) {
               appLogger.error("edit:SQLException editing Atttributes " + e, e);
               try {
                    c.rollback();
               } catch (SQLException se) {
                    se.printStackTrace();
                    appLogger.error("edit: SQLException in connection rollback. " + e.getMessage(), e);
                    throw new appException("edit: SQLException in connection rollback. "+ e.getMessage(), e);
               throw new appException("edit: SQLException. " + e.getMessage(), e);
          } catch (appException e) {
               appLogger.error("edit:SQLException editing Atttributes " + e, e);
               try {
                    c.rollback();
               } catch (SQLException se) {
                    se.printStackTrace();
                    appLogger.error("edit: SQLException in connection rollback. " + e.getMessage(), e);
                    throw new appException("edit: SQLException in connection rollback. "+ e.getMessage(), e);
               throw e;
          } finally {
               try{
                    if (connectionNull && (c != null)) {
                         c.close();
               } catch (SQLException e) {
                    appLogger.error("edit:SQLException closing Connection.PreparedStatement. ErrorCode: "
                              + e.getErrorCode() + " SQLState: " + e.getSQLState() + " Message: " + e.getMessage(), e);
============================================ EXCEPTION ======================
java.sql.SQLException: Cannot call Connection.rollback in distributed transaction. Transaction Manager will commit the resource manager when the distributed transaction is committed.
at weblogic.jdbc.wrapper.JTSConnection.rollback(JTSConnection.java:704)
at com.sss.app.dao.OracleItemHelper.edit(OracleItemHelper.java:572)
at com.sss.app.dao.OracleItemHelper.edit(OracleItemHelper.java:548)
at com.sss.app.admin.facade.FacadeSession.edit(FacadeSession.java:573)
at com.sss.app.admin.facade.Facade_r1e6m6_ELOImpl.edit(Facade_r1e6m6_ELOImpl.java:1015)
at com.sss.app.admin.bean.BusinessDelegateBean.edit(BusinessDelegateBean.java:937)
at com.sss.app.admin.bean.AssetAppsBean.edit(AssetAppsBean.java:152)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:132)
at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:61)
at javax.faces.component.UICommand.broadcast(UICommand.java:109)
at org.ajax4jsf.framework.ajax.AjaxViewRoot.processEvents(AjaxViewRoot.java:180)
at org.ajax4jsf.framework.ajax.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:158)
at org.ajax4jsf.framework.ajax.AjaxViewRoot.processDecodes(AjaxViewRoot.java:274)
at org.apache.myfaces.lifecycle.ApplyRequestValuesExecutor.execute(ApplyRequestValuesExecutor.java:32)
at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:95)
at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:70)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:139)
at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:77)
at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1077)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:97)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
at org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:7053)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3902)
at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2773)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
===============================================================

Nitin Deshmukh wrote:
Hi,
I have a problem. I am using JSF1.1, EJB2.x, JDBC and weblogic8.1sp6. the structure of the application is like this, jsf bean calls facade bean(which is stateless session bean) method. facade bean method calls dao method to perform database insert/updates. the trasaction attribute of facadebean's method is set to required in ejb-jar.xml.
now I create connection in the dao method and pass that to further dao methods. I have connection.setAutoCommit(false) in the dao methods. Problem is that in case of exception, rollback is not working. whatever updates are performed before the exception, get commited to the database, whether I specify rollback in the catch block or not. If I rollback in the dao method, I get the following exception when trying to rollback.
can anyone help me please? You are doing a JTA transaction. WLS is managing it. Don't do anything to the
connection that has anything to do with transactions (no setAutoCommit() calls,
and no commit/rollback calls). If you want to affect the transaction, get access
to the transaction object directly and set rollback-only.
here are my methods
==============FACADE===================================
     public void edit(AuditData audit_data, ApplicationVo p_vo)
          throws appException {
          try {
               this.getDao().edit(audit_data, p_vo, null);
          } catch (appException e)     {
               throw e;
===================== DAO METHOD =================================
     public void edit(AuditData audit_data, ApplicationVo p_vo, Connection c)
          throws appException {
          boolean connectionNull = false;
          if (c == null) {
               c = this.getConnection();
               connectionNull = true;
          try {
               c.setAutoCommit(false);
          } catch (SQLException e) {
               throw new appException("edit: SQLException in connection setAutoCommit. "+ e.getMessage(), e);
          try {
          //perform some other update/insert/delete operations on a list in applicationVO
          /*......loop over list
          //then audit the changes, audit method also has the same structure.
               this.audit(audit_data, c);
          } catch (SQLException e) {
               appLogger.error("edit:SQLException editing Atttributes " + e, e);
               try {
                    c.rollback();
               } catch (SQLException se) {
                    se.printStackTrace();
                    appLogger.error("edit: SQLException in connection rollback. " + e.getMessage(), e);
                    throw new appException("edit: SQLException in connection rollback. "+ e.getMessage(), e);
               throw new appException("edit: SQLException. " + e.getMessage(), e);
          } catch (appException e) {
               appLogger.error("edit:SQLException editing Atttributes " + e, e);
               try {
                    c.rollback();
               } catch (SQLException se) {
                    se.printStackTrace();
                    appLogger.error("edit: SQLException in connection rollback. " + e.getMessage(), e);
                    throw new appException("edit: SQLException in connection rollback. "+ e.getMessage(), e);
               throw e;
          } finally {
               try{
                    if (connectionNull && (c != null)) {
                         c.close();
               } catch (SQLException e) {
                    appLogger.error("edit:SQLException closing Connection.PreparedStatement. ErrorCode: "
                              + e.getErrorCode() + " SQLState: " + e.getSQLState() + " Message: " + e.getMessage(), e);
============================================ EXCEPTION ======================
java.sql.SQLException: Cannot call Connection.rollback in distributed transaction. Transaction Manager will commit the resource manager when the distributed transaction is committed.
at weblogic.jdbc.wrapper.JTSConnection.rollback(JTSConnection.java:704)
at com.sss.app.dao.OracleItemHelper.edit(OracleItemHelper.java:572)
at com.sss.app.dao.OracleItemHelper.edit(OracleItemHelper.java:548)
at com.sss.app.admin.facade.FacadeSession.edit(FacadeSession.java:573)
at com.sss.app.admin.facade.Facade_r1e6m6_ELOImpl.edit(Facade_r1e6m6_ELOImpl.java:1015)
at com.sss.app.admin.bean.BusinessDelegateBean.edit(BusinessDelegateBean.java:937)
at com.sss.app.admin.bean.AssetAppsBean.edit(AssetAppsBean.java:152)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:132)
at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:61)
at javax.faces.component.UICommand.broadcast(UICommand.java:109)
at org.ajax4jsf.framework.ajax.AjaxViewRoot.processEvents(AjaxViewRoot.java:180)
at org.ajax4jsf.framework.ajax.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:158)
at org.ajax4jsf.framework.ajax.AjaxViewRoot.processDecodes(AjaxViewRoot.java:274)
at org.apache.myfaces.lifecycle.ApplyRequestValuesExecutor.execute(ApplyRequestValuesExecutor.java:32)
at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:95)
at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:70)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:139)
at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:77)
at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1077)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:97)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
at org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:7053)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3902)
at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2773)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
===============================================================

Similar Messages

  • BAPI_INCOMINGINVOICE_CREATE - a rolling back errors question

    I  need to use this BAPI to create an invoice and a credit memo against the same purchase order in one 'hit'.  If the second call to the BAPI fails, I  want to rollback both sets of changes.  IIt's been fixed in my mind for a while now that this is not  possible.; that if you call  this BAPI  you have to complete the process by committing or rolling back  the changes before calling it  a second time.  However, I've done a bit of testing and doing the commit / rollback after the second call seems to be working fine. 
    Has anyone else done this sort of thing successfully in Production?   I don't  want  to tell them  that it is possible and make them really happy and  then find out that I was wrong.

    I have a similar scenario with BAPI_ACC_DOCUMENT_POST, where two or even four postings need to be made successfully or none at all. The rollback is actually a very rare case in production, but it was tested quite a bit beforehand with forced errors and always worked as desired.
    As you know, it works only as long as the BAPI does not have a commit work inside (they should not if programmed properly).
    Thomas

  • Unable to install AppleMobileDevise.Rolling back -- Errors before AMDS could be configured.

    Unable to install AppleMobileDevise.Rolling back --> Message :   Errors before AMDS could be configured.

    "the installer encountered errors before iTunes could be configured".
    That message sometimes comes at the end of a chain of error messages? If you get earlier error messages prior to that one, could you let us know what the earlier errors say, please?

  • Receiving 'OracleException ORA-24761: transaction rolled back errors

    Hi all,
    I am receiving the above error intermittently in our .NET application. The .NET apps makes heavy use of txns (using COM+), Oracle services for MTS, ODP.NET and is talking to a 9205 db.
    We have tried several combinations of timeout settings in DB and .NET sides (to no avail).
    Any suggestions why this error could be happening?
    Rgds,
    Prasanna

    I enabled ODP tracing but don't know what to look for. The trace files quickly grow to 100+ MB. Searched for strings error/fail/24761/(MTS)/back but couldn't find any useful information.
    Successful calls seem to start with:
    TIME:2003/ 3/10- 9:24:10:140 TID: cc4 (MTS) Enlistment result: 0
    Thanks,
    Armin

  • Surface Pro 3, Win 8.1. Adobe PremElem12 & PhotoshopElem12: roll back error when installing shared technologies

    I'm a technical user of Macs,Windows machines.  Attempting to install the above software on a new Surface Pro3, Win8.1.  I'm setup as an administrator (only user) I've attempted about 2hrs worth of attempted loads with the same error.  I've attempted all forum items, shut off Win Defender, changed admins, deleted PDAppflex.swf and PDAppflex-app.xml, all useless attempts.  I get the feeling, I've wasted $$, appears this is a rampant wide problem.  I can't even imagine if others are going through this.

    Blairjamel please see Install rollback and Shared Technologies | Windows for information on how to resolve your current error.

  • Photoshop 12 error 1935 roll back

    I have received the error 1935 the roll back error in windows for photoshop 12 I have tried to resolve it but the file 00BE does not show on the C: drive

    Hi Chrisvgr,
    Thanks for posting on Adobe forums.
    Please try steps written in the doc :
    http://helpx.adobe.com/creative-suite/kb/error-1935-assembly-component-microsoft.html
    for more information about the error Please check this document from Microsoft:
    http://support.microsoft.com/kb/926804
    Thanks
    Sandeep

  • Once Again: Transaction is not rolled back...

    Hi all,
    I'm almost at the end of my project with Toplink. but I have to solve this transaction rollback problem. Here is my previous message. any comment is more than welcome.
    The problem is this, I pass 2 objects to Toplink to update in database using activeUnitOfWork.shallowMergeClone() method.
    one of the updates fails then I expect everything to be rolled back within the same unitofwork. but NOT. the other object is quite well updated in database even though they are merged in the same unit of work... please HELP...
    here is the log :
    UnitOfWork(31228)--JTS#beforeCompletion()
    UnitOfWork(31228)--#executeQuery(WriteObjectQuery(com.vnu.publitec.axis.persistence.Parameters@7a0b))
    UnitOfWork(31228)--Connection(31249)--UPDATE PARAMETERS SET PARAM_VALUE = '26' WHERE (PARAM_NAME = 'TEST_PARAMETER_2')
    UnitOfWork(31228)--#reconnecting to external connection pool
    UnitOfWork(31228)--#executeQuery(WriteObjectQuery(com.vnu.publitec.axis.persistence.Parameters@7a06))
    UnitOfWork(31228)--Connection(31249)--UPDATE PARAMETERS SET PARAM_MAX_SIZE = 666666, PARAM_COMMENTS = 'updated by new axis...', PARAM_VALUE = '18' WHERE (PARAM_NAME = 'TEST_PARAMETER_1')
    UnitOfWork(31228)--EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3 (Build 423)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: ORA-01438: value larger than specified precision allows for this column
    INTERNAL EXCEPTION: java.sql.SQLException: ORA-01438: value larger than specified precision allows for this column
    ...... //some more message
    UnitOfWork(31228)--JTS#afterCompletion()
    UnitOfWork(31228)--release unit of work
    ClientSession(31229)--client released
    environment information is :
    J2EE Server is Oracle9iAS (9.0.3.0.0) Containers for J2EE
    and following is a piece of sessions.xml file related to external transaction controller settings :
    <session-type>
    <server-session/>
    </session-type>
    <login>
    <datasource>java:comp/env/jdbc/xxx</datasource>
    <uses-native-sql>true</uses-native-sql>
    <uses-external-transaction-controller>true</uses-external-transaction-controller>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    </login>
    <external-transaction-controller-class>oracle.toplink.jts.oracle9i.Oracle9iJTSExternalTransactionController</external-transaction-controller-class>
    thanks
    Erdem.

    Hi James,
    As Erdem is not available, I am now taking care of the issue. The datasource name in session.xml refers to the one defined in OC4J data-sources.xml "ejb-location" attribute of "data-source" element. Below, I attach the relevant sections of both files
    session.xml
    <session>
    <name>Axis_session</name>
    <project-xml>AxisCDM.xml</project-xml>
    <session-type>
    <server-session/>
    </session-type>
    <login>
    <datasource>java:comp/env/jdbc/AXIS_323DS</datasource>
    <uses-native-sql>true</uses-native-sql>
    <uses-external-transaction-controller>true</uses-external-transaction-controller>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    </login>
    <external-transaction-controller-class>oracle.toplink.jts.oracle9i.Oracle9iJTSExternalTransactionController</external-transaction-controller-class>
    data-sources.xml:
    <data-source     
    class="com.evermind.sql.DriverManagerDataSource"
    name="AXIS_323DS"
    location="jdbc/AXIS_323CoreDS"
    xa-location="jdbc/xa/AXIS_323XADS"
    ejb-location="jdbc/AXIS_323DS"
    connection-driver="oracle.jdbc.driver.OracleDriver"
    username="XXX"
    password="XXX"
    url="jdbc:oracle:oci8:@ddb"
    inactivity-timeout="30"
    connection-retry-interval="1"
    />
    On the client we get the following exception:
    com.evermind.server.rmi.OrionRemoteException: Transaction was rolled back: Error in transaction: EXCEPTION [TOPLINK-4002] (TopLink - 9.0.3 (Build 423)): oracle.toplink.exceptions.DatabaseException
    EXCEPTION DESCRIPTION: java.sql.SQLException: ORA-01438: value larger than specified precision allows for this column
    On the server, we have implemented SessionSynchronization to monitor the transaction. afterCompletion method gets a boolean value "true" indicating that the transaction was comitted.
    Any database operation that was successful before the erroneous case was saved in DB.
    Thanks,
    Melih

  • Roll back issues elements 9

    Hello,
    I have used elements 9 many times, but when I tried to use it today both photoshop elements and all my adobe ver 7 and 9 came up with asking me to accept the license agreement. I did and it would not open any program in adobe except CS2, Acrobat 8 and Adobe reader.
    I tried to install ver 9 and it would not or at least it still shows up in windows uninstall, but when you try to uninstall it say the program does not exist.
    I tried to install ver 9 and it always rolled back the install. I do have the log file, but I do not understand what it is telling me.
    Help would be appreciated.

    Hi Larry,
    [email protected] wrote:
    Yes I tried the ASA and had looked at the second link before and I just don't see where it would lead me. At the end where the summary is it shows no errors, but I don't know if that means no roll back errors or what?
    The second link to the Adobe document leads you to looking through the entire installation log for "Return code: 3" listings and how to search the Adobe Knowlege base for clues about that specific error.  That's a good question about the error summary -- the body of the log would have more specific details about what is happening in the entire process.
    [email protected] wrote:
    Do you or another person in the forum have knowledge of what the log is saying.
    I haven't used the installation log to troubleshoot problems, so all I can say is what the Adobe document says:  the log will show failed installation components so one can do further research on the cause of that component failing.
    [email protected] wrote:
    I still have PSE 9 and PRE 9 and PRE 7 Templates showing in Control Panel...Programs window, but when you try to remove them it says "This action is only valid for products that are currently installed".
    That's the part that bothers me the most, because it suggests a larger system problem.  If you've already used the MS Fixit utility:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    and still have those invalid entries, I'm afraid that the system is corrupted and that is what's causing your PSE installation problem.
    My approach would be to first get the system problem sorted out, instead of possibly wasting a lot of time in the details of the PSE installation log.
    Ken

  • HT5318 Itunes 10.6.3 will not install in my computer. It says that it has found errors and is rolling back the install. What can I do?  My laptop is also win7 and it did install there.

    I have a Windows 7 OS 64 bit, ZT desktopcomputer with 16meg memory. I have not been able to install any updates
    to itunes to my computer.  It downloads, but then when installing, it looks like it is going to complete the install
    and then it rolls back and says the errors occured and to try again.  I have a win7 64bit HP Laptop that installed
    the itune updates with no problem.  I have to sync my iphone to my Laptop as it will not work with my desktop.
    Please advise.
         Thanks,
               Roger

    Do you have any other drive connected, which has a copy of FCP X?
    I would make a copy of the application in some drive, just in case; then disconnect the drive, delete the application (could use FCS Remover to delete everything related).
    Then, try installing from the purchases tab in the App Store.

  • RFC Message Listeners giving "Roll Back Fault " Error

    Hi ,
    I have configured message listeners in SAP MII to collect control recipe from R/3 using "control_recipe_download". The connection l is working fine but when I try to push the message from R/3 I get an error "Roll Back Fault Not defined type of Handler class" in SM58.
    Error Msg in MII log : " [JRA]asynch call CONTROL_RECIPE_DOWNLOAD with TID=AADDF85A47D14ED4ABC8E377 to dest. XMIIRFC01 on system can't be handled by StatefulSynchronousMessageListener"
    I have updated the message listeners and restarted the NW server after creating the process message rule.So any other thing I need to check?
    SAP Version : SAP R/3 4.6
    SAP MII 12.2
    Rgds,
    Arun
    Edited by: arun kurup on Nov 29, 2011 8:02 PM

    Spot on Mike ...I had let the binding value blank and after setting it to XMII the messages are coming in MII
    But anyways I have three RFC listeners for three different RFC destination but all the message are going to the third listener "XMIIRFC03" !!! The program id , listener update has all been done....I have asked for an server restart hope this solves it. 
    MII 12.2 with SP2 patch 8 deployed on NW 7.3 SP5.
    We have the SAP upgrade on and will be connecting MII to new system soon till then its 4.6
    Thanks for helping.
    Rgds,
    Arun

  • Folders rolling back in finder view in 10.6 connected to a 10.6 server.

    I have a server 10.6 with all updates and some times when i connect from 10.6.8 clients by AFP some folders roll back automatically any ideas?

    By default the Windows Server 2008 will not have the Line Printer Daemon Service installed and running. With the Server 2008 configured with the Print Services role you need to select the TCP/IP Print Server (LPDSVC) service which allows computers that are using the Line Printer Remote (LPR) service to print to shared printers on this server. The Select Role Services wizard also creates an inbound TCP exception on port 515 for LPD in the Windows Firewall with Advanced Security.
    With this enabled you should then be able to use the LPD queue you created on the Mac's to print to the Windows shared queue. Note that the Queue Name on the Mac will be the name of the share used on Windows. A good tip is to keep the share name short and without spaces.
    Note that when you type the IP followed by \HP4015, you are connecting via RPC/SMB. For Windows this is known as Point & Print and while the Mac can connect to this same queue, you cannot use the same procedure. Instead you can use the Windows icon within the Add Printer browser to browse the workgroup then the computer name. When selected you often have to enter user credentials saved on Windows to then see the printer share. When the queue creation is completed you then can print but often have to authenticate every time you print. This is why LPD is preferred. The other thing is that with SMB connections, you often cannot use the vendors driver for consumer products. But if this HP is a LaserJet that supports PostScript then there won't be the same limitation.
    Pahu

  • Itunes 64 bit on windows 7 is unable to install, i have the 64 bit installer version but it keeps saying "errors occurred" at the ( rolling back ) phase. HELP!

    itunes 64 bit on windows 7 is unable to install, i have the 64 bit installer version but it keeps saying "errors occurred" at the ( rolling back ) phase. HELP!!!

    I have the answer and this might be useful for any one else wondering about this in the future. If it helped you or explained what you wanted to know. Replay to the post pls
    It's quite easy actually. First have your "iTunes Library Extras", "iTunes Library Genius", "iTunes Library", and "iTunes Music Library" backed up. Download ans install iTunes 64-bit. I don't know what's so 64-bit about iTunes 64 since Win7 reports it as a 32-bit application in the task manager. But anyway. Install iTunes 64 and launch it. If you migrated your library to another drive like me go to settings in iTunes and change the directory to your location. Close iTunes. Replace the newly created files with your backed up files. Launch iTunes. iTunes will load and then update your library and from there you are set to go! so basically it is just like a normal upgrade. But if you hesitated to go from 32 to 64 like me, here is your answer.
    By the way. I'm using Windows 7 64-bit with iTunes 64-bit and it works without problems and syncing with my iPod Touch also works flawlessly.

  • Error message after downloading and install rolled back (using up data limit)

    error message after completing install of trial. then program was rolled back. I do not appreciate using up data allotment unnecesarily, people.Thanks for any assistance.

    Rhumsike which Adobe software or service are you trying to install?  Also which operating system are you using?  Finally what is the error message which you are receiving?

  • When installing itunes on my xp sp3 system i get a network error and install rolls back. any thoughts?

    When I install itunes on my XP sp3 system I get a network error while reading from itunes.msi. Then rolls back. any thoughts?

    When I install itunes on my XP sp3 system I get a network error while reading from itunes.msi.
    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Installing lates itunes version to my Windows 7 g4 bit laptop but i always come accross with the error ???????? in the middle of installation. Then it will roll back everything and wont install at all

    Installing lates itunes version to my Windows 7 g4 bit laptop but i always come accross with the error ???????? in the middle of installation. Then it will roll back everything and wont install at all

    What does the error message say? Precise text, please.

Maybe you are looking for

  • How bad can a company be?

    I called BT around mid May. I informed them i was going to move to a new flat in NW2 in June. I told them the flat is being completely renovated and that i wanted to get a phone line. The BT employee on the phone did some checks and confirmed to me t

  • Older PC - FlashPlayer in Linux don't work

    I've installed Windows XP and Ubuntu (dualboot) on my computer. In XP flashplayer plugin works well, but in Ubuntu Chrome flash plugin does not work. Any ideas why that is? PC is a bit old, but in Windows XP it works ... My PC: Athlon XP 2500 + 1.84

  • How do i play a list of ten complete albums?

    I want to listen to my music the way the production engineer put it together in complete albulms, How do I do this in Itunes? Thie is the biggest thing I miss about music match. Thanks in advance.

  • Query regarding DGPS setup

    hello every1, I am using a superstar-2 gps receiver..i have implemeted it successfully in labview and am able to get the position data accurately..right now I am trying to set up DGPS configuration by connecting the other unit into the com2 port and

  • Multiple selection checkbox.

    Hi, I have some list of values,which are coming from other table.I want to implement multiple selection checkbox which allows user to select the desired values by checking them. Finally i want the selected values to get committed into the database. C