Proxy Log On failed(Error Code 12154)

Hello There!
Can someone P'se help on this
Installation
WIN2K-Pro
Oracle8iEE-1.7..
Oracle9iAS
Two different Oracle homes
Problem
I am trying to test for the first time my portal but i am receiving the following error messages
1)when I type in <http://mysever/pls/dad> this is the result:
Proxy log On failed.
Please verify that you have specified correct connectivity information i.e.username, password & connect-string in the Database Access Descriptor
Error-Code:12640
Error TimeStamp:Mon, 06 Aug 2001 04:25:15 GMT
Database Log In Failed
TNS is unable to connect to destination. Invalid TNS address supplied or destination is not listening. This error can also occur because of underlying network transport problems.
Verify that the TNS name in the connectstring entry of the DAD for this URL is valid and the database listener is running.
2)Also when I try this <http://myserver/pls/admin/gateway.htm>the result is as follows:
Mon, 06 Aug 2001 20:01:28 GMT
No DAD configuration Found
DAD name:
PROCEDURE : gateway.htm
URL : http://nt2kserver.learning.local:80/pls/admin/gateway.htm
PARAMETERS :
===========
ENVIRONMENT:
============
PLSQL_GATEWAY=WebDb
GATEWAY_IVERSION=2
SERVER_SOFTWARE=Oracle HTTP Server Powered by Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.24
GATEWAY_INTERFACE=CGI/1.1
SERVER_PORT=80
SERVER_NAME=nt2kserver.learning.local
REQUEST_METHOD=GET
QUERY_STRING=
PATH_INFO=/admin/gateway.htm
SCRIPT_NAME=/pls
REMOTE_HOST=
REMOTE_ADDR=127.0.0.1
SERVER_PROTOCOL=HTTP/1.1
REQUEST_PROTOCOL=HTTP
REMOTE_USER=
HTTP_CONTENT_LENGTH=
HTTP_CONTENT_TYPE=
HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
HTTP_HOST=nt2kserver.learning.local
HTTP_ACCEPT=*/*
HTTP_ACCEPT_ENCODING=gzip, deflate
HTTP_ACCEPT_LANGUAGE=en-us
HTTP_ACCEPT_CHARSET=
HTTP_COOKIE=
Authorization=
HTTP_IF_MODIFIED_SINCE=
HTTP_REFERER=

Hello Teijo
sorry about this, but I have checked on both of my two standalone servers(Running similar softwares and settings(host name...etc) independently) I can't see any service registerd by APACHE LISTENER.The only listener service available is for ORACLE8i under the oracle8iHome.
The only running service under the 9iASHome is HTTPServer.During both installations I didn't encounter any problems,everything ended succefully.Can you p'se let me know if this sounds Ok to you?
Hashim
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Teijo Lallukka ([email protected]):
This looks like a tnsnames.ora issue. I copied a reply from a similar post:
Since you have multiple Oracle homes, you are probably looking at the wrong tnsnames.ora. The reason why SQL*Plus is working is because it is being picked up from an Oracle Home where the correct tnsnames.ora resides. Here is a quick way to confirm this
- Stop the Apache Listener service
- Open a "Console prompt window"
- Go to $IAS_HOME/Apache/Apache
- Set TNS_ADMIN=Directory_with_correct_tnsnames.ora
- Issue "tnsping your_dbalias_name" to verify that you can ping the database. If this does not work, then your tnsnames.ora is incorrect
- If it works, startup Apache by issuing "start Apache -k start"
- Try connecting to Portal thru your browser
- This should work.
- Post a reply if this does not work<HR></BLOCKQUOTE>
null

Similar Messages

  • Log on Failed error

    I've a report developed with DB2 9.7.5. It works fine in Crystal Report designer on my machine with local DB2 server with one of the database. It works fine from my ASP.NET application as long as I connect to same database. But if I chnage the database, I keep getting log on failed error. Then, if I change the report in crystal reports designer and connect to the other database and perform check dependencies, it starts working again.
    The report is developed using couple of stored procedures and it has multiple subreports. I verified that the stored procedures are exactly same on other database and the userID to connect to both databases has exact same privileges.
    Also, I get the same error when I try to connect another server with another copy of DB2 database. In this case, even if I use crystal reports designer to connect and save, it doesn't work.
    Following is my code when I try to connect. The interesting thing is call to subreport.VerifyDatabase() works fine. But call to m_rpt.VerifyDatabase() throws exception.
    ReportDocument m_rpt;
                    if (m_rpt.Subreports != null && m_rpt.Subreports.Count > 0)
                        foreach (ReportDocument subrpt in m_rpt.Subreports)
                            foreach (CrystalDecisions.CrystalReports.Engine.Table tbl in subrpt.Database.Tables)
                                CrystalDecisions.Shared.TableLogOnInfo logInfo = tbl.LogOnInfo;
                                logInfo.ConnectionInfo.DatabaseName = m_strDBName;
                                logInfo.ConnectionInfo.ServerName = m_strDSN;
                                logInfo.ConnectionInfo.UserID = m_strDBUserID;
                                logInfo.ConnectionInfo.Password = m_strDBPassword;
                                tbl.ApplyLogOnInfo(logInfo);
                            subrpt.VerifyDatabase();
                    foreach(CrystalDecisions.CrystalReports.Engine.Table tbl in m_rpt.Database.Tables)
                        CrystalDecisions.Shared.TableLogOnInfo logInfo = tbl.LogOnInfo;
                        logInfo.ConnectionInfo.DatabaseName = m_strDBName;
                  logInfo.ConnectionInfo.ServerName = m_strDSN;
                        logInfo.ConnectionInfo.UserID = m_strDBUserID;
                        logInfo.ConnectionInfo.Password = m_strDBPassword;
                  tbl.ApplyLogOnInfo(logInfo);
                    m_rpt.VerifyDatabase();
    Edited by: kushalkaleshwari on Mar 5, 2012 5:54 PM

    Following is the exception:
    -          excep     {"Log on failed."}     System.Exception {CrystalDecisions.CrystalReports.Engine.LogOnException}
    +          [CrystalDecisions.CrystalReports.Engine.LogOnException]     {"Log on failed."}     CrystalDecisions.CrystalReports.Engine.LogOnException
    +          Data     {System.Collections.ListDictionaryInternal}     System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
              HelpLink     null     string
    -          InnerException     {"\rNo error."}     System.Exception {System.Runtime.InteropServices.COMException}
    +          [System.Runtime.InteropServices.COMException]     {"\rNo error."}     System.Runtime.InteropServices.COMException
    +          Data     {System.Collections.ListDictionaryInternal}     System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
              HelpLink     null     string
    +          InnerException     null     System.Exception
              Message     "\rNo error."     string
              Source     "Analysis Server"     string
              StackTrace     "   at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.VerifyDatabase()\r\n   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.VerifyDatabase()\r\n   at CrystalDecisions.CrystalReports.Engine.ReportDocument.VerifyDatabase()"     string
    -          TargetSite     {Void VerifyDatabase()}     System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
    +          [System.Reflection.RuntimeMethodInfo]     {Void VerifyDatabase()}     System.Reflection.RuntimeMethodInfo
    +          base     {Void VerifyDatabase()}     System.Reflection.MemberInfo {System.Reflection.RuntimeMethodInfo}
              Attributes     FamANDAssem | Family | Virtual | HideBySig | VtableLayoutMask     System.Reflection.MethodAttributes
              CallingConvention     Standard | HasThis     System.Reflection.CallingConventions
              ContainsGenericParameters     false     bool
              IsAbstract     false     bool
              IsAssembly     false     bool
              IsConstructor     false     bool
              IsFamily     false     bool
              IsFamilyAndAssembly     false     bool
              IsFamilyOrAssembly     false     bool
              IsFinal     false     bool
              IsGenericMethod     false     bool
              IsGenericMethodDefinition     false     bool
              IsHideBySig     true     bool
              IsPrivate     false     bool
              IsPublic     true     bool
              IsSecurityCritical     true     bool
              IsSecuritySafeCritical     true     bool
              IsSecurityTransparent     false     bool
              IsSpecialName     false     bool
              IsStatic     false     bool
              IsVirtual     true     bool
    +          MethodHandle     {System.RuntimeMethodHandle}     System.RuntimeMethodHandle
    +          Non-Public members          
    +          Static members          
    +          Non-Public members          
              Message     "Log on failed."     string
              Source     "CrystalDecisions.CrystalReports.Engine"     string
              StackTrace     "   at CrystalDecisions.CrystalReports.Engine.ReportDocument.VerifyDatabase()\r\n   at WebUtilLib.ReportCacher2.ApplyLogonInfo(String strDSN, String strDBName, String strDBUserID, String strDBPassword, String strDBType)"     string
    +          TargetSite     {Void VerifyDatabase()}     System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
    +          Static members          
    +          Non-Public members

  • BT Vision - HDD Access failed: error code VDR370 ?...

    For weeks this box as been playing up, rebooting it self for now reason, this i can take.  Almost 2 weeks ago, woke up for work, turn the TV on and was presented with this: Grey blueish screen: Top left corner "Starting" - Bottom right corner - "BT Vision" - and the bottom middle this "HDD Access Failed: error code VDR370" Now to me this looks like an Hard Drive failure.  Called the Tech Help, the guy said I must be mistaken, that cannot be the code, I said yes.  After spelling out to this idiot that I have gone through the steps on this web site (4 to be precise), it is not working.  i asked can you find out what this means, he said he doesn't know.  I asked to speak to someone who can tell me what this means, nop, all he can do is send out an engineer which will take at least a week for them to arrive, then to make matters worse, if the problem is user error I will be billed £125.95 WT*.
    I explained I am an IT engineer, and since no one there can tell me what this error is, I am confident that this error is Hard drive problem, as it is clicking also.  So my question is: What does this error mean " HDD ACCESS FAILED: ERROR CODE VDR370" SIMPLE. 

    Hi bazk123,
    Thanks for posting. It does sound like this is a drive failure. Is the box making any clicking or whirring sounds? If so it does require an engineer visit to check the box and replace if necessary. I can look into this for you if you wish. Just drop me an email with the details. You'll get the "contact us" form in the about me section of my profile.
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • OSD task sequence computer doesn't join domain - error NetJoinDomain failed error code is [1355]

    I am using sccm 2012R2 and trying to deploy a task sequence to Ultrabook UEFI with usb Ethernet adaptor
    I have inject network drivers in boot image and in sccm.
    Task sequence runs fine till Setup Windows and Configuration. After this step computer reboots and boots in windows with local administrator account. Doesn't join to domain
    I have tried ping domain and domain controller during Apply network Settings, I can ping fine and get an ip address as well.
    setuperr.log file shows following error:
    [Djoin.exe] Unattented Join: NetJoinDomain failed error code is [1355]
    I can image other computer using x86 bootimage fine.
    It is x64 boot image with UEFI Task sequence which is causing issues for me.
    I have tested domain join AD account and able to do domain join same machine manually.
    Need advise, not getting anywhere, already spend few days to figure out.
    RJ
    RJ09

    Ultrabook I am using have SSD if this could be part of problem.
    I also see errors in Panther\UnattendGC\setupact.log 
    [DJOIN.EXE] Unattend Join: DebugJoinOnlyOnThisError =[Null]
    [DJOIN.EXE] Unattend Join:DsGetDcName failed: 0x54b, last error 0x0, will retry in 5 seconds
    [DJOIN.EXE] Unattend Join:DsGetDcName failed: 0x54b, last error 0x0, will retry in 5 seconds
    About 20 times
    Exit, returning 0x0
    RJ09

  • Downloads from itunes fail - error code 8003 - what does that mean, or more importantly, how do I get what I paid for?

    Downloads from itunes fail - error code 8003 - what does that mean, or more importantly, how do I get what I paid for?

    Try the troubleshooting for that error code on this page : iTunes: Advanced iTunes Store troubleshooting - Apple Support (search for '8003' on the page, it's just below half-way down)

  • Lenovo 3000 N100 Network issue / Wireless Stack initializa​tion failed, error code 117

    Hi,
    Lenovo 3000 N1000 with 1GB Ram, Win XP SP2, purchased in May 2006. WLAN network with WPA-PSK key worked without any issues so far and is still accessible with PC.
    After transferring music via from my notebook to my mobile Bluetooth all network adapters seem to be disconnected. Neither Access Connections (AC) nor Windows can find any wireless network. Also if I try to configure any LAN, WLAN with Windows I get the message that all network adapters have been removed. However I cannot spot any issue in the device manager as all parts are shown to be working OK.
    This is what I've done so far:
    1) Checked Radio switch ---> on
    2) FN +F5 --> connection on
    3) Uninstalled AC, downloaded and installed most actual version (5.00 Build 7VCX32WW)
    4) Installed new version for wireless driver for Intel(R) PRO/Wireless 3945ABG (version 12.0.0.82)
    Still, even if I uninstall AC to check if WLAN is working at all, Windows gives the error message that all network components have been removed.
    Diagnose Tool gives the following output:
    "Wireless Stack initialization failed, error code 117"
    Logfile:
    Description : Intel(R) PRO/Wireless 3945ABG Network Connection
    Type : Wireless LAN Adapter
    DriverVersion : 10. 5. 1. 59 ----> why is the old driver version??????????
    PNPID : PCI\VEN_8086&DEV_4227&SUBSYS_10118086
    SupplicantVersion : AEGIS Protocol (IEEE 802.1x) v3.5.3.0
    ERROR AcSvc( SYSTEM(Prvlg).1108.4580) [9/3]11:04:15:703 CAcGolan::GetRadioStateInDriver: Golan API GetRadioState() missing! 
    Hope this is enough information for anyone of you in order to suggest any solution. As I could see from previous threads some of you experienced similar problems in the past and could fix them somehow. However I couldn't find anyone with exactly the same problem.
    Thanks much in advance for any advice you might have.
    Flo

    Hi
    I have this problem also with my Lenovo 3000 V200.
    Sometimes when I boot up the PC it will connect to the network and everything works just fine.
    At other times, after boot, the "wireless stack initialization failed, error code: 118" problem occurs
    and the only way to solve it seems to be a PC restart. Nothing else I do will bring the network up.
    If I study the Networking tab in Task Manager it indicates that no adapters are available (wired eth.
    access also fails). At a few occations connectivity have failed alltogether (i.e. a reboot have not solved
    the problem). Last time this occured I had to reinstall the complete system (from a previous backup)
    to get networking up.
    I have tried different versions of Access Connections (5.02, 5.12, 5.21) and the same problem occurs
    at seemingly random instances in time. This is obviosly a problem with the Access Connections software
    since the Wireless networking works fine when I let windows manage it...
    Anyone with a fix?
    /Fredrik

  • DVD Burn fails (Error code 0x80020022), newish drive, just applied updates

    Hello,
    when i try to burn a data dvd with a variety of files from finder on my power mac g5 it thinks a while and then fails with the message:
    Burning the disc failed because communication to the disc drive failed (Error code 0x80020022)
    I just downloaded the latest OS updates last night.
    Disc utility showed permissions problems in some files on my boot drive including in a darwin folder but they repaired fine.
    Two weeks ago apple replaced my superdrive and i hadn't tried burning a dvd since then, but cds did and do burn fine.
    This computer is under warrantee but in case the latest software updates caused this, or if someone has an easy fix that would allow me to save the trip to the store for analysis and potential couple day wait...
    i'm all ears!
    Thanks, Will
    Software overview
    System Version: Mac OS X Server 10.4.8 (8L127)
    Kernel Version: Darwin 8.8.0
    SONY DVD RW DW-U21A:
    Firmware Revision: AADB
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
    Media: No
    hardware
    Machine Name: Power Mac G5
    Machine Model: PowerMac7,3
    CPU Type: PowerPC G5 (2.2)
    Number Of CPUs: 2
    CPU Speed: 2 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 2 GB
    Bus Speed: 1 GHz
    Boot ROM Version: 5.1.8f7
    Machine Name: Power Mac G5
    Machine Model: PowerMac7,3
    CPU Type: PowerPC G5 (2.2)
    Number Of CPUs: 2
    CPU Speed: 2 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 2 GB
    Bus Speed: 1 GHz
    Boot ROM Version: 5.1.8f7
    Power Mac G5   Mac OS X (10.4.8)  

    Thank you for your help!
    At one point in the last few days i did run out of disk space on one drive, but i think i had 5Gig free on the short drive when i was trying it earlier, and i have upped that to 30.
    My spindled HP DV-16Xs worked on the drive i had before pretty darn well.. I've tried a bunch of unlabeled ones, i've also tried burning at 1x, and i went out and bought some jewel cased verbatim dvd-r 16Xs, same problem.
    I will take one more shot at finding the best media using that website, get some 8Xs if i can find them, before hauling it into apple.
    without the dvd burner it's hard to backup very well, I was planning to get a external hard drive next month.

  • My reinstallation of itunes is failed, error code is error 7 (windows error 126) the system find not msvcr80.dll script

    my reinstallation of itunes is failed, error code is error 7 (windows error 126) the system find not msvcr80.dll script

    https://discussions.apple.com/thread/5817040?tstart=0
    ....try everything in that thread, should fix the issue.

  • OBIA 7.9.5 "Financial Analytics" GL/AR Fact load fails "error code 36331"

    Hi all ,
    For Financial analytics7.9.5 below fact load getting failed "error code 36331".
    'SIL_GLOtherFact_Full' has failed.
    'SIL_GLCOGSFact_Full' has failed.
    'SIL_GLRevenueFact_Full' has failed.
    'SIL_ARTransactionFact_Full' has failed.
    Let us know how to fix this up.
    Should i need to follow the comments posted in this link
    Re: Help !!!  Re: Fianacial Analytics failed with Error Code = 36331
    thanks
    saran

    ORA-12520: TNS:listener could not find available handler for requested type of serverI've not seen this error myself, but looking on Google it appears to be an unsolved problem on OBIA.
    Since it's intermittent then it rules out obvious things like the Oracle database being down or the connectivity being incorrectly configured.
    Looking on My Oracle Support (metalink) I found discussion of the error with reference to a completely different product but around the issue of parallelism.
    If I had to guess I'd say that the keyword in the error is available - the oracle DB is being swamped with more requests that its configured to handle.
    My suggestion would be speak to your DBAs and ask them to monitor the number of sessions on Oracle DB whilst your ETL is running and watch for any limit being breached. If possible up that limit, or reduce the amount of ETL tasks running in parallel.
    I'd also suggest raising an SR with Oracle since it's evidently a not-uncommon problem.

  • Backup failed error code o8x100037

    any ideas?

    Hi,
    >>Backup Failed Error Code 2155348129 Volume Shadow Copy Service error:
    As the following article suggests, this error can be caused by the incorrect Active volume.
    Troubleshooting VSS Writer Failure
    http://social.technet.microsoft.com/wiki/contents/articles/1261.troubleshooting-vss-writer-failure.aspx
    If the issue persists, we can follow the article below to re-register the dlls that are needed by the VSS service to see if it helps.
    Volume Shadow Copy Service and DLLs
    http://blogs.technet.com/b/sdoakes/archive/2006/02/03/418722.aspx
    In addition, the following thread focused on the similar issue and can be referred to as reference.
    Failed Full System Backup Error: 2155348129
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/7eaba8d9-2fc8-41fd-a2ef-18a8d8b9186e/failed-full-system-backup-error-2155348129?forum=windowsbackup
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • QuickTime Install Failed Error Code -3 - At Wits End Ready to Return IPOD

    I have been trying to install QuickTime with Windows XP for the past 8 hours. First, I receive the message Install Failed Error Code -3. Then I uninstall software and download and get Error 1722 and the Error 1603 Fatal Error. I'm in a vicious loop of installing/uninstalling. Called Apple technical support and they walked me through the same steps I've been going through all day and I still have the same results. I'm ready to return my daugheter's iPod. I have looked at all the technical help available and have completed every recommended solution with no success. What am I missing? Suicidal in Chocolatetown, USA.

    switch off antivirus and antispyware applications
    Download Quicktime 7.0.3 Standalone Installer
    http://www.apple.com/quicktime/download/standalone.html
    Run the install from your hard drive, not over the internet
    That should fix you up.

  • Premiere Pro update failed - error code U43M1D206

    Hi,
    Premiere Pro update failed - error code U43M1D206
    Windows 7 64 bits
    All other apps were updated.
    I tried all theses steps :
    Solution 1: Restart your computer and try again.
    Solution 2: Download the update from Adobe.com.
    Solution 3: Uninstall and reinstall the Adobe Creative software you are facing difficulties applying the update too.
    Avast Antivirus :
    Infection MSIL:GenMalicious-ML [Trj]
    Please look at the picture below :
    Thank you for your help ;-)
    Gilles

    Hi Gilles V,
    Please try:  Error downloading Creative Cloud applications
    Thanks,
    Atul Saini

  • Malloc: *** mmap(size=16777216) failed (error code=12)

    Hi All,
    I am writing a small game for iphone. It has about 18 levels. After running 8 levels or so It is giving following error
    malloc: * mmap(size=16777216) failed (error code=12)
    * error: can't allocate region
    * set a breakpoint in mallocerrorbreak to debug
    I have googled it but no luck at all. Any helper pointers will be greatly appreciated.
    Thanks in Advance
    - Ravi

    ooftish.com wrote:
    I have googled it but no luck at all.
    When you search on these topics, you should delete the number strings/errors such as 16777216 - those are specific to you.
    As an example, googling: malloc: mmap(size=
    ...seems to find more than one thread that discusses this back in 2008.

  • I have burned CDs before from 2gb to 7gb using different types of discs. Now I get this error message Apple error The disc can't be burned because communication between the computer and the disc drive failed (error code 0x80020022). What should I do

    I have burned CDs before from 2gb to 7gb using different types of discs. Now I get this error message Apple error The disc can't be burned because communication between the computer and the disc drive failed (error code 0x80020022). What should I do

    Reset the SMC, as per > Resetting the System Management Controller (SMC)
    1. Shut down the computer.
    2. Unplug the computer's power cord.
    3. Wait fifteen seconds.
    4. Attach the computer's power cord.
    5. Wait five seconds, then press the power button to turn on the computer.
    Then zap the PRAM/NVRAM as per > About NVRAM and PRAM
    1. Shut down the computer.
    2. Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    3. Turn on the computer.
    4. Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    5. Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    6. Release the keys.
    Then retry the Disc Drive.

  • I am trying to burn a CD and keep getting this error message: Burning disc failed because communication to the disc drive failed. (error code 0x80020022)  Any suggestions??

    Burning disc failed because communication to the disc drive failed. (error code 0x80020022)  Any suggestions??

    Sadly, that error has umpteen causes, sometimes the drive is going out, sometimes it's bad media, sometimes a slower burn works, & rarely a Cleaning Disc helps.
    Bad File names can even cause it...
    http://www.bbqiguana.com/2010/02/macos-x-error-0x80020022-trying-to-burn-dvds/

Maybe you are looking for