Webdav finder error -43

Anyone having this problem when trying to rename a file/folder using the finder when connected to a webdav share on Lion server (10.7.2). Everything else works fine,copying files/folders, deleting files/folders, etc. Just the renaming is giving the error -43.
Thanks,
SW

Hello.
Just to let you now that you are not the only one having that problem.
Indeed for some really strange reason Lion Server broke this (SL Server doesn't have this problem).
I would advise you to use the proper feedback page to let Apple know that you are having this problem.
http://www.apple.com/feedback/server.html
The more complaining the faster this will be solved.
Best regards
Pedro Fardilha

Similar Messages

  • Webdav finder error -36

    I am running crushftp 4.0.b6 fot https (ssl). When i login to nonsecure http webdav it works, but will not when https is used. I use the format https://ip:port, it opens the security login request. name/password are accepted, then the finder says "Finder cannot complete operation because some data in https:ip:port/ could not be read or written to. Error -36". Ben at crushftp said there was a bug with afs in 10.3.9 and that I needed to change an option for both upload and download for the finder. I'm currently stuck. Also I tried to compile and install apache2 first. Compiled ok, make install failed with apr-util can't use external with supplied internal "stuff" and terminates. Any help would be appreciated.

    same problem here on a mac os x server 10.3.9
    any help anyone?

  • Did not find error in message but message is in error

    Hi dears,
    i got a synchronous message in error.and i checked that in SXMB_MONI.Where its original message is recorded and its  response message is in error category of 'Request Message Mapping' .with no error id.
    i want to find exact error in its Trace and in error.
    can you explain why i am unable to find the  exact error ? kindly  reply to me.
    Thanks and Regards,
    Sumit Gupta

    Hi Michal,
    Thanks for your information.but i am working in production system and not authorized to check the mapping  error.
    i can not find error in error and in trace.
    have u encountered any times situation like this.then how had u resolved that issue. kindly guide me.
    Thanks and Regards,
    Sumit Kumar

  • It's possible to disable "Transfer-Encoding: chunked" in WebDAV Finder PUT requests ?

    Hi,
    Since Mac OS X 10.5.4 version, Apple WebDAV finder client use "Transfer-Encoding: chunked" in PUT request.
    Very very few HTTP Server, HTTP Proxy support this feature.
    Are there a flag to disable this feature ? If not, can you append it in futur OS X version ?
    Thanks for your help,
    Stephane

    PUT requests will cause your servlet's doPut() method to be called, and DELETE requests will cause your servlets's doDelete() method to be called. So if you don't provide any implementation of those methods, nothing will happen. Unless you are overriding the service() method to do your processing, which is not recommended.

  • Help please! Another Finder Error

    Hi,
    The script below is designed to backup files from the source area to the backup area preserving the folder hierarchy. While I’m sure it could be written better, it seems to work until it encounters a particular folder containing a file, when I get the following Finder error shown below. At this point it has already done approximately 60 files in about 10 folders. If I remove the file from the folder the script will continue processing a further 300 files and sub-folders before getting the same error on another folder/file.
    Can someone explain what the error means? Any comments or suggestions to improve the script would be welcome.
    tell application "Finder"
    get every item of folder (alias "Macintosh HD:Users:andy:Documents:NetXxx II:Customers:Lxxxx Bxxxxxh Cxxxxxl:")
    {alias "Macintosh HD:Users:andy:Documents:NetXxx II:Customers:Lxxxx Bxxxxxh Cxxxxxl:Pen Testing Brief 2005.doc"}
    "Can't make alias \"Macintosh HD:Users:andy:Documents:NetXxx II:Customers:Lxxxx Bxxxxxh Cxxxxxl::Pen Testing Brief 2005.doc\" into type «class alst»."
    -- Backup Script.
    -- This script will attempt to backup the specified folder(s) and all sub-folders to the external disk
    -- drive. It duplicates the folder sub-folder hierarchy in the backup area.
    -- If a previous backup of the file exists in the backup directory it is renamed to
    -- 'filename-yy-mm-dd (hhmmss).extension' where yy-mm-dd and hhmmss are taken from
    -- the modification date of the file in the backup directory.
    on run
    -- Get the path to the desktop for the log file.
    set desktopPath to (path to desktop from user domain) as string
    -- Get the current date and time formatted.
    set thisDateAndTime to get current date
    tell me
    formatDateAndTime(thisDateAndTime)
    set thatDateAndTime to result
    end tell
    -- Compile the name for the log file.
    set backupLogPath to desktopPath & "Backup Log" & thatDateAndTime & ".txt"
    -- Create and open the log file.
    try
    set backupLogFile to (open for access file backupLogPath with write permission)
    end try
    set backupLog to backupLogFile
    -- Write a starting message to the log file.
    set logMsg to "Backup Starting..." as string
    append2BackupLog(logMsg)
    -- Define the global variables.
    global backupLog -- The file specification of the backup log file.
    global backupPath -- Top level folder for the backup.
    global topSourceFolder -- The top level source folder name without the proceeding path.
    global sourceFileName -- Source file name but not the path.
    global sourceFileExtension -- Get the file extension.
    -- Define the backup folder to receive the backups.
    set backupPath to "ANDY:Business:Backups:" as text
    -- Define the folder to be backed up (the source folder).
    set sourceFolder to (path to home folder from user domain) as text
    set sourceFolder to (sourceFolder & "Documents:NetXxx II:")
    set topSourceFolder to "NetXxx II" as text
    -- Process the folder.
    processAFolder(sourceFolder)
    -- All done so write a final entry, close the log file and return.
    set logMsg to "Backup Ending..."
    append2BackupLog(logMsg)
    close access backupLogFile
    end run
    -- This routine process each file in the specified folder.
    on processAFolder(theFolder)
    -- Declare the global variables we reference.
    global sourceFileName -- Source file name but not the path.
    global sourceFileExtension -- Get the file extension.
    -- Write a message to the log file that we are processing the folder.
    set logMsg to "Processing folder " & theFolder
    append2BackupLog(logMsg)
    tell application "Finder"
    -- Get a list of everything in the specified folder.
    set allItems to every item of folder theFolder as alias list
    repeat with eachItem in allItems
    -- Check if this is a folder file.
    set fileInfo to info for eachItem
    set thisClass to kind of fileInfo as text
    if thisClass is equal to "Folder" then
    -- We have a another folder so do a recursive call.
    tell me
    processAFolder(eachItem)
    end tell
    else
    -- Store the file information we will need in processAFile() in the global variables.
    set fileName to eachItem as text
    set sourceFileName to name of fileInfo as text -- Get the file name but not the path.
    set sourceFileExtension to name extension of fileInfo as text -- Get the file extension.
    -- Now process the file.
    tell me
    processAFile(fileName)
    end tell
    end if
    end repeat
    end tell
    end processAFolder
    -- This routine processes the specified file.
    on processAFile(fileName)
    -- Define the global variables referenced in this script.
    global topSourceFolder -- The top folder to be backed up.
    global backupPath -- The top folder in the backup area.
    global sourceFileName -- Source file name but not the path.
    global sourceFileExtension -- Get the file extension.
    -- Get the folder paths from topSourceFolder downwards to the current folder.
    set currentBackupFolderPath to ""
    set folderTree to ""
    set addFolder to false
    set savedTID to AppleScript's text item delimiters
    set AppleScript's text item delimiters to {":"}
    tell application "Finder"
    repeat with iFolder in text items of fileName
    set thisFolder to iFolder as text
    if (thisFolder is equal to topSourceFolder) then
    set addFolder to true -- We are now at the top of the tree so start adding the folder names to the folder tree.
    end if
    if thisFolder is equal to sourceFileName then
    set addFolder to false -- As its the current file name we don't want it in the folder tree.
    end if
    if addFolder is true then
    -- While were at it check that the folder exists in the backup area.
    set backupFolder to backupPath & folderTree & thisFolder
    set backupFolderExists to (folder backupFolder exists)
    if backupFolderExists is equal to false then
    -- It does not exist so create the folder in the backup area.
    set backupFolderPath to backupPath & folderTree as file specification
    make new folder at folder backupFolderPath with properties {name:thisFolder}
    end if
    -- Add the folder to the folder tree.
    set folderTree to folderTree & thisFolder & ":"
    end if
    end repeat
    set AppleScript's text item delimiters to savedTID
    -- Set the backup folder path.
    set backupFolder to (backupPath & folderTree)
    -- check if the files exist
    set sourceFileExists to (file fileName exists)
    set backupFileExists to (file sourceFileName of folder backupFolder exists)
    -- Backup the file to the required backup folder.
    if sourceFileExists and not backupFileExists then
    -- File did not exist in the backup directory so copy it there.
    duplicate file fileName to folder backupFolder
    -- Write a log file entry for the file.
    set logMsg to "Backup of " & fileName
    tell me
    append2BackupLog(logMsg)
    end tell
    else
    -- Both files exist, so check if the file in the source folder is newer.
    if (modification date of file fileName) > (modification date of file sourceFileName of folder backupFolder) then
    -- We need to rename the old backup file before we make a backup copy of the newer file.
    set thisDateAndTime to modification date of file sourceFileName of folder backupFolder
    -- Get the current date and time formatted.
    tell me
    formatDateAndTime(thisDateAndTime)
    set thatDateAndTime to result
    end tell
    -- We need to get the file name minus the extension.
    set oldTID to AppleScript's text item delimiters -- Get the current text item delimiters (TIDs).
    set AppleScript's text item delimiters to {"."} -- Set them to ".".
    set justFileName to first text item of sourceFileName -- Get the filename before the "."
    set AppleScript's text item delimiters to oldTID -- Restore the TIDs to what they were.
    -- Build the new file name for the old backup file.
    set newFileName to justFileName & thatDateAndTime & "." & sourceFileExtension
    -- Rename the file in the backup area and take a copy of the newer file.
    set name of file (sourceFileName as text) of folder backupFolder to newFileName
    duplicate file fileName to folder backupFolder
    -- Write the log file entry's for the file rename and the file backup.
    tell me
    set logMsg to "Renamed old backup file to " & newFileName
    append2BackupLog(logMsg)
    set logMsg to "Backup of " & fileName
    append2BackupLog(logMsg)
    end tell
    end if
    end if
    end tell
    end processAFile
    -- Format the specified date & time into a string of the form "dd-mm-yy (hhmmss)".
    on formatDateAndTime(thisDateAndTime)
    set dateString to short date string of thisDateAndTime
    set timeString to time string of thisDateAndTime
    set fileDateString to "" as text
    repeat with iWord in words of dateString
    set fileDateString to fileDateString & "-"
    if length of iWord is 2 then
    set fileDateString to fileDateString & iWord as text
    end if
    if length of iWord is 1 then
    -- Pad single digits out with a leading zero.
    set fileDateString to fileDateString & "0" & iWord as text
    end if
    end repeat
    -- Format the time into "(hhmmss)".
    set fileTimeString to " (" as text
    repeat with iTime in words of timeString
    set fileTimeString to fileTimeString & iTime as text
    end repeat
    set fileTimeString to fileTimeString & ")" as text
    -- Set the return parameter to the result and return.
    set thatDateAndTime to fileDateString & fileTimeString
    end formatDateAndTime
    -- This routine writes the specified message to the end of the log file.
    -- NOTE - the log file is assumed to be already open with write access.
    on append2BackupLog(logMsg)
    global backupLog -- Global variable that defines the path to the log file.
    -- Get the current date and time formatted.
    set dateString to short date string of (get current date) & space & time string of (get current date)
    try
    write (dateString & " " & logMsg & return as text) to backupLog starting at eof
    end try
    end append2BackupLog
    15" MacBook Pro 2.16GHz, 2GB Ram   Mac OS X (10.4.8)  

    Hello
    I was forced to stop my running script so I was able to look at your script/
    Here is a modified version. I didn't check it.
    -- Backup Script.
    -- This script will attempt to backup the specified folder(s) and all sub-folders to the external disk
    -- drive. It duplicates the folder sub-folder hierarchy in the backup area.
    -- If a previous backup of the file exists in the backup directory it is renamed to
    -- 'filename-yy-mm-dd (hhmmss).extension' where yy-mm-dd and hhmmss are taken from
    -- the modification date of the file in the backup directory.
    on run
    -- Get the path to the desktop for the log file.
    set desktopPath to (path to desktop from user domain) as string
    -- Get the current date and time formatted.
    set thisDateAndTime to get current date
    set thatDateAndTime to my formatDateAndTime(thisDateAndTime)
    -- Create and open the log file.
    try
    set backupLogFile to (open for access file (desktopPath & "Backup Log" & thatDateAndTime & ".txt") with write permission)
    on error
    display dialog "something failed !"
    end try
    set backupLog to backupLogFile
    -- Write a starting message to the log file.
    my append2BackupLog("Backup Starting..." as string)
    -- Define the global variables.
    global backupLog -- The file specification of the backup log file. -- Is it correct to define backupLog as global AFTER setting its value ???
    global backupPath -- Top level folder for the backup.
    global topSourceFolder -- The top level source folder name without the proceeding path.
    global sourceFileName -- Source file name but not the path.
    global sourceFileExtension -- Get the file extension.
    -- Define the backup folder to receive the backups.
    set backupPath to "ANDY:Business:Backups:" as text
    -- Define the folder to be backed up (the source folder).
    set topSourceFolder to "NetXxx II" as text
    -- Process the folder.
    my processAFolder(((path to home folder from user domain) as text) & "Documents:" & topSourceFolder & ":")
    -- All done so write a final entry, close the log file and return.
    my append2BackupLog("Backup Ending...")
    close access backupLogFile
    end run
    -- This routine process each file in the specified folder.
    on processAFolder(theFolder)
    -- Declare the global variables we reference.
    global sourceFileName -- Source file name but not the path.
    global sourceFileExtension -- Get the file extension.
    -- Write a message to the log file that we are processing the folder.
    my append2BackupLog("Processing folder " & theFolder)
    tell application "Finder"
    -- Get a list of everything in the specified folder.
    set allItems to every item of folder theFolder as alias list
    repeat with eachItem in allItems
    -- Check if this is a folder file.
    if (class of item eachItem) is folder then
    -- We have a another folder so do a recursive call.
    my processAFolder(eachItem as text)
    else
    -- Store the file information we will need in processAFile() in the global variables.
    set eachItem to eachItem as alias
    set sourceFileName to name of eachItem -- Get the file name but not the path.
    set sourceFileExtension to name extension of eachItem -- Get the file extension.
    -- Now process the file.
    my processAFile(eachItem as text)
    end if
    end repeat
    end tell
    end processAFolder
    -- This routine processes the specified file.
    on processAFile(fileName)
    -- Define the global variables referenced in this script.
    global topSourceFolder -- The top folder to be backed up.
    global backupPath -- The top folder in the backup area.
    global sourceFileName -- Source file name but not the path.
    global sourceFileExtension -- Get the file extension.
    -- Get the folder paths from topSourceFolder downwards to the current folder.
    set currentBackupFolderPath to ""
    set folderTree to ""
    set addFolder to false
    set savedTID to AppleScript's text item delimiters
    set AppleScript's text item delimiters to {":"}
    tell application "Finder"
    repeat with iFolder in text items of fileName
    set thisFolder to iFolder as text
    if (thisFolder is equal to topSourceFolder) then set addFolder to true -- We are now at the top of the tree so start adding the folder names to the folder tree.
    if thisFolder is equal to sourceFileName then set addFolder to false -- As its the current file name we don't want it in the folder tree.
    if addFolder is true then
    -- While were at it check that the folder exists in the backup area.
    set backupFolder to backupPath & folderTree & thisFolder
    set backupFolderExists to (folder backupFolder exists)
    if backupFolderExists is equal to false then
    -- It does not exist so create the folder in the backup area.
    set backupFolderPath to backupPath & folderTree as file specification
    make new folder at folder backupFolderPath with properties {name:thisFolder}
    end if
    -- Add the folder to the folder tree.
    set folderTree to folderTree & thisFolder & ":"
    end if
    end repeat
    set AppleScript's text item delimiters to savedTID
    -- Set the backup folder path.
    set backupFolder to (backupPath & folderTree)
    -- check if the files exist
    set sourceFileExists to (file fileName exists)
    set backupFileExists to (file sourceFileName of folder backupFolder exists)
    -- Backup the file to the required backup folder.
    if sourceFileExists and not backupFileExists then
    -- File did not exist in the backup directory so copy it there.
    duplicate file fileName to folder backupFolder
    -- Write a log file entry for the file.
    my append2BackupLog("Backup of " & fileName)
    else
    -- Both files exist, so check if the file in the source folder is newer.
    if (modification date of file fileName) > (modification date of file sourceFileName of folder backupFolder) then
    -- We need to rename the old backup file before we make a backup copy of the newer file.
    set thisDateAndTime to modification date of file sourceFileName of folder backupFolder
    -- Get the current date and time formatted.
    set thatDateAndTime to my formatDateAndTime(thisDateAndTime)
    -- We need to get the file name minus the extension.
    set oldTID to AppleScript's text item delimiters -- Get the current text item delimiters (TIDs).
    set AppleScript's text item delimiters to {"."} -- Set them to ".".
    set justFileName to first text item of sourceFileName -- Get the filename before the "."
    set AppleScript's text item delimiters to oldTID -- Restore the TIDs to what they were.
    -- Build the new file name for the old backup file.
    set newFileName to justFileName & thatDateAndTime & "." & sourceFileExtension
    -- Rename the file in the backup area and take a copy of the newer file.
    set name of file (sourceFileName as text) of folder backupFolder to newFileName
    duplicate file fileName to folder backupFolder
    -- Write the log file entry's for the file rename and the file backup.
    my append2BackupLog("Renamed old backup file to " & newFileName)
    my append2BackupLog("Backup of " & fileName)
    end if
    end if
    end tell
    end processAFile
    -- Format the specified date & time into a string of the form "dd-mm-yy (hhmmss)".
    on formatDateAndTime(thisDateAndTime)
    set dateString to short date string of thisDateAndTime
    set timeString to time string of thisDateAndTime
    set fileDateString to "" as text
    repeat with iWord in words of dateString
    set fileDateString to fileDateString & "-" & text -2 thru -1 of ("0" & iWord)
    end repeat
    -- Format the time into "(hhmmss)".
    set fileTimeString to " (" as text
    repeat with iTime in words of timeString
    set fileTimeString to fileTimeString & iTime as text
    end repeat
    set fileTimeString to fileTimeString & ")" as text
    -- Set the return parameter to the result and return.
    return fileDateString & fileTimeString
    end formatDateAndTime
    -- This routine writes the specified message to the end of the log file.
    -- NOTE - the log file is assumed to be already open with write access.
    on append2BackupLog(logMsg)
    global backupLog -- Global variable that defines the path to the log file.
    -- Get the current date and time formatted.
    set dateString to short date string of (get current date) & space & time string of (get current date)
    try
    write (dateString & " " & logMsg & return as text) to backupLog starting at eof
    end try
    end append2BackupLog
    Yvan KOENIG (from FRANCE samedi 3 mars 2007 21:23:33)

  • I am unable to open my Finder. error -10810 appears saying "The application Finder can't be opened". Any suggestions, I'm stumped! {I'm on a new iMac 10.6.8} thank you!

    I am unable to open my Finder. error -10810 appears saying "The application Finder can't be opened". Any suggestions, I'm stumped! {I'm on a new iMac 10.6.8} thank you!

    Hi,
    have a look here http://reviews.cnet.com/8301-13727_7-10365239-263.html for possible solutions.
    Hope it helps
    Stefan

  • What happens?. Unable to find error text for this exception

    I4m trying to open a workbook and before doing anything it shows me the message "Unable to find error text from this exception", after this, it appears another one "attempt to open workbook failed". Help me to find why i4m not able to open the workbook, which could be the reason.
    Thanks in advance.

    I think this has something to do with the folders that
    you are using? Have you renamed an old folder and then
    recreated another folder as its replacement?
    Christopher

  • Error- Unable to find error text for this exception

    Hi all,
    I am facing the following problem in discoverer ,Please give me your advice.
    while I am trying to open the workbook I am getting the following error
    "Unable to find error text for this exception"
    Could you please tell me how I can find why this warning is come ? or how I can solve this warning.
    if I ignore this warning then the workbook is failing to open.
    thanks and regards
    senthil kumar

    Hi,
    Are you getting this problem with the Desktop, Plus or Viewer editions? It could be that the database is generating the exception. You will need to trace the database session to see the error.
    Rod West

  • SQL Extended Events for finding errors

    SQL Extended Events for finding errors, how to find out more than SQL text, like the stored procedure?
    SQL 2012, 2008 and 2005 (not much 2005)
    We had an agent job that was not completing and was not giving any errors. Turned out that too large a number was being SET into an integer field. We set up a SQL Extended Events based on the following URL. It gave us the SQL text and that did help. BUt
    how could we have done even more to find the error? Is there a way to find the stored procedure? Because the SQL text was pretty generic. What else can be used to find errors that are not being reported back to the agent job?
    http://www.brentozar.com/archive/2013/08/what-queries-are-failing-in-my-sql-server/

    Hi,
    Are you able to manually execute the stored procedure? How many steps are there in this job?
    You may create a test job with only one step running this stored procedure and test the result.
    As Kalman suggested, please check the relative message in job history and event viewer.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Solution for Finder Error Code 0?

    Hi Guys,
    I keep struggling with the Finder Error Code 0 while copy-pasting a lot of files from my iMac to external hard drive etc.
    IS there a solution for this?
    Many thanks
    Bob

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • I am currently getting finder error screen saying "Quartz-filter plugin" error, Please report to apple. Can anyone please help me find a resolution for this error?

    I am currently getting finder error screen saying "Quartz-filter plugin" error, Please report to apple. Can anyone please help me find a resolution for this error?

    If it were me I would schedule an appointment at the store where you bought it and meet with the Manager of the store in person. Print this post and bring it with you along with your iMac.
    And change the password on your Apple ID and then see if there are in purchases in your account that you did not make. If there are then someone did get your ID and password. If not someone got your Credit Card information from somewhere and used it.

  • If i find error in error console how do i fix it??

    i get this:
    Warning: Unknown property 'box-shadow'. Declaration dropped.
    Source File: https://support.mozilla.com/media/css/common-min.css?build=7b235bc
    Line: 1
    and also:
    Warning: Error in parsing value for 'background-image'. Declaration dropped.
    Source File: https://support.mozilla.com/en-US/questions/new?product=desktop&category=d6&search=if+i+find+error+in+error+console+how+do+i+fix+it%3F%3F#ask-search-form
    Line: 0

    Many sites will show errors in the error console but they can be ignored. The errors you mentioned in the first post for example can be ignored.
    If you find Firefox is running slowly, check to see if an add-on is causing problems. To do that start Firefox in [[safe mode]] Firefox safe mode, this will disable add-ons and can be used to see if one is causing problems. If it works OK in safe mode, follow the procedure in the [[Troubleshooting extensions and themes]] article.

  • Orapwd - unable to find error file

    i have executed
    orapwd file=pwdfile password=password
    and an error has occurred. I cant find any documentation mentioning this error file at all. is there any tips on where to find this? or more probable how do i create one?
    i have checked that the ORACLE_HOME and ORACLE_SID are correct so that shouldnt be the problem

    entries is optional so i have left that out.
    the error that is being is displayed is "unable to find error file"
    i am able to log into the database as a user that is part of the dba group. using conn / as sysdba
    however as a normal user if i try conn sys/password as sysdba it says i have insufficient provileges. password being what i tried to set up in password file
    $ORACLE_HOME/dbs is where i am storing the password file
    Message was edited by:
    craig

  • Concurrent Manager cannot find error description for CONC-System Node

    Hi friends,
    I m facing a problem while doing clustering for oracle EBS.i m using hpux11i with veritas cluster server for oracle DataBase cluster.i am doing 2 node cluster.i have installed oracle 11i apps with 9i DB.thru veritas i am able to do a db cluster failover.now i want to run oracle apps 11i too from both nodes(active/passive).so i configured a virtual IP address with a Virtual Hostname which will move along with the cluster failover.when i configure ora apps tier thru giving it virtual hostname concurrent manager dies with error--Concurrent Manager cannot find error description for CONC-System Node. i tried many things but unable to come up with a solution. pls help.
    regs
    Satish

    Please post the contents of your hosts file here.
    Is FND_NODES table populated correctly? Please run AutoConfig and make sure it completes successfully.
    Why are the Concurrent Managers Failing with 'CONC-System Node Name not Registered" Error After Applying Patch 6461517? [ID 1108452.1]
    OPP and SFM Managers do not Start [ID 1425409.1]
    Thanks,
    Hussein

  • How to find Error Reference Number Additional details in HFM

    <font color="Blue">
    Hi All
    How to find Error Reference Number additional details in HFM ?
    Example:
    Error Reference Number:{01977FBD-DB42-4655-99B5-4ABF38D3E082}
    Where to Find above id additional details??
    I mean HSVErrorLogViewer ? OR RegistrySettings ? OR Dcomcnfg ? OR any other way to find the detailed information?
    Any ideas? Appreciate your help in advance.
    Regards
    Taruni
    </font>

    Hi,
    try menu - EDIT - LUW debug
    and see if you can get the idoc number in this way
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Maybe you are looking for