ManagedConnection.cleanup called before XAResource.end

I am the developer for a JCA 1.5 resource adapter named DTPRA. Note that DTPRA works with WebSphere Application Server, WebLogic Application Server and JBoss Application Server.
I have never tested DTPRA with the Sun App Server, so I downloaded Sun Java System Application Server Enterprise Edition 8.2 (build b25-fcs) to test DTPRA.
After overcoming a number of other issues, I encountered a problem which has me stalled at this point.
I tried a simple transaction request. At the end of the �active� phase of processing, the App Server called the ManagedConnection.cleanup method prior to calling to the XAResource.end method. When the XAResource.end method was called later, DTPRA threw the exception because the state was wrong (the managed connection was no longer involved in a transaction). Here is an excerpt from the DTPRA trace:
06/27/07 13:27:32.340  RA=dtpra        TYPE=FINER   THD=0084e723-service-j2ee       
DtpInteraction.execute: returning from execute a value of true
DtpConnection.destroyInteraction: Entering method
DtpConnection.close: Entering method close (for connectioncom.unisys.dtp.connector.DtpConnection@557c15)
DtpConnection.closeConnection: no interactions to close
DtpConnection.closeConnection: connection com.unisys.dtp.connector.DtpConnection@557c15 no longer active
DtpManagedConnection.fireConnectionClosedEvent: Firing Connection closed event; 1 listeners() registered
DtpManagedConnection.cleanup: Entering method
06/27/07 13:27:32.340  RA=dtpra        TYPE=FINE    THD=0084e723-service-j2ee       
DtpManagedConnection.cleanup: Clean Up Request: 1 connection(s) active
06/27/07 13:27:32.340  RA=dtpra        TYPE=FINER   THD=0084e723-service-j2ee       
DtpManagedConnection.cleanup: ManagedConnection cleanup successful
DtpXAResource.end: xa_end called flags = TMSUCCESS (0x4000000)
06/27/07 13:27:32.340  RA=dtpra        TYPE=FINEST  THD=0084e723-service-j2ee       
DtpResourceAdapter.createXid: txHelper is null...
06/27/07 13:27:32.340  RA=dtpra        TYPE=SEVERE  THD=0084e723-service-j2ee       
DtpManagedConnection.transactionCompleted: Throwing exception.
javax.resource.spi.IllegalStateException: XA_END Received but ManagedConnection not currently participating in transaction, error code: NO_TRANS
      at com.unisys.dtp.connector.DtpManagedConnection.transactionCompleted(DtpManagedConnection.java:1014)
      at com.unisys.dtp.connector.DtpXAResource.end(DtpXAResource.java:160)
      at com.sun.jts.jta.TransactionState.beforeCompletion(TransactionState.java:125)
      at com.sun.jts.jta.SynchronizationImpl.before_completion(SynchronizationImpl.java:62)
      at com.sun.jts.CosTransactions.RegisteredSyncs.distributeBefore(RegisteredSyncs.java:120)
      at com.sun.jts.CosTransactions.TopCoordinator.beforeCompletion(TopCoordinator.java:2491) The Sun App Server behavior looks incorrect to me. I reviewed the JCA 1.5 spec (page 6-43 shows a nice diagram), and it looks like the App Server is supposed to call XAResource.end before the App Server calls ManagedConnection.cleanup. This is what DTPRA expects and gets with the other App Servers.

I set ALLOW_MULTIPLE_ENLISTS_DELISTS to true and restarted the App Server.
This worked! Now XAResource.end is called before ManagedConnection.cleanup, as I expected. No errors occur and the transactions are committed properly.
Thanks a lot for your help.
But now I have some follow up questions:
1) I searched the Sun document online and did a google. I did not find anything on the property ALLOW_MULTIPLE_ENLISTS_DELISTS. Is this documented somewhere?
2) At some point I will probably need to document for my users how to use DTPRA with the Sun App Server. But I am wondering what side effects, if any, there are if I were to tell my customers to always set this property when using DTPRA with Sun App Server. Can you tell me more about this property?
Thanks again!

Similar Messages

  • Test call of TP ended with return  0212

    while releasing a transport request, getting the following error message-
    test call of TP ended with return  0212
    your transport request cannot be exported , since all the requirements are not fulfilled
    calling transport control (tp) program "TP EXE CHK DEVK908291  pf=usr/sap/trans/bin/tp_domain_PRD.pfl -Dtransdir=usr/sap/tr"
    which checks the export requirement , returned the following information
    returned code from tp :0212
    further processing is terminated
    Please help if anyone has any clue
    Regards
    Al Mamun

    Hi Eric,
    Thanks for your reply,
    I have checked the configuration, looks ok. The path is ok, I missed the / before usr while typing this message.
    one thing I checked that there is no cofile or datafile corresponding to that transport. Same thing is happening while releasing  other transports.
    Is it mount problem?
    Al Mamun

  • Query about XAResource.end() API in JMS context

    Hi All,
    I have a small query regarding the behavior of an XAResource supplied by a JMS server.
    Suppose I start a transaction using XaResource.start() method and I create a publisher and registered durable subscriber on the XASession that supplied the above mentioned XAResource. After that I send some messages and receive some messages from a Topic that already had some messages for the concerned Subscriber.
    Now I end this transaction by calling XaResource.end() with the flag TMSUSPEND.
    My question is that can the Publisher and Subscriber objects created between the start() and end() methods of the XAResource object be used now after the transaction has been suspended.
    Also now if I resume this transaction can I use these publisher and subscriber objects again without re-creating them.
    It would be great if some of the bright people on this forum can share some info on this.
    cheers
    Adolf

    Now I end this transaction by calling XaResource.end()
    with the flag TMSUSPEND.
    My question is that can the Publisher and Subscriber
    objects created between the start() and end() methods
    of the XAResource object be used now after the
    transaction has been suspended.This is dependend on the JMS implementation. If it falls back into a local transaction context after suspending the current XA tx, then yes, otherwise no.
    Also now if I resume this transaction can I use these
    publisher and subscriber objects again without
    re-creating them.IMO, yes.
    However, chapter 8 of the JMS spec (XA/ASF) is intended to use within a J2EE environment. Thus, most of the behavior of JMS XA/ASF is specified in the EJB spec, not in the JMS spec. If you consult both, you'll get the whole picture. Whether JMS XA/ASF works with a specific app server is dependent on the app server's implementation of this part. For example, some use ASF (connection consumers) with callbacks for message/tx association (like the J2EE ref impl), some use ASF without callbacks (like JBoss, WebSphere) so there has to be an automatic association with XAResource.start. Some don't use ASF at all but a message consumer (like WLS). And so on. JCA 1.5 with JMS pluggability uses callbacks.
    It's very tricky and time consuming to integrate a JMS server XA/ASF wise into an app server. Every app server is different. Sometimes you'll have to implement proprietary interfaces to plug into it.
    We have done that. How it works is here:
    http://www.swiftmq.net/products/kernel/jmsxaasf/index.html

  • Last software update of OS X Lion: the system freezes before the end.

    I was doing the last update of OS X Lion on a MacBook Pro (10.7.3). Before the end of the process, the system freezed. The only solution was the off button of the desktop. But after it was impossible to open it again. I had to restore OS X from the Time Machine backup. Can you help me? What is the problem? What do I have to do?

    Just fixed this myself.
    SWUPD is expecting a directory within the one you chose, called "html".
    Example: /Volumes/XSAN/SWUPD/html
    It will not create "html" if the directory doesn't exist.
    Create the folder "html" then in terminal do this:
    sudo chown -R _softwareupdate:_softwareupdate /path/to/the/folder
    Example: sudo chown -R _softwareupdate:_softwareupate /Volumes/XSAN/SWUPD
    ##do not include/html. the -R means recursive and forces the same ownership on all contained directories.

  • Your free Caller Display offer ends soon

    On Saturday I receie an email:
    At the moment, you've got BT Privacy with Caller Display on a free offer for 12 months. The offer is ending soon and you'll then start paying the usual £1.75 a month to keep the service. But don't worry, you can still get it for free. Read on to find out how.
    What is it again?
    BT Privacy with Caller Display is a really handy service that's easy to take for granted. It's the smart way to know who's calling before you answer your phone. And it's a great way to avoid calls you don't want to take, like sales calls.
    What you need to do
    Take your pick from one of these options.
    1. Get it free for another year.
    You can do this by renewing your Caller Display and line rental contracts for another 12 months.
    So I opted to renew line rental with a futher 12 months free Caller Display.  I went right through the procedure and expected to get an email confirming the order with instrucions on how to pay - but nothing.  So how do I go about checking if the order went through please?
    Thanks very much.
    Graham

    grajay wrote:
    ... expected to get an email confirming the order with instrucions on how to pay - but nothing.  So how do I go about checking if the order went through please? 
    After re-contracting line rental for a minimum of 12 months you would continue to pay for it in the same way as you currently do, by either monthly or quarterly bill usually settled by direct debit.
    If you want to make use of Line Rental Saver and pay for a whole year of line rental in advance at the cheaper rate then that is a different product that needs ordering as well.
    Try this page for order tracking.
    https://www.bt.com/appsconsumerordertracking/

  • Sending a Newsletter to 15,000 people - Problem: it stops before the end!

    Hi everyone,
    I'm trying to send a Newsletter to 15,000 people. I already have a solution using JavaMail and Servlets/Beans/JSP but it's ending before the end of the process... Here is a summary of the Servlet performing the sending:
    // imports, etc.
    private static final String recoveryAddressString = "[email protected]";
    public void performTask(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
         java.sql.Connection connection = null;
         DatabaseConnection connBean = null;
    try {
    connection = ConnPool.getConnection();
    connBean = new DatabaseConnection(connection);
    connBean.setAutoCommit(false);
              java.util.Properties properties = System.getProperties();
    properties.put("mail.smtp.host", Const.SMTP_SERVER);
    Session session = Session.getDefaultInstance(properties, null);
    // Calling several beans for making the Newsletter (date, articles, images, etc. = ...a lot)
         // Calling the bean "envoinewsletterdbbean" for getting the list of the 15.000 InternetAddresses, THEN:
    for(int i = 0; ; ){
    try {          
         String emailEnvoyeur = "[email protected]";
         String emailDestinataire = envoinewsletterdbbean.getEmail(i);                     
    MimeMessage mimemessage = new MimeMessage(session);
    // From:
         InternetAddress inetAddrEmailEnvoyeur;
    try {
         inetAddrEmailEnvoyeur = new InternetAddress(emailEnvoyeur);
    } catch (AddressException ae) {
    // recovery address
    System.out.println("***erreur email de l'envoyeur");
    inetAddrEmailEnvoyeur = new InternetAddress(recoveryAddressString);
    mimemessage.setFrom(inetAddrEmailEnvoyeur);
    // To :                         
         InternetAddress inetAddrEmailDestinataire;
    try {
         inetAddrEmailDestinataire = new InternetAddress(emailDestinataire);
    } catch (AddressException ae) {
    // recovery address
    System.out.println("***Erreur adresse email du destinataire");
    inetAddrEmailDestinataire = new InternetAddress(recoveryAddressString);
    mimemessage.addRecipient(Message.RecipientType.TO, inetAddrEmailDestinataire);
    mimemessage.setSubject(titreNewsletter);
    String bodyText = "<html>";
    bodyText = bodyText + "<head>";
    //(... very long)
    //(getting the text of the articles, images from the beans...)
    mimemessage.setContent(bodyText, "text/html");
    try {
         javax.mail.Transport.send(mimemessage);
    } catch (Exception exception) {
         exception.printStackTrace();
         LogServiceTool.log("Exception lev\351e : " + exception, 1, getClass().toString());
         handleError(request, response, Const.pathWas_FO + Const.FO_error_page, exception);
    i++ ;
    } // exception at the end of theInternetAddress list...
    catch (java.lang.ArrayIndexOutOfBoundsException _e0) {
    System.out.println("***fin de la liste des expediteurs... sortie de la boucle");
    break;
    } //etc. END
    MY PROBLEM IS: After something like 200 mails sent, I'm kinda logged out: "Response: no-url" in my JSP, because the operation is too long with my loop on the InternetAddresses, so far.
    Is there a solution, like an independent "batch process" to perform the sending outside the session? Or is there a means using folders or different connections... ?
    Thanks for your help...
    Denis

    One simple solution is to have the servlet start a new thread and allow the original one to respond to the client.
    A better way of doing this is to have a stand alone application send the messages out. You can have it run manually or on a scheduler.
    Don't use a jsp page as the trigger, and don't run the logic in the webserver, they were not designed to do these things in the way you want.

  • The call was cancelled by the caller before the remote party answered

    Hi,
    We have a Lync 2010 Enterprise deployment in a single site with 2 FE and Mediation Server collocated.
    When dialling a number from a PSTN phone the call gets routed via our PBX/PBX Gateway/Mediation Server/FE Server to the desktop Lync client successfully.
    As soon as the user answers the call with the Lync client the call 'hangs' and terminates without hearing anything on either side.
    The snooper logs show:
    Error:
    SIP/2.0 487 Request Terminated
    Partial Content:
    User-Agent: UCCAPI/4.0.7577.4398 OC/4.0.7577.4398 (Microsoft Lync 2010)
    Ms-client-diagnostics: 52092;reason="The call was cancelled by the caller before the remote party answered"
    Content-Length: 0
    Please help?
    Vinkie

    What kind of gateway are you using to connect to your PBX and how?  What is your media set to?  G.711 μ-law or a-law?  I'd check media settings there as a starting point. 
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".

  • TS1717 All my music stops before the end of the tune; whether bought through Itunes library or if loaded from my own personal collection.  This has only happened when i changed computer.

    When my music ois playing whether on computer or on iphone, every tune quits before the end, losing as much as a minute sometimes.  i know the full song is there because i see the timer moving towards the end but jumps to the next song before it gets anywhere near the end.
    All my downloads onto iphone have now got the same problem.  How to resolve?
    My computer is not an apple, the operating system is windows 7.
    Mike Dewar

    Hard to tell and remember whether it's happening just to pre-itunes plus music.  However, it's happening to many songs ripped from my personal CD collection.  With 10,000+ songs transferred from my own CD's I'm not high on re-ripping the entire collection.
    This seems to have happened in the past 6-12 months and can't help but wonder if one of the upgrades to iTunes somehow corrupted some file or meta data that is causing this effect.
    Gary

  • Hello  Simple problem - don,t know how to solve it.  With Premiere CC when I try to do a selection (click... drag... release the click) very often it stop way before the end of the move I'm swinging the Magic Mouse. I taught that the mouse clicking was de

    Hello
    Simple problem - don,t know how to solve it.
    With Premiere CC when I try to do a selection (click... drag... release the click) very often it stop way before the end of the move I'm swinging the Magic Mouse. I taught that the mouse clicking was defective and went to get a new Magic Mouse after lots of frustration. Today, I have an edit to do it it does the SAME thing !!
    I was like ????#$%?&*(???
    Opened all the lights and taught I've trow the new mouse to the garbage and was using the defective mouse again... no !! - ??
    Actually, the bran new mouse is doing the same thing. What I understand after investigating on the motion and watching carefully my fingers !! -  is that when I click I have to keep my finger at the EXACT same place on the mouse... drag and release and it's fine. If I click by pushing on the mouse and my finder is moving of a 1/32th of a millimeter, it will release and my selection will be to redo. You can understand my frustration ! - 75$ later... same problem, but I know that if I click with about 5 pounds of pressure and trying to pass my finger through the plastic of the mouse, it you stay steady and make it !
    The problem is that scrolling is enable while clicking and it bugs.
    How to disable it ??
    Simple question - can't find the answer !

    Helllooo !?
    sorry but the Magic Mouse is just useless with the new Adobe Premiere CC and since I'm not the only one but can't find answer this is really disappointing. This mouse is just fantastic and now I have to swap from a USB mouse to the Magic Mouse every times I do some editing. My USB mouse if hurting my hand somehow and I want to got back to the Magic Mouse asap. Please - for sure there is a simple solution !
    Thanks !!

  • Apps Adapter API is called before Db Adapter inserting data

    Hi All,
    I am using a bpel process which calls db adapter to insert/update data in staging table, after this activity i am calling a Apps Adapter PLSQL API where it takes the data from staging table and performs some functionality. But the problem here is Apps adapter PlSQL API is getting called before isnerting data in staging table.
    Below are the steps in BPEL Process,
    1. receive activity
    2. data transformation
    3. invokes db adapter through merge operation to insert/update in staging tables
    4. invoke Apps Adapter PLSQL API
    Error is thrown at Apps Adapter invoke activity, saying null values. presently we used a wait activity before invoking apps adapter.
    Do the invoke of Apps Adapeter doesnt happen after Db Adapter inserting data?
    Thanks,
    Ra

    Hi Team,
    Even I faced the same problem.
    I am checking, do we have any configuration setting to avaoid these kind of problem.
    Even my process has point 2 & 3 in a single sequence and point 4 in another sequence.
    Any help to resolve this problem is greatly appreciated.
    Thanks for your help in adavance.
    Cheers
    Chandru

  • I rented a movie on iTunes and, really annoyingly, it has stopped 30 minutes before the end. Any suggestions? And how do I go about getting a refund?

    I rented a movie on iTunes and, really annoyingly, it has stopped 30 minutes before the end. Any suggestions? And how do I go about getting a refund? Thanks so much for any suggestions.

    Hi alefiya,
    Welcome to the Support Communities!  It sounds like the movie didn't completely download. This link will get you in contact with the iTunes Support Team.  They will be able to review your account with you:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933?viewlocale=en_US
    Cheers,
    - Judy

  • Itunes and Ipod Classic stop before song ends after transfer to new computer

    I purchased a new Windows 7 computer and transferred my library from my XP computer.
    I restored my library and all seemed well with the world.
    I synched my IPod classic 120GB with over 8000 songs.
    I was listening to the IPOD on my docking station when I started noticing that songs would just stop before the end of the song.
    I thought my 120GB Ipod was dying, so I purchased a new 160GB.
    The problem continued.
    I then listened to them on the new computer in Itunes and they did not completely stop, they just skipped to the next track at the same place as it froze on my IPOD.
    I listened to the same song on my old computer through Itunes and it played correctly.
    I have do not have the Itunes Match and the songs that I currently know that have the problem were purchased on Itunes.
    Any suggestions as how to resolve the issue?

    I would try copying over the tracks from your XP computer again as the files from the first transfer may be corrupted.
    B-rock

  • IPad can't get past step 8 when syncing. I have to unplug before the end. Is this normal? What do I do to solve the issue?

    iPad can't get past step 8 when syncing. I have to unplug before the end. Is this normal? What do I do to solve the issue? Thanks. JD

    It is syncing through everything and then failing to close out. If I disconnect then the libraries are all there although I have lost a movie and a few tracks downloaded as a result of this.
    JD

  • I can't burn any DVD or CD - burning process interrupts before it ends

    Hi everybody !
    Sorry for my bad english, but I assume you're all aware about the frenches are not very good at english.
    I've got the following problem: I can't burn any dvd or cd. I've already tried with different programs such as Sonic, Nero 7.0, and I Tunes, and I got every time a mistake wich interrupted the burning process before it ends.
    So I don't know what to day ! I've already tried to re install the drivers, but it's didtn't change anything.
    In order to help you, I've saved an error log from nero. I hope it could be helpfull to someone who could help me !
    Here is the log:
    moi
    5C82001080000000000666822849
    Windows XP 5.1
    IA32
    WinAspi: -
    ahead WinASPI: File 'C:\Program Files\Nero\Nero 7\Core\Wnaspi32.dll': Ver=2.0.1.74, size=164112 bytes, created 02/11/2004 13:54:32
    NT-SPTI used
    Nero Version: 7.0.0.0
    Recorder: <MAT****A DVD-RAM UJ-841S>Version: 1.60 - HA 1 TA 0 - 7.0.0.0
    Adapter driver: <IDE> HA 1
    Drive buffer : 2048kB
    Bus Type : default (0) -> ATAPI, detected: ?
    CD-ROM: <MAT****A DVD-RAM UJ-841S >Version: 1.60 - HA 1 TA 0 - 7.0.0.0
    Adapter driver: <IDE> HA 1
    === Scsi-Device-Map ===
    DiskPeripheral : FUJITSU MHV2100BH PL atapi Port 0 ID 0 DMA: On
    CdRomPeripheral : MAT****A DVD-RAM UJ-841S atapi Port 1 ID 0 DMA: On
    CdRomPeripheral : AXV CD/DVD-ROM 2.1b axvodka Port 2 ID 0 DMA: Off
    === CDRom-Device-Map ===
    MAT****A DVD-RAM UJ-841S D: CDRom0
    AXV CD/DVD-ROM F: CDRom1
    =======================
    AutoRun : 1
    Excluded drive IDs:
    WriteBufferSize: 83886080 (0) Byte
    ShowDrvBufStat : 0
    BUFE : 0
    Physical memory : 2045MB (2095084kB)
    Free physical memory: 1277MB (1308144kB)
    Memory in use : 37 %
    Uncached PFiles: 0x0
    Use Inquiry : 1
    Global Bus Type: default (0)
    Check supported media : Disabled (0)
    21.9.2006
    CD-ROM (ISO)
    21:04:46 #1 Text 0 File Isodoc.cpp, Line 6410
    Iso document burn settings
    Determine maximum speed : FALSE
    Simulate : TRUE
    Write : TRUE
    Finalize CD : FALSE
    Multisession : TRUE
    Multisession type: : Start multisession
    Burning mode : TAO
    Mode : 1
    ISO Level : 1 (Max. of 11 = 8 + 3 char)
    Character set : ISO 9660
    Joliet : TRUE
    Allow pathdepth more than 8 directories : TRUE
    Allow more than 255 characters in path : TRUE
    Write ISO9660 ;1 file extensions : TRUE
    21:04:47 #2 Text 0 File Burncd.cpp, Line 3007
    MAT****A DVD-RAM UJ-841S
    SmoothLink activs
    21:04:47 #3 Text 0 File ThreadedTransfer.cpp, Line 525
    ReadBuffer-Pipe got 81920KB of Memory
    21:04:47 #4 Text 0 File Reader.cpp, Line 124
    Reader running
    21:04:47 #5 Text 0 File Writer.cpp, Line 113
    Writer D: MAT****A DVD-RAM UJ-841S running
    21:04:47 #6 ISO9660GEN -11 File Geniso.cpp, Line 3304
    First writeable address = 0 (0x00000000)
    21:04:47 #7 Text 0 File Burncd.cpp, Line 3301
    Turn on Track-At-Once, using CD-R/RW media
    21:04:48 #8 Text 0 File DlgWaitCD.cpp, Line 277
    Last possible write address on media: 359844 ( 79:59.69)
    Last address to be written: 318786 ( 70:52.36)
    21:04:48 #9 Text 0 File DlgWaitCD.cpp, Line 289
    Write in overburning mode: NO (enabled: CD)
    21:04:48 #10 Text 0 File DlgWaitCD.cpp, Line 2568
    Recorder: MAT****A DVD-RAM UJ-841S
    21:04:48 #11 Text 0 File DlgWaitCD.cpp, Line 456
    >>> Protocol of DlgWaitCD activities: <<<
    =========================================
    21:04:48 #12 Text 0 File ThreadedTransferInterface.cpp, Line 846
    Setup items (after recorder preparation)
    0: TRM_DATA_MODE1 ()
    2 indices, index0 (150) not provided
    original disc pos #0 + 318787 (318787) = #318787/70:50.37
    relocatable, disc pos for caching/writing not required/ required, no patch infos
    -> TRM_DATA_MODE1, 2048, config 0, wanted index0 0 blocks, length 318785 blocks [D: MAT****A DVD-RAM UJ-841S]
    21:04:48 #13 Text 0 File ThreadedTransferInterface.cpp, Line 1058
    Prepare recorder [D: MAT****A DVD-RAM UJ-841S] for write in TAO
    DAO infos:
    ==========
    MCN: ""
    TOCType: 0x00; Session Closed, disc not fixated
    Tracks 1 to 1:
    1: TRM_DATA_MODE1, 2048/0x00, FilePos 0 307200 653182976, ISRC ""
    DAO layout:
    ===========
    __Start_|____Track_|_Idx_|_CtrlAdr_|_RecDep_______ ___
    -150 | lead-in | 0 | 0x41 | 0x00
    -150 | 1 | 0 | 0x41 | 0x00
    0 | 1 | 1 | 0x41 | 0x00
    318787 | lead-out | 1 | 0x41 | 0x00
    21:04:48 #14 Text 0 File ThreadedTransferInterface.cpp, Line 1126
    Removed 2 run-out blocks from end of track 1. Length: 318787 -> 318785.
    21:04:48 #15 Text 0 File SCSIPassThrough.cpp, Line 34
    SPTILockVolume - completed successfully for FCTL_LOCK_VOLUME
    21:04:48 #16 Phase 24 File dlgbrnst.cpp, Line 1724
    Caching of files started
    21:04:49 #17 Text 0 File Burncd.cpp, Line 4129
    Cache writing successful.
    21:04:49 #18 Phase 25 File dlgbrnst.cpp, Line 1724
    Caching of files completed
    21:04:49 #19 Phase 32 File dlgbrnst.cpp, Line 1724
    Simulation started at 24x (3 600 Ko/s)
    21:04:49 #20 Text 0 File ThreadedTransferInterface.cpp, Line 2669
    Verifying disc position of item 0 (relocatable, disc pos, no patch infos, orig at #0): write at #0
    21:04:49 #21 Text 0 File MMC.cpp, Line 21541
    Set BUFE: SmoothLink -> ON
    21:10:08 #22 Text 0 File ThreadedTransfer.cpp, Line 228
    all writers idle, stopping conversion
    21:10:10 #23 Phase 33 File dlgbrnst.cpp, Line 1724
    Simulation completed successfully at 24x (3 600 Ko/s)
    21:10:11 #24 Phase 36 File dlgbrnst.cpp, Line 1724
    Burn process started at 24x (3 600 Ko/s)
    21:10:11 #25 Text 0 File ThreadedTransferInterface.cpp, Line 2669
    Verifying disc position of item 0 (relocatable, disc pos, no patch infos, orig at #0): write at #0
    21:10:11 #26 Text 0 File MMC.cpp, Line 21541
    Set BUFE: SmoothLink -> ON
    21:12:16 #27 SPTI -1040 File SCSIPassThrough.cpp, Line 306
    CdRom0: SCSIStatus(x02) WinError(0) NeroError(-1040)
    Sense Key: 0x03 (KEY_MEDIUM_ERROR)
    Sense Code: 0x10
    Sense Qual: 0x00
    CDB Data: 0x2A 00 00 01 76 C0 00 00 20 00 00 00
    Sense Area: 0xF1 00 03 00 01 74 5D 0A 00 13 00 00 10
    Buffer x03390000: Len x10000
    0x72 F1 87 E5 D3 3D 4A 96 F9 B0 73 83 D3 14 72 A1
    0xF3 49 6E 93 44 25 04 6D E5 CE 44 5F 3E C6 79 47
    0xDD DD EA 3A FD 71 4D 32 CB 35 F3 DF 4B 18 BD 7D
    21:12:16 #28 CDR -1040 File Writer.cpp, Line 302
    Illegal block size for command
    D: MAT****A DVD-RAM UJ-841S
    21:12:16 #29 Text 0 File ThreadedTransfer.cpp, Line 228
    all writers idle, stopping conversion
    21:12:17 #30 Text 0 File ThreadedTransfer.cpp, Line 222
    conversion idle, stopping reader
    21:12:17 #31 CDR -201 File WriterStatus.cpp, Line 200
    Invalid write state
    D: MAT****A DVD-RAM UJ-841S
    21:12:17 #32 TRANSFER -18 File WriterStatus.cpp, Line 200
    Could not perform EndTrack
    21:12:17 #33 Text 0 File MMC.cpp, Line 16273
    <MAT****ADVD-RAM UJ-841S > start Close Session
    21:12:30 #34 SPTI -1040 File SCSIPassThrough.cpp, Line 306
    CdRom0: SCSIStatus(x02) WinError(0) NeroError(-1040)
    Sense Key: 0x03 (KEY_MEDIUM_ERROR)
    Sense Code: 0x10
    Sense Qual: 0x00
    CDB Data: 0x00 00 00 00 00 00 00 00 00 00 00 00
    Sense Area: 0x71 00 03 00 00 00 00 0A 00 13 00 00 10
    21:12:30 #35 CDR -1040 File WriterStatus.cpp, Line 249
    Illegal block size for command
    D: MAT****A DVD-RAM UJ-841S
    21:12:30 #36 TRANSFER -19 File WriterStatus.cpp, Line 249
    Could not perform Fixation
    21:12:30 #37 Text 0 File WriterStatus.cpp, Line 258
    falling back to disc fixation
    21:12:30 #38 Text 0 File MMC.cpp, Line 16273
    <MAT****ADVD-RAM UJ-841S > start Close Session
    21:12:30 #39 SPTI -1046 File SCSIPassThrough.cpp, Line 306
    CdRom0: SCSIStatus(x02) WinError(0) NeroError(-1046)
    Sense Key: 0x05 (KEY_ILLEGAL_REQUEST)
    Sense Code: 0x30
    Sense Qual: 0x05
    CDB Data: 0x5B 01 02 00 00 00 00 00 00 00 00 00
    Sense Area: 0x70 00 05 00 00 00 00 0A 00 AA 00 00 30 05
    21:12:30 #40 CDR -1046 File WriterStatus.cpp, Line 249
    Illegal disc
    D: MAT****A DVD-RAM UJ-841S
    21:12:30 #41 TRANSFER -19 File WriterStatus.cpp, Line 249
    Could not perform Fixation
    21:12:30 #42 Phase 38 File dlgbrnst.cpp, Line 1724
    Burn process failed at 24x (3 600 Ko/s)
    Existing drivers:
    File 'Drivers\PXHELP20.SYS': Ver=2.03.32a, size=20640 bytes, created 25/04/2005 11:03:00 (Prassi/Veritas driver for win 2K)
    Registry Keys:
    HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\AllocateCDROMs : 0 (Security Option)
    So, thanks to you !
    See you !
    Romain

    Hi
    The error log doesnt provide any very useful information.
    According to this error log the simulation was running correct but the burning process was not started.
    In such case its very hard to say why it happens. Possibly the drive is damage and cannot calibrate the lens properly or you use not compatible medias.
    The burning process depands also on the fiels and data which youwant to burn.
    Some data, CD, DVDs are encrypted and its not possible to burn and to copy it.
    In other case you could also try to burn the medias with lower speed and not with 24x.
    But in worth case you the drive has a malfunction and you have to replace it ;(

  • HT204380 When I try to FaceTime my sister, she doesn't receive the call on her end, but if she facetimes me I always receive hers. Is this a problem on my end or hers?

    When I try to FaceTime my sister, she doesn't receive the call on her end, but if she facetimes me I always receive hers. Is this a problem on my end or hers?

    Have her check her "You can be received at ..." settings (Settings/ FaceTime) to see what she's set up as the points of contact to reach her via FaceTime (can be one or multiple e-mails or a phone number).  Perhaps you're trying to FaceTime her on an e-mail or phone number which she's not using for FaceTime.

Maybe you are looking for

  • Ipod not recognized by my computer or itunes

    Just picked up a 8gb nano today, and my computer and itunes will not recognize it. The ipod charged completely off of my USB port. I have tried all of apple's suggestions on the support site, but they have not worked for me. I plugged it into my room

  • Who is the person who has inspired you the most?

    Hi, The person really inspired me is Mother Teresa. Who founded the Missionaries of Charity in Kolkata (Calcutta), India in 1950. For over 45 years she ministered to the poor, sick, orphaned, and dying, while guiding the Missionaries of Charity's exp

  • Problem in importing SWCV in Integration Repository

    Hi All, I am facing a problem while importing SWCV in Integration repository. it is throwing an error as <b>Unable to read Software Component Version from the System Landscape Directory "XI1:50000"(SWC_IMPORT_PROCESS_EXCEPTION).</b> Regards, Chandu

  • Webservices and BPM

    Hi all, How a normal BPM process in Netweaver is Related to Web services. Is BPM process internally using SOAP Webservice? because i see a webservice model in webdynpro component using a BPM process component. is the knowledge of webservices is requi

  • WinDVD Creator2 cannot detect input from TV or VCR

    I have a Satellite Pro M40 notebook and I am trying to input data from my TV/VCR so that I can record onto DVD. I have previously used the system for importing data through a digital video camera without problems. But now I am trying to convert famil