Problem accessing filesystem with WebDAV

Hi,
I'm having some issues with WebDAV, I can connect and everything and the root folder shows up like it should in the Finder but when I try to access a folder inside the root directory it starts to load but never displays any content.
The error log on the server gets flooded with:
[Date] [error] [client IP] Provider encountered an error while streaming a multistatus PROPFIND response. [404, #0]
Any ideas?

What's the WebDAV client and the WebDAV server here? I'm going to guess that Mac OS X Server Snow Leopard Server is involved, but it could be either as a client or as a server.
What else is in the logs and specifically adjacent to the error
Provider encountered an error while streaming a multistatus PROPFIND response. 404, #0
If you're serving WebDAV from Mac OS X Server Snow Leopard Server, what users are enabled for access into the WebDAV share?
What are the protection settings on the files being shared by WebDAV? (The shell command +ls -al {directory path}+ will show the settings of the files.)
Also turn on debug-level logging within Apache, and see if the logs then show anything interesting for a subsequent WebDAV access failure.

Similar Messages

  • I have problem access ICloud with active pasword

    I have problem access ICloud with active pasword
    In the Iphone I don't have problem
    Tanks

    Welcome to the Apple Community.
    Try restarting your browser or clearing its cache.

  • Equium A100-027 PSAAQ - having problems accessing Internet with WLan

    Just installed WXP on my Equium A100-027 (PSAAQ) as Vista did not like. Now am having problems accessing Internet. What drivers do I need to download and how do I install them?
    Thanks.

    Hi,
    I would suggest you to check the driver site of toshiba
    -> http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp
    search for your machine and download the wlan drivers. If you dont know which one you need just download all of them and install em, one of that drivers MUST work. ;)
    Greets

  • Is anyone having problems accessing WIFI with their iPhone

    Just noticed that yesterday I can't access WIFI with my iPhone 5s.  Happened at my office and at home.  WIFI works both places as Macbook works.  Anyone else finding this ?

        I don't wnat you to have any issues with your device, tracybayne! Let's get to work to make sure we get you up and running. Have you been able to try to reset the network settings in your phone? The best way to do that is to go into Settings, General, Reset, Reset Network Settings. The phone will power cycle and then you will need to re-type in all the wi-fi passwords again. Once that is done, please re-test it out. Keep us posted.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

  • Problem accessing Wiki with iPhone

    Hi everyone.  I just recently ran into a problem with accessing the Lion Wiki with my iPhone.  Worked a week or so ago.  I checked the logs and here's what I found:
    Started GET "/wiki/" for xxx.xxx.xxx.xxx at Fri Sep 02
      Processing by SourcesController#index as HTML
    Rendered sources/index.html.erb within layouts/iphone (110.3ms)
    Completed   in 188ms
    ActionView::Template::Error (undefined local variable or method `people_url' for #<#<Class:0x108d37738>:0x1091d15f0>):
        293:                               <span class="title"><%= t("sources.projects.title") %></span>
        294:                     </a></li>
        295:
        296:                     <li class="sc_people"><a href="<%= people_url %>">
        297:                               <span class="icon"></span>
        298:                               <span class="title"><%= t("sources.people.title") %></span>
        299:                     </a></li>
      app/views/layouts/iphone.html.erb:296:in `_app_views_layouts_iphone_html_erb___121609073_2221500700_0'
    Rendered vendor/bundle/ruby/1.8/gems/actionpack-3.0.4/lib/action_dispatch/middleware/tem plates/rescues/_trace.erb (1.2ms)
    Rendered vendor/bundle/ruby/1.8/gems/actionpack-3.0.4/lib/action_dispatch/middleware/tem plates/rescues/_request_and_response.erb (18.7ms)
    Rendered vendor/bundle/ruby/1.8/gems/actionpack-3.0.4/lib/action_dispatch/middleware/tem plates/rescues/template_error.erb within rescues/layout (26.7ms)
    I turned of the wiki and made sure the default web page could be accessed and it was, no problem.  Any thoughts on a fix?

    This is a bug that will be adressed in an upcoming update.
        A.

  • Problem accessing iPlanet with Firewall

    We have iPlanet 4.1 SP9 webserver installed in Solaris 8. The server is configured with IP address 10.98.23.17. We are able to access our JSP web application successfully thru intranet without any firewall.
    But, we face problems while accessing with Firewall. I will explain the situation below :
    We have another network with ip range 193.1.1.XXX. There is a firewall between 193.1.1.XXX and 10.99.23.XXX.
    When the user in the 193 network types URL as htp://193.1.1.38/test which is the firewall IP, the firewall does the NATting and handover the request to 10.98.23.17. The reply from the iplanet to the user is coming back as http://10.98.23.17/test. Since, 10.98.23.17 is not reachable from 193 network, he is not able to access the web application.
    I want the reply from iPlanet to the user to come as http://193.1.1.38/test. How to solve this problem ? Kindly help me ?
    TIA
    Shaik

    It sounds like you need to modify the ServerName line in the config/magnus.conf configuration file to reflect the externally visible hostname or IP address. In your case, the config/magnus.conf file should contain the following line:
    ServerName 193.1.1.38

  • Problems Accessing Website with Safari 4.1

    We have a person that cannot access www.fowa.org using Safari 4.1 using Mac OSX 10.4.11 - any access problems we need to know about? Access is no problem on multiple other versions of Safari, Firefox, MACS and PCS. Cannot replicate the problem.
    - thanks in advance

    HI,
    Try this. From the Safari Menu Bar click Safari/Preferences then select the Security tab. Click: Show Cookies Delete all cookies associated to that site. Click the Autofill tab. Click the Edit button next to: Other forms. Delete .fowa.org
    Relaunch Safari. Navigate to that site and see if that helped. If not...
    Quit Safari. Open Keychain Access (Applications/Utilities) Select Passwords on the left.
    Delete the fowa.org keychain. Relaunch Safari. Navigate to the fowa.org site. Login with the user name and password as usual. Click Yes, when prompted.
    Carolyn

  • Problem accessing gmail with IMAP using JavaMail APIs

    Hi,
    I am trying to access my gmail account with JavaMail API. I am able to access it using pop3s but not with IMAP.
    I have used following details:
    protocol: imap
    host: imap.gmail.com
    port: -1 (also tried with 993) but no success.
    My basic code is
    url = new URLName(protocol, getHostname(), 993, mbox,
                              getUsername(), getPassword());
             Properties props = null;
             try {
              props = System.getProperties();
             } catch (SecurityException sex) {
              props = new Properties();
             session = Session.getInstance(props, null);
              session.setDebug(true);
            store = session.getStore(url);
            store.connect();
            folder = store.getFolder(url);
            folder.open(Folder.READ_WRITE);Any pointers?
    Thanks.

    Changed protocol from "imap" to "imaps"....and used port 993...and its working!!!!

  • Problem accessing applet with images

    I created a JApplet with images and icons in it. (The images are on my C drive). When I add the applet to an html page, and run it, the applet isn't loaded, but I get an IO error saying that I don't have security permission to access the images. Is there someway to switch of this security, or to put the images in a jar file and access the images from the jar file?? Thank you for your help!!

    By default applets can't read files off the hard drive.
    The easiest way to handle this is to put the images and other resources (such as properties files) in the same jar file as the classes, and then use Class.getResource or Class.getResourceAsStream to load them.

  • Problem accessing JCOM with Microsoft patch 'Windows2000-KB835732-x86-ENU'

    We have developed an application that uses Weblogic 6.1 and JCOM. This application developed in VC++ uses JCOM's zero client approach to access EJBs deployed on Weblogic. It was working fine.
    But, after installing Microsoft patch 'Windows2000-KB835732-x86-ENU.EXE' on PC, our application is not able to connect to JCOM.
    Can anybody throw some light on what could have been impacted beacuse of this Microsoft patch.

    We are using Microsoft SQL Server 2008 . but it's well with MySQL & JBoss

  • HT1222 Is anyone having problems accessing server with iPhone 4S once updated to iOS7?

    I can't reach the server now that I've updated my iPhone 4S to iOS 7. Interestingly, I am using my iPad 2, which was updated at the same time, to post this! Anyone else having server issues with updates...and, in particular, updates of iPhone 4Ss and iOS7? Thank you!

    Yes. I had an iPhone 3G and when upgraded to 6.1 the bluetooth connectivity failed progressively and eventually the phone just wouldn't connect. I broke and reestablished the pairing am few times and each time it would work for a while then disconnect to the extent I thought the bluetooth hardware in the car was failing. I then got an iPhone 5 and the same issue remained. In the last few days I've paired an old Blackberry with the car kit to rule out the BMW hardware. Blackberry is fine so it has to be iOS incompatibility.

  • Problems with webdav

    Hi, we are having problems with webdav, we can not open documents using web-dav and also using oracle drive. The error: FAILED DURING READ_STREAM TO CLIENT [500] mod_dav.c
    the complet message:
    OK
    GET /dav_portal/portal/MPGP_CLH_ES/MPPG_INICIO_ES/MPPG_PUBLICACION/MPPG_PUB_DOCUMENTACION/MPPG_DOCUMENTOS/Prevencion/GENERAL/Programa Anual de Actividades Preventivas/CLHS A - PROGRAMA de Actividades Preventivas 2007.ppt failed during read_stream to client [500, #0] [mod_dav.c line 1319]
    Any suggestion or orientation are welcomed.
    A last question, Oracle drive need license ?
    Thanks in advanced.
    Regards.

    I encountered problems when the path is too long.
    Try limiting the path to less than 200 characters. I also suggest reading up on good naming conventions for files and folders. Avoid spaces and reserved characters. I know Oracle and Microsoft try to be fool-proof in this aspect, but by doing so they also perpetuate poor file/folder naming conventions for those who aren't aware of the concept.

  • Problem accessing R/3 with SSO ticket from the EP6.0

    Hi all,
    I have seen this thread: Problem accessing R/3 with SSO ticket from the EP6.0
    I know that it is possible to read SSO ticket from the Cookie in WebDynpro application.
    Now we are at the first step, we don't know how to read SSO ticket from the Cookie in WebDynpro application with java code.
    So anyone can help us?

    Hi,
    This has been discussed in a previous forum.Check this link.A code snippet is also there to read a cookie in webdynpro with this question
    How to implement SSO between Portal, Webdypro and ABAP system?
    I am not able to send the link exactly.
    Regards,
    Sowjanya.
    Message was edited by: Sowjanya Chintala

  • [ETL]Could you please help with a problem accessing UML stereotype attributes ?

    Hi all,
    Could you please help with a problem accessing UML stereotype attributes and their values ?
    Here is the description :
    -I created a UML model with Papyrus tool and I applied MARTE profile to this UML model.
    -Then, I applied <<PaStep>> stereotype to an AcceptEventAction ( which is one of the element that I created in this model ), and set the extOpDemand property of the stereotype to 2.7 with Papyrus.
    -Now In the ETL file, I can find the stereotype property of extOpDemand as follows :
    s.attribute.selectOne(a|a.name="extOpDemand") , where s is a variable of type Stereotype.
    -However I can't access the value 2.7 of the extOpDemand attribute of the <<PaStep>> Stereotype. How do I do that ?
    Please help
    Thank you

    Hi Dimitris,
    Thank you , a minimal example is provided now.
    Version of the Epsilon that I am using is : ( Epsilon Core 1.2.0.201408251031 org.eclipse.epsilon.core.feature.feature.group Eclipse.org)
    Instructions for reproducing the problem :
    1-Run the uml2etl.etl transformation with the supplied launch configuration.
    2-Open lqn.model.
    There are two folders inside MinimalExample folder, the one which is called MinimalExample has 4 files, model.uml , lqn.model, uml2lqn.etl and MinimalExampleTransformation.launch.
    The other folder which is LQN has four files. (.project),LQN.emf,LQN.ecore and untitled.model which is an example model conforming to the LQN metamodel to see how the model looks like.
    Thank you
    Mana

  • OCS10g + CS beta - Problem with WebDav / ODrive

    Hello
    I have an OCS 10.1.1.0.2 with and CSBeta 10.1.2.
    I have a login problem with webdav using Oracle Drive or MSWebFolders : login does not work, and I get the following lines (see below) in the application.log.
    Of course, the user I'm using HAS an ftp password defined (well at least I did define it several times to be sure, on the CS web ui ). Other users work.
    Any clue ?
    05/10/13 19:34:09 content: [oracle.ifs.ecm.beans.ApplicationToken] [23] INFO: preCreate:
    05/10/13 19:34:09 content: [oracle.ifs.protocols.dav.ecm.EcmDavServlet] [21] WARNING: no mapping found for ORACLE.FDK.FtpPasswordNotSet
    05/10/13 19:34:09 content: [oracle.ifs.protocols.dav.ecm.EcmDavServlet] [21] WARNING: unmapped exception: oracle.ifs.fdk.FdkException: ErrorCode = ORACLE.FDK.AuthenticationError; DetailedErrorCode = ORACLE.FDK.FtpPasswordNotSet; Cause = IFS-10162: Unable to reauthenticate; ServerStackTraceId = ; Info = null; Entries = null
    Main Exception Stack Trace:
    ORACLE.FDK.AuthenticationError:ORACLE.FDK.FtpPasswordNotSet
    at oracle.ifs.fdk.FdkException.getInstance(FdkException.java:189)
    at oracle.ifs.fdk.FdkException.getInstance(FdkException.java:81)
    at oracle.ifs.fdk.impl.SessionPool.getSession(SessionPool.java:238)
    at oracle.ifs.fdk.impl.FdkUserSessionImpl.pinSession(FdkUserSessionImpl.java:870)
    at oracle.ifs.fdk.impl.FdkUserSessionImpl.<init>(FdkUserSessionImpl.java:155)
    at oracle.ifs.fdk.impl.LoginManagerImpl.login(LoginManagerImpl.java:134)
    at oracle.ifs.fdk.http.HttpAuthManager.loginInternal(HttpAuthManager.java:511)
    at oracle.ifs.fdk.http.HttpAuthManager.login(HttpAuthManager.java:315)
    at oracle.ifs.protocols.dav.ecm.DavDigestSessionManager.addNewEntry(DavDigestSessionManager.java:475)
    at oracle.ifs.protocols.dav.ecm.DavDigestSessionManager.getSessionForDigest(DavDigestSessionManager.java:408)
    at oracle.ifs.protocols.dav.ecm.DavDigestSessionManager.getSessionFromDigest(DavDigestSessionManager.java:201)
    at oracle.ifs.protocols.dav.ecm.DavSessionManager.acquireSession(DavSessionManager.java:109)
    at oracle.ifs.protocols.dav.ecm.EcmDavServlet.processRequest(EcmDavServlet.java:3581)
    at oracle.ifs.protocols.dav.DavServlet.processRequest(DavServlet.java:2396)
    at oracle.ifs.protocols.dav.DavServlet.service(DavServlet.java:2361)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
    at oracle.ifs.fdk.http.HttpServerManager.doFilter(HttpServerManager.java:103)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:659)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: oracle.ifs.common.IfsException: IFS-10162: Unable to reauthenticate
    oracle.ifs.common.IfsException: IFS-10151: Unable to perform authentication
    oracle.ifs.common.IfsException: IFS-12911: Unable to get user verifier (authpassword); account may be locked
    oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.S_LibrarySession.reauthenticate(S_LibrarySession.java:22330)
    at oracle.ifs.server.S_LibrarySession.DMReauthenticate(S_LibrarySession.java:22227)
    at oracle.ifs.beans.LibrarySession.DMReauthenticate(LibrarySession.java:9568)
    at oracle.ifs.beans.LibrarySession.reauthenticate(LibrarySession.java:3762)
    at oracle.ifs.fdk.impl.SessionPool.getSession(SessionPool.java:160)
    ... 24 more
    Caused by: oracle.ifs.common.IfsException: IFS-10151: Unable to perform authentication
    oracle.ifs.common.IfsException: IFS-12911: Unable to get user verifier (authpassword); account may be locked
    oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.DirectoryService.authenticate(DirectoryService.java:437)
    at oracle.ifs.server.S_LibrarySession.reauthenticate(S_LibrarySession.java:22316)
    ... 28 more
    Caused by: oracle.ifs.common.IfsException: IFS-10151: Unable to perform authentication
    oracle.ifs.common.IfsException: IFS-12911: Unable to get user verifier (authpassword); account may be locked
    oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.OidCredentialManager.authenticate(OidCredentialManager.java:671)
    at oracle.ifs.server.DirectoryService.authenticate(DirectoryService.java:428)
    ... 29 more
    Caused by: oracle.ifs.common.IfsException: IFS-12911: Unable to get user verifier (authpassword); account may be locked
    oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.OidCredentialManagerUtilities.getUserAuthVerifier(OidCredentialManagerUtilities.java:945)
    at oracle.ifs.server.OidCredentialManager.checkCredential(OidCredentialManager.java:1671)
    at oracle.ifs.server.OidCredentialManager.authenticate(OidCredentialManager.java:638)
    ... 30 more
    Caused by: oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.OidCredentialManagerUtilities.getUserVerifier(OidCredentialManagerUtilities.java:3136)
    at oracle.ifs.server.OidCredentialManagerUtilities.getUserAuthVerifier(OidCredentialManagerUtilities.java:939)
    ... 32 more
    FdkException Details: oracle.ifs.fdk.FdkException: ErrorCode = ORACLE.FDK.AuthenticationError; DetailedErrorCode = ORACLE.FDK.FtpPasswordNotSet; Cause = IFS-10162: Unable to reauthenticate; ServerStackTraceId = ; Info = null; Entries = null
    05/10/13 19:34:09 content: Servlet error
    ORACLE.FDK.AuthenticationError:ORACLE.FDK.FtpPasswordNotSet
    at oracle.ifs.fdk.FdkException.getInstance(FdkException.java:189)
    at oracle.ifs.fdk.FdkException.getInstance(FdkException.java:81)
    at oracle.ifs.fdk.impl.SessionPool.getSession(SessionPool.java:238)
    at oracle.ifs.fdk.impl.FdkUserSessionImpl.pinSession(FdkUserSessionImpl.java:870)
    at oracle.ifs.fdk.impl.FdkUserSessionImpl.<init>(FdkUserSessionImpl.java:155)
    at oracle.ifs.fdk.impl.LoginManagerImpl.login(LoginManagerImpl.java:134)
    at oracle.ifs.fdk.http.HttpAuthManager.loginInternal(HttpAuthManager.java:511)
    at oracle.ifs.fdk.http.HttpAuthManager.login(HttpAuthManager.java:315)
    at oracle.ifs.protocols.dav.ecm.DavDigestSessionManager.addNewEntry(DavDigestSessionManager.java:475)
    at oracle.ifs.protocols.dav.ecm.DavDigestSessionManager.getSessionForDigest(DavDigestSessionManager.java:408)
    at oracle.ifs.protocols.dav.ecm.DavDigestSessionManager.getSessionFromDigest(DavDigestSessionManager.java:201)
    at oracle.ifs.protocols.dav.ecm.DavSessionManager.acquireSession(DavSessionManager.java:109)
    at oracle.ifs.protocols.dav.ecm.EcmDavServlet.processRequest(EcmDavServlet.java:3581)
    at oracle.ifs.protocols.dav.DavServlet.processRequest(DavServlet.java:2396)
    at oracle.ifs.protocols.dav.DavServlet.service(DavServlet.java:2361)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
    at oracle.ifs.fdk.http.HttpServerManager.doFilter(HttpServerManager.java:103)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:659)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: oracle.ifs.common.IfsException: IFS-10162: Unable to reauthenticate
    oracle.ifs.common.IfsException: IFS-10151: Unable to perform authentication
    oracle.ifs.common.IfsException: IFS-12911: Unable to get user verifier (authpassword); account may be locked
    oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.S_LibrarySession.reauthenticate(S_LibrarySession.java:22330)
    at oracle.ifs.server.S_LibrarySession.DMReauthenticate(S_LibrarySession.java:22227)
    at oracle.ifs.beans.LibrarySession.DMReauthenticate(LibrarySession.java:9568)
    at oracle.ifs.beans.LibrarySession.reauthenticate(LibrarySession.java:3762)
    at oracle.ifs.fdk.impl.SessionPool.getSession(SessionPool.java:160)
    ... 24 more
    Caused by: oracle.ifs.common.IfsException: IFS-10151: Unable to perform authentication
    oracle.ifs.common.IfsException: IFS-12911: Unable to get user verifier (authpassword); account may be locked
    oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.DirectoryService.authenticate(DirectoryService.java:437)
    at oracle.ifs.server.S_LibrarySession.reauthenticate(S_LibrarySession.java:22316)
    ... 28 more
    Caused by: oracle.ifs.common.IfsException: IFS-10151: Unable to perform authentication
    oracle.ifs.common.IfsException: IFS-12911: Unable to get user verifier (authpassword); account may be locked
    oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.OidCredentialManager.authenticate(OidCredentialManager.java:671)
    at oracle.ifs.server.DirectoryService.authenticate(DirectoryService.java:428)
    ... 29 more
    Caused by: oracle.ifs.common.IfsException: IFS-12911: Unable to get user verifier (authpassword); account may be locked
    oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.OidCredentialManagerUtilities.getUserAuthVerifier(OidCredentialManagerUtilities.java:945)
    at oracle.ifs.server.OidCredentialManager.checkCredential(OidCredentialManager.java:1671)
    at oracle.ifs.server.OidCredentialManager.authenticate(OidCredentialManager.java:638)
    ... 30 more
    Caused by: oracle.ifs.common.IfsException: IFS-12994: Verifier undefined for user
    at oracle.ifs.server.OidCredentialManagerUtilities.getUserVerifier(OidCredentialManagerUtilities.java:3136)
    at oracle.ifs.server.OidCredentialManagerUtilities.getUserAuthVerifier(OidCredentialManagerUtilities.java:939)
    ... 32 more
    FdkException Details: oracle.ifs.fdk.FdkException: ErrorCode = ORACLE.FDK.AuthenticationError; DetailedErrorCode = ORACLE.FDK.FtpPasswordNotSet; Cause = IFS-10162: Unable to reauthenticate; ServerStackTraceId = ; Info = null; Entries = null

    The FdkException detailed error is misleading - it has nothing to do with FTP passwords not being set.
    Essentially, what is happening is that we are first trying to lookup the user in OID and get from them the authpassword;orclcommonpwd attribute and in particular the value of X- ORCLIFSMD5. For some reason, this is not set for your user - or at least it is not returning anyway. Then we are reverting over to check for an application specific version of the authpassword attribute - which also does not return any value for X- ORCLIFSMD5.
    The only way these verifiers can be set is by authenticating with cleartext as the end-user in question. This could be done by logging in via SSO for example.
    I would try doing an ldapsearch against OID from the realm's user search base for your user in question. Check to see if the authpassword verifiers are set. If they are not set, try authenticating via SSO as the user to some application - and then once again run the ldapsearch to see if the verifiers were generated. once the authpassword;orclcommonpwd verifiers are generated for X- ORCLIFSMD5, you should be able to authenticate via Oracle Drive through DAV.
    thanks,
    Matt.

Maybe you are looking for

  • Output from JDBC Adapter mapped to multiple message types

    Hi! I face to a problem with the message mapping.. I do select with the JDBC adapter. This statement selects one field of clob type and it already contains a message - XML document. Depending of the type of this message will be done the message mappi

  • Sap script - please use meaningfull subject titles....

    Hi, My requirement is to print theree texts in theree different lines.So I declared the texts in SAP script with the command "/". Buut in spool I am getting all the three texts in one single line.Can anyone suggest how to get the texts in three diffe

  • Session corruption

    Here is the scenario. We have an Apex app that uses OID/LDAP for authentication. After login and navigating to a page, copy the URL, which is in the form /pls/htmldb/f?p=115:2:12707292724811104707. Then close all browser windows, or move from FireFox

  • Cluster Interconnect droped packets.

    Hi, We have a 4 node RAC cluster 10.2.0.3 that is seeing some reboot issues that seem to be network related. The network statistics are showing dropped packets across the interconnect (bond1,eth2). Is this normal behavior due to using UDP? $ netstat

  • Strange problem with Extension Mobility and Click to Call

    Can anyone explain how is it possible ? Any ideas, guys? CUCM 7.1.3 PC1 with IP comm. and user1 is logged in to Extension Mobility + Click to Call. User1 can make a call using Click to Call. PC2 with IP comm. and user2 is logged in to Extension Mobil