DVA stops working after a few days

GW 2014 SP HP1
Hi,
every few days I have to restart DVA, because it shows no more "Conversion
Successes" only "Conversion failures":
GroupWise 2014 SP1 Document Viewer Agent
Status | Configuration | Environment | Log Files | Quarantine Files | Help
Up Time: 5 Days 17 Hours 55 Minutes
Total Busy Peak
Worker Processes 15 2 15
Server Information
Platform Name Linux Release 3.0.101-0.47.52-default
High Availability Port 8400
Request Statistics
Total
File Conversion Requests 30248
Conversion Success 19498
Conversion Failure 10733
Worker Abends 1
Exceeded Time Limit 159
WebAccess shows "[38445] A failure occurred in the document conversion
process. The document cannot be viewed at this time. " when trying to view
an attachment.
Another symptom is: DVA Web Console, Log Files shows an empty list of log
files.
After restart of DVA it again works for some days.
Any ideas?
Thanks,
Mirko

Hi Laura,
I opened a SR.
Thanks,
Mirko
laurabuckley wrote:
>
> Hi Mirko
>
> I am aware of issues on the DVA hanging threads. I'm not sure if this
> is what is happening in your environment. If you open a Service Request
> with Novell Technical Support you will be able to get a newer version of
> GroupWise 2014 that has DVA fixes in it. My suggestion is that you try
> that first.
>
> Let us know how you proceed.
>
> Cheers,
>
>

Similar Messages

  • Flash player stops working after a few days.

    I'm recently having issues with flash player on IE and Firefox each time a new version is released. This time the flash player stops working after a few days without any reasons. I have asked two other questions and I have tried the solutions but this time they are not working:
    http://forums.adobe.com/message/4617987#4617987
    http://forums.adobe.com/message/4548211#4548211
    Could anyone tell me what the reason is?
    I also need links providing Flash player for IE and Firefox which are always updated. I need to first download the installer then install it offline not install it directly from adobe website.
    Please help me solve this once forever!
    Message was edited by: sia1989

    I'd suggest trying a clean install: How do I do a clean install of Flash Player?
    For offline installers, please see this help document: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header

  • Remote control stops working after a few days

    NW 6 SP3
    ZFD 3.2 SP2
    After importing workstations, remote control works fine. After a few
    days, remote ping might work but NOT remote control. Sometimes even remote ping errors out with the message that the "REMOTE MANAGEMENT
    AGENT
    IS NOT RUNNING"(when it appears it is). If I stop and start the
    "novell
    wuser agent" service, then I can usually remote control the
    workstation
    again. Occasionally, however, I get the message "The Remote
    Management
    agent was unable to locate the workstation in NDS". At which point I
    have
    to delete the workstation object and re-import the workstation to be
    able
    to remote control it again.
    Any help is appreciated.
    Jeff

    > [email protected]
    >
    > >
    > > The login script is running wsreg32.exe with the /s parameter
    > > pointing to the server servicing the import services.
    >
    > Is there a reason you are using this?
    > instead of DNS, hosts, or registry?
    >
    > As I am wondering if maybe at times the workstation manager tries to
    > registr, but can't find the server, even the wsreg is running.
    > Normally onces the workstation has registered it doesn't need the
    > address again, but if for whatever reason cannot find it's
    workstation
    > object it will need to resolve the import services.
    >
    > --
    > Jared L Jennings, CNE
    > Novell Support Forums SysOp.
    > http://support.novell.com/forums/faq_nntp.html
    >
    > Posting with XanaNews Reader 1.15.8.2
    > Geek by Nature, NetWare by Choice.
    I have a different server for each site(city) hosting the import
    services. There is only one variable allowed in DNS so all sites
    would
    try to get services and register to the same server.
    Using the container login script for each site to set the /s parameter
    was
    easier than changing the registry setting for each
    workstation...especially if that server changed. This way I would
    only
    have to change it one place.
    If the workstation has already been registered and imported AND I can
    remote control it, does it NEED to find the import server again if it
    hasn't been rebooted since the last time I remote controlled it?
    Thanks, jg

  • The Maverick Calendar App-Alert Option-to Open a File-stops working after a few days

    The Maverick Calendar App, Alert Option, to Open a File works for a few days, than stops. The Calendar alert still triggers, but the reference to launching the other file disappears. Has anyone found and solved this problem?
    This Calendar, Open File Option, worked fine without error in 10.8 and earlier, but I was only given the option to launch an Apple Script.

    Hi Laura,
    I opened a SR.
    Thanks,
    Mirko
    laurabuckley wrote:
    >
    > Hi Mirko
    >
    > I am aware of issues on the DVA hanging threads. I'm not sure if this
    > is what is happening in your environment. If you open a Service Request
    > with Novell Technical Support you will be able to get a newer version of
    > GroupWise 2014 that has DVA fixes in it. My suggestion is that you try
    > that first.
    >
    > Let us know how you proceed.
    >
    > Cheers,
    >
    >

  • LDAP Stops working after a few days

    So I configured LDAP using the built in method and it works great. I then have a custom user_in_group function that checks against the ldap. Both of these work perfect for a while, after a day or so though, they stop working all together. Rebooting the server solves the problem, but seems a bit drastic on a nightly basis.
    Does anyone know where to even start looking? I can't find any error logs pertaining to LDAP authentication or authorization.
    Here is the user_in_group sub in case its doing something bad, it is authorizing agianst a local Active Directory server. We have two AD servers and changing the IP address here doesn't make it start working, only rebooting does. I have a feeling that there is a limited pool of LDAP connections and somehow they are getting used up and eventualy there are none left. No errors appear on either AD servers logs or anywhere i can find on Oracle. BTW I'm running oracle on RedHat Enterprise and it is oracle 10g with HTML DB 1.5
    create or replace FUNCTION useringroup (p_username IN VARCHAR2, p_group IN VARCHAR2)
    RETURN boolean
    AS
    l_retval pls_integer := -1;
    l_session dbms_ldap.SESSION;
    l_attrs dbms_ldap.string_collection;
    l_message dbms_ldap.message;
    l_found boolean := FALSE;
    l_username varchar2(50) := '';
    v_array mytabletype;
    BEGIN
    dbms_ldap.use_exception := FALSE;
    --connect to LDAP and authenticate
    l_session := dbms_ldap.init(hostname => '192.168.11.203', portnum => '389');
    l_retval := dbms_ldap.simple_bind_s(ld => l_session, dn => 'LDAP Connector', passwd => '*****');
    --Get Group Membership
    l_attrs(1) := 'memberOf';
    l_username := p_username;
    if (instr( UPPER(l_username),'@NEWAUD.COM') = 0) then
    l_username := concat(l_username, '@newaud.com');
    end if;
    v_array := str2tbl(p_group);
    FOR i IN 1 .. v_array.COUNT LOOP
    l_retval := dbms_ldap.search_s(ld => l_session,
    base => 'ou=Everyone,dc=newaud,dc=com',
    filter =>
    '(&(userPrincipalName=' || l_username || ') ' ||
    '(|(memberOf=CN=' || v_array(i) || ',CN=Builtin,DC=newaud,DC=com) ' ||
    ' (memberOf=CN=' || v_array(i) || ',OU=Groups,OU=Everyone,DC=newaud,DC=com)))',
    scope => DBMS_LDAP.SCOPE_SUBTREE,
    attrs => l_attrs,
    attronly => 0,
    res => l_message);
    IF dbms_ldap.count_entries(ld => l_session, msg => l_message) > 0 THEN
    --must unbind from LDAP
    l_retval := dbms_ldap.unbind_s(ld => l_session);
    RETURN TRUE;
    END IF;
    END LOOP;
    RETURN FALSE;
    EXCEPTION
    WHEN others THEN
    l_retval := dbms_ldap.unbind_s(ld => l_session);
    RETURN FALSE;
    END useringroup;

    Looks like you are only unbinding when you have a success.
    IF dbms_ldap.count_entries(ld => l_session, msg => l_message) > 0 THEN
    --must unbind from LDAP
    l_retval := dbms_ldap.unbind_s(ld => l_session);
    RETURN TRUE;
    You always must unbind.
    Anton

  • Remote stops working after a few days

    I've recently run into a problem at one of my sites. Nothing has been
    changed on the Netware server, and nothing was changed in ZenWorks,
    but I
    get a message stating, "The Remote management agent was unable to
    locate the
    workstation in NDS"
    The server is running eDir 85.27c, NW5.1 SP5, with Zenworks 3.2 sp1.
    I
    checked for NDS synchronization issues, and there are none. The
    server has
    a replica of the partition, and DSRepair comes up clean.
    If I delete the workstation and unregister it, then allow Zen to
    re-register
    and import the workstation, it will work again, for a few days.
    Any help would be greatly appreciated.
    Frank

    Daddyo,
    It appears that in the past few days you have not received a response
    to your posting. That concerns us, and has triggered this automated
    reply.
    Has your problem been resolved? If not, you might try one of the
    following options:
    - Check the knowledgebase at http://support.novell.com
    - Check all of the other support tools and options available at
    http://support.novell.com
    - You could also try posting your message again. Make sure it is
    posted in the correct news group. (http://support.novell.com/forums)
    If this is a reply to a duplicate posting, please ignore and accept
    our apologies and rest assured we will issue a stern reprimand to our
    posting bot.
    Your Novell Support Connection Forums Team
    http://support.novell.com/forums/

  • Can someone tell me why adobe reader stops working after a few days.

    Can someone tell me whats wrong with my adobe reader? I'm having to uninstall and reinstall it every other day. I cant open none of my downloads in any of my programs. Please can someone tell me how to fix this.

    What is your operating system?  What is your Reader version?  What exactly means "cant"?

  • Safari and firefox stop working after a few minutes of browsing, regardless of what site I'm on. I have to restart my computer to get internet access again but it only works for a few more minutes, then I have to restart again. Please help!

    Safari and firefox stop working after a few minutes of browsing, regardless of what site I'm on. I have to restart my computer to get internet access again but it only works for a few more minutes, then I have to restart again. I don't get a spinning ball, it just stops working at whatever page it's on. I can close the program just fine but when I re-open it, either safari or firefox, it freezes trying to load the hompage. This started a few days ago after trying to stream a movie on my computer. I'm on a Mac Air OS X Version 10.6.8 and have downloaded all updates. When I go into finder, it says I have over 80 gigs available. Is there some other memory cache that I need to check? Thanks so much for your help.

    ejwoodall wrote:
    It's not a router problem as I explained in my post. If it was a router problem then I wouldn't have the problem everywhere I go. It is an issue with the software.
    Then I guess the millions of people running 10.5.7 with no issues are just hallucinating that their machines are working fine?
    I'm not trying to belittle your issues; you're certainly having them and I know first hand how annoying an intermittent AirPort issue can be. (In fact, mine was due to an AirPort driver bug that no one else seemed to suffer from.)
    The single best diagnostic you could do is take your system running 10.5.7 to an Apple Store, and try using their in-store network.
    If your machine performs flawlessly, it may be a router issue.
    If your machine has connectivity issues there, it may be a hardware problem with your machine.
    There have been numerous people in multiple threads over the years who swore that an update was buggy because things used to work, but returned later to sheepishly admit that they took their machine in, a problem was found and fixed, and now their Mac works flawlessly with the newer software.
    But simply reinstalling 10.5.5 in no way means the explanation of how firmware bugs may be at play here is incorrect.
    In the context of that explanation, all you've done is possibly reinstall software that asks to add "2 + 3."

  • Touch screen L2105 always stops working after a few minutes

    I have windows 8.1 and the touch screen always stops working after a few minutes- ie. the touch operation via USB, the screen itself is OK.Have tried windows switching power saving off, but no help
    charsepp

    Hello charsepp,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that the touchscreen stops working after a short period on your HP L2105 Monitor. The first thing you are going to need to do is determine if this is a monitor or PC issue. To do this you should try connecting the monitor to another computer and see if the issue persists.
    If the issue does not persist it is the computer, and if your computer is also HP I would be happy to assist you, but first I would encourage you to post your product number for your computer. I am linking an HP Support document below that will show you how to find your product number. As well, if you could indicate which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this and the product number I can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Which Windows operating system am I running? Is the Windows Version on My Computer 32-bit or 64-bit?
    If the issue persists when you try the monitor on another computer then the issue appears to be a physical issue and I think it would be best if you contacted HP technical support for repair options.
    US support link to contact options for HP products purchased in the US.
    Outside of US support link to contact options for HP products purchased outside the US.
    Please re-post if you require additional support. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • I downloaded CS6 and am having issues with my print driver. It is not compatible with the HP 2600n and have tried to download drivers given to me by adobe ( (Jupiter 3) but it is not working. after a few days. Its a temporary fix and is still looking for

    I downloaded CS6 and am having issues with my print driver. It is not compatible with the HP 2600n and have tried to download drivers given to me by adobe ( (Jupiter 3) but it is not working. after a few days. Its a temporary fix and is still looking for the HP driver when i boot up. It also will not save in any print or postscript format. Does anyone know how to fix?
    Currently use a Mac with the latest Mavericks 10.9.4

        Oh boy! Acting kind of weird seems to be an understatement, aquaequus!
    What type of troubleshooting were we able to do with you? I want to make sure that we can get some sort of resolution for this problem.
    It is quite possible the battery door may get your phone in working order again. I'm not sure if the store has it in stock, but it is available in our warehouse for $14.99 which can be ordered via customer service.
    Tamara H.
    Follow us on Twitter @VZWSupport

  • I have upgraded iTunes now it stops working after a few seconds.Help?

    i have upgraded iTunes now it stops working after a few seconds.Help?

    Hi Andrew,
    If you have issues with iTunes unexpectedly quitting you may find the troubleshooting steps in this article useful -
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    If you are using Windows XP, you may want to use this article -
    iTunes for Windows XP: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1421
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • CS4 OpenGL stops working after a few minutes of painting

    Hi,
    CS4 OpenGL stops working after a few minutes of painting. It doesn't seem to have anything to do with the amount I paint. If I save the file, then reopen I can paint for another few minutes before the opengl stops working. Is this a standard problem with CS4? Is there a solution? Thanks! PJ
    System Specs:
    Windows XP SP3, updated
    Latest DirectX & all software updated
    Nvidia Geforce 9600 GT 512MB w/ latest driver
    Athlon64 X2 Dual 3800+
    2GB RAM
    Photoshop CS4

    Joining the party...
    I am having the EXACT same issue, PLUS my Wacon PTZ-430 only works for a fewminutes then, when the Open GL craps out, so does it... but only certain aspects. The cursor still moves, it just will not paint. Mouse will (direct via USB) but the tablet won't. If I delete CS4 prefs, then the Wacom works fine... for a while. Latest Wacom drivers and bee on the phone w them. All is fine under CS3.
    From DXDiag:
    System Information
    Time of this report: 12/8/2008, 15:37:52
    Machine name: VM-EDITING
    Operating System: Windows XP Professional (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_gdr.080814-1236)
    Language: English (Regional Setting: English)
    System Manufacturer: VELOCI
    System Model: 122-CK-NF68
    BIOS: Phoenix - AwardBIOS v6.00PG
    Processor: Intel(R) Core(TM)2 Duo CPU E6850 @ 3.00GHz (2 CPUs)
    Memory: 2814MB RAM
    Page File: 1049MB used, 3652MB available
    Windows Dir: C:\WINDOWS
    DirectX Version: DirectX 9.0c (4.09.0000.0904)
    Dual Monitor:
    NVIDIA GeForce 8600 GT
    Manufacturer: NVIDIA
    Chip type: GeForce 8600 GT
    DAC type: Integrated RAMDAC
    Device Key: Enum\PCI\VEN_10DE&DEV_0402&SUBSYS_043910DE&REV_A1
    Display Memory: 256.0 MB
    Current Mode: 1920 x 1200 (32 bit) (60Hz)
    Monitor: Plug and Play Monitor
    Monitor Max Res: 1600,1200
    Driver Name: nv4_disp.dll
    Driver Version: 6.14.0011.7824 (English)
    DDI Version: 9 (or higher)
    Second:
    Card name: NVIDIA GeForce 8600 GT
    Manufacturer: NVIDIA
    Chip type: GeForce 8600 GT
    DAC type: Integrated RAMDAC
    Device Key: Enum\PCI\VEN_10DE&DEV_0402&SUBSYS_043910DE&REV_A1
    Display Memory: 256.0 MB
    Current Mode: 1280 x 1024 (32 bit) (60Hz)
    Monitor: Plug and Play Monitor
    Monitor Max Res: 1600,1200
    Driver Name: nv4_disp.dll
    Driver Version: 6.14.0011.7824 (English)
    DDI Version: 9 (or higher)

  • Why does my iPod Shuffle stop working after a few songs?

    I had my iPod Shuffle for about a month now and it's already causing me trouble.
    I would play a couple of songs, but when I go to change it, it stops working. I turn it off and on again only to have it take me back to where I started off at (e.g. Let's say I have 100 songs, I start at 50 and I get to 55 before it shuts off. When I turn it back on, it starts at 50 all over again). This process would happen over and over again with seemingly no end.
    So my question is, why does my iPod Shuffle stop working after a few songs and how can I fix it?
    I already tried using the iTunes troubleshooting guide, but nothing worked.
    Details -
    4th Generation
    I only use it at the gym or when I'm running
    I've only used the Apple products that came with it so far
           (e.g. charger, headphones, etc.)
    881 MB are still left
    Music stops randomly, no common number or pattern

    I had the same problem, I purchased a new ipod shuffle, followed the instructions but it would stop after a few songs and I would have to shut it off, wait and turn it back on and it would go back to the same song and then once again, after a few songs it would shut off. I returned the ipod and got another one, same thing happened. This is how I resolved the issue.
    1. open itunes, make sure its up to date, then connect your shuffle to your pc
    2.on the left of the itunes window, select your ipod, then at the top select music then check the sync box and select "selected playlists"
    3.then go back and click on your ipod on the left, a message will appear just select apply
    all of your music should be emptied from your ipod.
    4.delete all of your playlists on the left, this will not delete anything from your library. Delete the "purchased" playlist under itunes store on the left as well, once again this will not delete anything from your library
    5.There should be an arrow just in front of your ipod, click on this arrow and you should see your music file for the ipod appear, this should be the only file that you see, everything else should be deleted.
    6. go to your music library and check only the songs that you want to load into your ipod. Double click on each song to make sure that they all play.
    If you find a song that does not play you should be asked to authorize it, don't waste your time that did not solve the issue for me, instead cancel to authorize the song and then delete the song and move it to recycle bin. Once the song is deleted a cloud should appear, click on the cloud and download the song again, when done, make sure the song plays and that it is checked.
    7.After you have made sure that all of the songs play and are checked, click on your ipod once more, located to the left, check the box  "sync only checked songs" then from the top select music. In the music window select "sync music' and then select "entire music Library"
    8. Go back to the left and click on the arrow in front of your ipod, you should see the music file, click on the music file and you should see all of your music being loaded to your ipod.
    9. When all of the music is done loading, eject your ipod by clicking on the arrow located after the battery symbol where your ipod appears on the left
    10. Turn on your ipod and scroll through your songs to make sure that the problem is resolved.
    Not sure if all of this was necessary but it worked for me.

  • I tunes stop working after a few minutes

    i tunes stop working after a few minutes

    of course i did.
    this is my launchpad report about this problem:
    https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1330867
    merged with this report because this two are exactly the same:
    https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1038479

  • Touchscreen stops working after a few seconds on new iPad 2

    The touch screen would stop working completely a few seconds after turning on. The iPad is still running fine -- Home/Power/Volume buttons work perfectly. But not the touch screen. I can not control the iPad except turning it on/off or turning the volume up/down.
    Tried resetting the unit by holding Home and Power buttons. Still the same issue after rebooting.
    Tried restoring the iPad completely from iTunes. With a clean iOS the touch screen still doesn't work.
    Leaving the unit untouched for a few hours, then the touch screen would start working again.... for another few seconds. Then it stops working.
    This is a replacement iPad which Apple Store gave me, but I'm out of the country now and there is no Apple Store where I am. How can I get this fixed?

    1. i connect the device to usb power
    The Stor.e Wireless Adapter should be connected to mains power and the other end to the external HDD.
    Then you could use the app to access the content wirelessly.

Maybe you are looking for