Looking for a WebDav Client

Hi
Here is my problem : I have several Oracle Report servers on WinNT that generate PDF File each night. I want those files to be automatically integrated into the portal.
Thus i set up OraDav and it works quite fine when i access the oradav container with a windows WebDav Client. But i need more : as WebFolders are not usable to indicate to the Report Server the place where to store the PDF, i have to see the oradav server similarily to a normal windows folder.
The only software i found for this is Webdrive (webdrive.com) but , because we use Citrix ICA on our WinNT to allow multiple connexion, Webdrive returns memory errors when i try to connect. It works fine if i remove ICA.
Does anybody see an other solution, or knows another software that could help me ?
Thanks
A.

Sure it's possible!
Read there RFC's and get going:
- http://www.ietf.org/rfc/rfc2518.txt
- http://www.ietf.org/rfc/rfc3253.txt
- http://www.ietf.org/rfc/rfc3648.txt
- http://www.ietf.org/rfc/rfc3744.txt

Similar Messages

  • Looking for a variable client financial app

    Can anyone help I have down loaded loads of apps and I can't find anything that does what I need it to.
    So here is the problem I have a business where my clients pay changeable amounts on a  regular basis for example monthly, quarterly or 6 monthly I am looking for a app that not only reminds me what's due and when but an app that allows me to see set months and keep a track of who has paid and who I still need to chase.
    Any ideas much appreciated I don't mind paying for a app if it will definitely do what I want it to.

    I've recently become a big fan of OneSwarm - http://oneswarm.cs.washington.edu - I like that it supports remote access.
    But I'm definitely interested to see what this thread brings up!
    Last edited by hAyZe (2010-01-11 20:50:45)

  • I look for a "java client IRC applet"

    Hello every body and good hollydays!
    For long time, I looked for a open source java "client irc" applet.
    I have found one, but it does' n run! (it needs to be signed and unfortunatly
    I don't doing it !).
    Briefly i need links about all this subject.
    A great thanks.
    elias

    Search in google by "java client IRC applet" found many different links :-)

  • OSX 10.9 - Mavericks webdav client broken

    My company provides a webdav server solution for OS X webdav clients.
    Since OS X 10.9 upgrade, many webdav actions including dragging a file onto a webdav mount using Finder and editing files using MS office applications (Microsoft Word, Office, Powerpoint) have stopped working.
    Looking at client <-> webdav server traffic, it appears that after acquiring LOCK on a file, client is not supplying lock token in subsequent requests to server, resulting in 423 responses on subsequent operations.
    According to webdav spec, client needs to supply file lock-token in subsequent commands to server.
    At this point, webdav mount also gets disconnected with following error in dmesg.
    Sandbox: QuickLookSatelli(41334) deny network-outbound /private/tmp/.webdavUDS.YlINRf
    webdav_sendmsg: sock_connect() = 1
    webdav_close_mnomap: no cache file
    webdav server: https://server.com/webdav/: connection is dead
    webdav_sendmsg: sock_connect() = 61
    webdav_sendmsg: sock_connect() = 61
    I confirmed that this is not a problem with 10.8 or earlier versions.
    Has anyone else seen this problem and have a solution ?
    Thanks

    Egnyte wrote:
    What do you mean by "you are going to have to go deeper than that" ?
    Would it be possible for you to pm me a test account on your server ? I can then test my Mavericks against your server to see if this issue shows up.
    I just mean that something like this requires additional supporting evidence. I was looking for the HTTP headers, which you provided.
    My server is inside an application. Hopefully it will get approved and be in the Mac App Store any day now. Unfortunately, I have heavily dependent on the Finder working correctly on the reviewer's machine. As you know, such things are not guaranteed. Send me an e-mail and I will give you either a promo code or a test iTunes account, depending on my luck in the next 48 hours. You can crank your LogLevel to 9 and fill your console.app log - no Wireshark required.
    However, you may need to go quite deep with this one. I looked at the webdav client code for Mavericks, and I just don't see any way for it to not include the Lock-Token. This is the only place UNLOCK is ever sent from. The C++ style comments are from me.
    int network_unlock_with_nodecache_locked(
      struct node_entry *node) /* -> node to unlock on server */
              int error;
              CFURLRef urlRef;
              CFStringRef lockTokenRef;
              char* locktokentofree = NULL;
              uid_t file_locktoken_uid = 0;
      /* the 2 headers */
              CFIndex headerCount = 2;
              struct HeaderFieldValue headers[] = {
                        { CFSTR("Accept"), CFSTR("*/*") },
      // Apple seems to think this is required.
                        { CFSTR("Lock-Token"), NULL },
                        { CFSTR("translate"), CFSTR("f") }
              if (gServerIdent & WEBDAV_MICROSOFT_IIS_SERVER) {
      /* translate flag only for Microsoft IIS Server */
                        headerCount += 1;
              locktokentofree = node->file_locktoken;
              node->file_locktoken = NULL;
              file_locktoken_uid = node->file_locktoken_uid;
              node->file_locktoken_uid = 0;
      /*unlocking the node cache before calling send_transaction()*/
              unlock_node_cache();
      /* create a CFURL to the node */
              urlRef = create_cfurl_from_node(node, NULL, 0);
              require_action_quiet(urlRef != NULL, create_cfurl_from_node, error = EIO);
      // Code obviously copy and pasted from network_delete() function.
      /* in the unlikely event that this fails, the DELETE will fail */
      // Event if locktokentofree is null or empty, lockTokenRef should still have a
      // non-null value.
              lockTokenRef = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("<%s>"), locktokentofree);
      // Don't even send the message if lockTokenRef is null.
              require_action_quiet(lockTokenRef != NULL, CFStringCreateWithFormat, error = EIO);
      // Lock-Token gets a value here. Is there some value that will make
      // CFHTTPMessageSetHeaderFieldValue drop the header entirely in send_transaction()?
              headers[1].value = lockTokenRef;
      /* send request to the server and get the response */
      /* Note: we use the credentials of the user than obtained the LOCK */
              error = send_transaction(file_locktoken_uid, urlRef, NULL, CFSTR("UNLOCK"), NULL,
                        headerCount, headers, REDIRECT_DISABLE, NULL, NULL, NULL);
              CFRelease(lockTokenRef);
    CFStringCreateWithFormat:
              CFRelease(urlRef);
    create_cfurl_from_node:
              free(locktokentofree);
              locktokentofree = NULL;
      /*Locking the node cache as the function returns a locked node*/
              lock_node_cache();
              return ( error );
    The only real difference between the Mavericks code and the Mountain Lion version is that Mavericks has better thread safety. Mavericks pulls values from the node and sets the final node values right away, sending the old values over the wire. If send_transaction() fails or hangs, then the node is still unlocked and other routines can access the node.
    I think you should look at all of your messages and find where the Lock-Token no longer gets included. Still, I don't see how it is even possible. If there is some header value you can provide such that CFHTTPMessageSetHeaderFieldValue does not create the header, then that would be your bug. It seems to handle null just fine and would emit "<>" on an empty string, which would still be a valid header.

  • Looking for a client appointment app

    I'm looking for an application for a friend who is a personal trainer. And if such an application doesn't exist, I'm considering writing one (I'm a software engineer)
    The application would maintain a database of clients, and a schedule of appointments with them.
    For each client, the following data needs to be maintained: contact information, current statistics (weight, body fat percentage, strength) as well as a history of statistics. Clients pay for a package of sessions in advance, and the app would keep track of how many prepaid sessions remain, updating that number with each scheduled appointment and each payment. Every client has recurring appointments, several per week, but rescheduling is common, and needs to be easy. And the app should be able to print out a year report for taxes.
    I was thinking that it should interface with Address Book for contact information, and Calendar for appointments.
    The main app should run on Snow Leopard, but mobile access through an iOS 4 sister app would be great. (Although if it works with Address Book and Calendar, their synchronization through MobileMe might be sufficient)
    Is there any such thing? There must be other trainers, and other professionals with similar needs.
    -Ron.

    Hi Ron,
    was there a template for bento that met all of the requirements that you detailed?  My wife is a personal trainer and we've been looking for similar functionality in an app.  Currently she's using the calendar app and contact book, but as you say, rescheduling is frequent and tracking remaining sessions would be very helpful.  Let me know,
    Paul

  • How to look for kMAT material in Testing client?

    Hi PP members:
    How to look for KMAT material in Test client,
    Note: I went to mm60 and entered material type: KMAT it did not populate any
    materials
    Is there any way where I can find the materials, If yes please let me know
    thanks
    Suren

    Hi Saritha:
    When I went to SE16, and entered MTART as KMAT it giving the following
    It is replying me back "No table entries found for specified key"
    Also want to bring to your kind attention I left MATNR field blank as I donot know
    the VC materials
    thanks

  • Looking for a good method or APP to have client sign a form in a text box

    I am looking for a good method or App to take an existing form/Document and have a client sign, date etc.  I will want to create the text boxes in a stationary location.  Possibly to also take a picture to add to form.
    Has anyone used any apps to accomplish this?
    Apps I have tried.
    Signnow
    Sign PDF
    Sign Easy
    Sign Easy is about the best except the signatures (text boxes, dates, etc) are free floating and confuse people where to add them on form each time.  Clients have no clue how to use it.
    Any suggestions would be helpful.  I may be over complicating this also, as there could just be a PDF app that I utilize.
    Thanks,
    Jim

    Maybe more than you need...
    PDF readers
    PDF Expert – the PDF handling app for the iPad. "It allows you to markup documents with highlights and handwriting, insert text and stamps, sign and even merge PDFs."
    https://itunes.apple.com/us/app/pdf-expert-5-fill-forms-annotate/id743974925?mt= 8
    iAnnotate – turns your tablet into a world-class productivity tool for reading, marking up, and sharing PDFs, Word documents, PowerPoint files, and images.  Has a secure document edition designed for corporations.
    http://www.branchfire.com/iannotate/

  • I have a client who was working with Now to Date, which is now obsolete.  She is looking for a mac calendar program that is as close to Now to Date as possible.  She has installed Outlook 2012 but finds that is takes too much time to enter data.  Help?

    I have a client who has been using Now to Date on her Mac.  That program is now obscure and she is looking for software that is extremely similar.  She has tried Outlook for Mac and it is too labor-intensive for her.  She wants a professional look, and something that is not linked to e-mail as she works with a lot of proprietary information.  Help?

    I could not identify that app in macupdate.com. If a Calendar program, what about iCal? did she try it and disliked? If you go to macupdate.com, and type ‘calendar’ in seach filed, you will be given a lot of apps, you or she should test what it most appropriate for your/her needs.

  • I'm looking for a scheduling app that will send reminder emails to clients

    I'm looking for an iPad appointment app that will send reminder emails to clients & synch with my iMac. Suggestions?

    Voicemail is through your carrier and on their equipment.
    It's function and features is set by them, not your phone.

  • I am looking for a map app that will allow me to place pins where my clients offices are on a map and keep them save every time I open the app. Does anyone out there know of an app that will do this?

    I am looking for a map app that will allow me to place pins where my clients offices are on a map and keep them save every time I open the app. Does anyone out there know of an app that will do this?

    "Motion 5" is your friend.
    Michael Wohl has a nice 15 video series (free) about Motion 5 at http://www.macprovideo.com/tutorial/motion5101-overview-and-workflow-guide (right side)
    This is a "teaser" series to sell his tutorials but it is really good. Just saw it yesterday for the first time.
    While all you want is just to place pins, realize that Motion has so much more. All kinds of effects and they can be really customized. Maybe put their street address, contact name, and phone number by the pin?
    Motion 5: cheap at $49.99 (just got my download two days ago)
    Motion 5: Support Community athttps://discussions.apple.com/community/professional_applications/motion_5
    If you're using the map for, say, deliveries, and use an iPad, what you could do is have a general map of the area imported into Motion, create the pins and whatever, then save (share?) it to the iPad.
    Disclaimer: I have virtually no relationship with anything connected with this tutorial product, developer, or anything.

  • Looking for a specific feature in an FTP Client

    Hello!
    I am looking for a "simple" feature in any FTP client for OS X.
    I have tried Fetch, Transmit, CyberDuck and Interarchy 7.x and none had the ability to throttle uploads/downloads. I work with a limited bandwidth and sometimes have to download files (or upload) in the background but at a very slow speed (because the peer has a poor connection).
    None of these nice (and they are nice!) ftp programs can do this. I have to either use wget via the command line (wget --limit-rate=xx) or use Total Commander for Windows inside a Parallels Virtual Machine.
    Does anybody know about a Mac FTP client that can throttle and enqueue items easily?
    Thanks in advance!

    Look at "lftp". It as about a zillion parameters that can be set. One of them is "net:limit-total-rate"
    Quoted from the Docs....
    limit transfer rate of all connections in sum. 0 means unlimited. You can specify two numbers separated by colon to limit download and upload rate separately. Note that sockets have receive buffers on them, this can lead to network link load higher than this rate limit just after transfer beginning. You can try to set net:socket-buffer to relatively small value to avoid this.
    Find lftp here lftp.yar.ru It is also in thr Fink archive. http://fink.sourceforge.net/

  • Looking for a client/server that supports multiple protocol and delivery

    Hi all, I don't know if this the right place to ask my question,here it goes.
    I am looking to develop a client-server that supports multiple protocols such as HTTP, HTTPS etc. I am looking for a framework( i don't know if that is correct or I need some kind of web-service (soap etc)) that would manage connection, security etc. I would like to like to devote most of my time in developing business objects with multiple delivery mechanism such as sending serilized java objects, xml message or soap message, or in some case JMS message as well. So I need a client server that can come in via TCP/IP or HTTP or anyother industry standard protocol and I should be able to service him with pub/sub model and also request/response model as well.
    I don't know if I had explained what I need, I would like to know what technologies I should be evaluating and which direction I should be heading... Also the server I'm developing should be free of Java constraints if needed...
    Also this service is not webbased service as now but if need arises I should have a flexibilty to make them web enabled in future. Also I would like to work with open source webservers or appservers if I need

    Inxsible wrote:I installed i3 - along with the i3status - which I still have to figure out. I am liking what I see as of now. It reminds me of wmii -- when I used it way back when. However I do not like the title bar. I would much rather prefer a 1 px border around the focused window.
    "i3 was created because wmii, our favorite window manager at the time, didn't provide some features we wanted (multi-monitor done right, for example), had some bugs, didn't progress since quite some time and wasn't easy to hack at all (source code comments/documentation completely lacking). Still, we think the wmii developers and contributors did a great job. Thank you for inspiring us to create i3. "
    To change the border of the current client, you can use bn to use the normal border (including window title), bp to use a 1-pixel border (no window title) and bb to make the client borderless. There is also bt  which will toggle the different border styles.
    Examples:
    bindsym Mod1+t bn
    bindsym Mod1+y bp
    bindsym Mod1+u bb
    or put in your config file
    new_window bb
    from: http://i3.zekjur.net/docs/userguide.html (you probably already found that by now )

  • Looking for app to manage client list

    I'm looking for an app/software that can manage scheduling, inventory, client formulas, client photos, client history, using Mac Address Book. I want to add/access this information using my macbook pro, i pad mini, and iphone. I understand Bento has changed and no longer interfaces with mac address book. Anyone have any other suggestions?

    Do a Google, Bing, Macupdate & CNET Mac Download search. 

  • Need webdav client redirector drivers for Tecra A9

    Whera are find a webdav client redirector drivers?

    Toshiba provide drivers to control the devices in own notebooks.
    The Webdav Client Redirector component enables Windows to log I/O against file servers using the Webdav protocol.
    This protocol is used by different Web servers, like Apache Web server for example and by Internet service providers
    So Im really confused about your question here in the Toshiba forum!
    Maybe you should visit the Microsoft website for details.
    [WebDAV Redirector (IIS 6.0)|http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/a71e40bd-ecb0-4f87-8f6c-935fe6552565.mspx?mfr=true]

  • Webdav client for XE

    Hi,
    Which webdav client you recommend for using with XE?
    Thank you

    If you can connect with browser but not Oracle Drive, the Server URL was where I had a similar problem. Make sure it is in the form: http://fullyQualifiedHostName:7778/content/dav/yourAppArea/users/Users-X/userName if you want to go all the way down to the Personal Library level; where fullyQuallifiedHostName is based on how DNS is set for your system (i.e. foo.bar.com),
    yourAppArea is site name for your storage are (same as upper level folder when you connect with browser), Users-X (change X to uppercase of first letter of your userid) and userName is your login userID which worked for the browser.

Maybe you are looking for

  • Message No processing because no items were selected

    Hi, We are using AFS SCC 6.0 system. I am trying to allocate a SO, it is open, and there are no delivery/billing blocks. The /afs/mdo4 report shows stock in T tab for this SO. But when i try to allocate i get the message : No processing because no it

  • Can you change the song order in iTunes?

    I imported an album from my hard drive to iTunes but the songs are showing up out of order and I don't want to import the live album to my iPod in the wrong order. I've checked the info on all of the tracks and everything is correct. How do I get the

  • ITunes store and vista?

    well i have windows vista, you see? and i've been trying to download podcasts for ipod but it isnt working, it tries to download for not even a second and then a little orange excalmation point shows up next to it. what should i do to solve this prob

  • I was trying to update my OS to Lion Mountain but I get the message:This Apple ID has not yet been used with the iTunes Store.

    I was trying to update my OS to Lion Mountain but I get the message:This Apple ID has not yet been used with the iTunes Store.

  • Camera Roll not working properly

    So I have two questions about the camera on the iPhone. The first is that when I take a picture it will appear centered, but when I go to view it in the camera roll it appears off center. Anyone having a situation similar? The other question I have i