Help urgently needed with xml reading

hi, i have a 3gig xml file which i am surprised it is so large as i have even shortened all of the names,
it contains 2000 elements which have a filename and an array, each element has an array of size 6000, and each element in this array has an array of shorts, say 100 of them, and also a filename.
i ahve used stax writing to be able to write such a large file without having memory problems.
i then had to program a stax reader to be able to read it all in without building the whole tree but with some large cases i am now getting out of memory again, it seems to eb from the read so maybe the code eve though it doesnt have to hold the tree in memory, it has to hold the file in memory, the code for reading is shown here:
package utilities;
import Categorise.Collection;
import Categorise.Comparison;
import Categorise.TestCollection;
import java.io.IOException;
import javax.xml.parsers.*;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.Attributes;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import measures.Protocol;
* @author dthomas
public class XMLParser extends DefaultHandler
    static Collection collection = new Collection();
    List<Short> cList;
    List<Comparison> comparisonList;
    File trainFileName;
    File testFileName;
    TestCollection tc;
    List<TestCollection> testCollectionList;
    List<File> testFileNameList = new ArrayList<File>();
    List<File> trainFileNameList = new ArrayList<File>();
    boolean allTrainsAdded = false;
    Protocol protocol;
    List<File> trainingDirList;
    File testingDir;
    int counter = 0;
    /** Creates a new instance of XMLParser */
    public XMLParser() {
    public static Collection read( File aFile )
        long startTime = System.currentTimeMillis();
        System.out.println( "Reading XML..." );
        SAXParserFactory spf = SAXParserFactory.newInstance();
        SAXParser sp;
        try {
            sp = spf.newSAXParser();
            sp.parse( aFile, new XMLParser() );
        } catch (IOException ex) {
            ex.printStackTrace();
        } catch (SAXException ex) {
            ex.printStackTrace();
        } catch (ParserConfigurationException ex) {
            ex.printStackTrace();
        long endTime = System.currentTimeMillis();
        long totalTime = ( endTime - startTime ) / 1000;
        System.out.println( "Done..."  + totalTime + " seconds" );
        return collection;
    public void startElement(String uri,String localName,String qName, Attributes attributes)
        if( qName.equals( "RE" ) )
            testCollectionList = new ArrayList<TestCollection>();
        else if( qName.equals( "p") )
            boolean isConcatenated = new Boolean( attributes.getValue( "c" ) );
            boolean isStatic = new Boolean( attributes.getValue( "s" ) );
            protocol = new Protocol( isConcatenated, isStatic );
        else if( qName.equals( "trdl" ) )
            trainingDirList = new ArrayList<File>();
        else if( qName.equals( "trd" ) )
            File trainDir = new File( attributes.getValue( "fn" ) );
            trainingDirList.add( trainDir );
        else if( qName.equals( "td" ) )
            testingDir = new File( attributes.getValue( "fn" ) );
        else if( qName.equals( "TC" ) )
            counter++;
            System.out.println( counter );
            comparisonList = new ArrayList<Comparison>();
            testFileName = new File( attributes.getValue( "tfn" ) );
            testFileNameList.add( testFileName );
            tc = new TestCollection( );
            tc.setTestFileName( testFileName );
        else if ( qName.equals( "r" ) )
         String order = attributes.getValue( "o" );
            String type = attributes.getValue( "t" );
            String value = attributes.getValue( "v" );
            cList.add( Short.parseShort( order ), new Short( value ) );
        else if( qName.equals( "c" ) )
            cList = new ArrayList<Short>();
            trainFileName = new File( attributes.getValue( "trfn" ) );
            if( !allTrainsAdded )
                trainFileNameList.add( trainFileName );
    public void characters(char []ch,int start,int length)
        String str=new String(ch,start,length);
        System.out.print(str);
    public void endElement(String uri,String localName,String qName)
        if (qName.equals( "c") )
            allTrainsAdded = true;
            short[ ] cCounts = new short[ cList.size() ];      
            for( int i = 0; i < cCounts.length; i++ )
                cCounts[ i ] = cList.get( i );
            Comparison c = new Comparison( trainFileName, tc );
            c.setcCounts( cCounts );
            this.comparisonList.add( c );
        else if( qName.equals( "TC" ) )
            Comparison[ ] comparisons = new Comparison[ comparisonList.size() ];
            comparisonList.toArray( comparisons );           
            tc.setComparisons( comparisons );
            testCollectionList.add( tc );
        else if( qName.equals( "RE" ) )
            TestCollection[ ] testCollections = new TestCollection[ testCollectionList.size() ];
            testCollectionList.toArray( testCollections );
            collection.setTestCollections( testCollections );
            File[ ] testFileNames = new File[ testFileNameList.size() ];
            testFileNameList.toArray( testFileNames );
            collection.setTestingFiles( testFileNames );
            File[ ] trainingFileNames = new File[ trainFileNameList.size() ];
            trainFileNameList.toArray( trainingFileNames );
            collection.setTrainingFiles( trainingFileNames );
            collection.setProtocol( protocol );
            File[ ] trainingDirs = new File[ trainingDirList.size() ];
            trainingDirList.toArray( trainingDirs );           
            collection.setTrainingDirs( trainingDirs );
            collection.setTestingDir( testingDir );
}any help would be greatly greatly appreciated
thanks
Danny =)
ps with the amount of data contained, should the xml file be this large? and does ayone know the size difference of holding a filename as a File rather than a string and then creating the file when it is needed?

yes i do need them but i could store them as strings instead if you think that would help? if it never runs out of memory i dot see how i was able to hold all of this information in memory before, as it was all written to file.
thanks

Similar Messages

  • Help urgently needed with Java RMI task.

    Hello All. Please I need help urgently with this task. I cant seem to be able to do this. Here is the task:
    There are m squares with side lengths a1, a2, ..., am and a rectangle with the height and width equal to h and w respectively. Find a subset of the squares, which must be placed within the rectangle in such a way that they do not overlap, and cover the maximum area of a rectangle.*
    Please all help me solve this task using Java RMI. I would be very grateful for your help. Thanks in advance.

    Here is my client.java.
    import compute.;*
    import java.lang.Math.;*
    import java.lang.Long;
    *public class Hypothesis implements Task {*
    private long start;
    private long end;
    private int number;
    private int count;
    public Hypothesis(long start, long end, int number,int
    *count) {*
    this.start = start;
    this.end = end;
    this.number = number;
    this.count = count;
    *public Object execute() {*
    return findSolution();
    *public String findSolution() {*
    long i,j,k,l,m=1,i_max,j_max,k_max,l_max,l_start;
    System.out.println(start);
    System.out.println(end);
    System.out.println(number);
    System.out.println(count);
    for(m=start+number;m<end;m+=count)
    i_max=(long)java.lang.Math.pow((double)(min(p5(m)-3)),0.2d)+1;
    for(i=i_max;i>0;i--)
    j_max=(long)java.lang.Math.pow((double)(min(p5(m)-p5(i)-2)),0.2d)+1;
    if (j_max>i) j_max=i;
    for(j=j_max;j>0;j--)
    k_max=(long)java.lang.Math.pow((double)(min(p5(m)-p5(i)-p5(j)-1)),0.2d)+1;
    if (k_max>j) k_max=j;
    for(k=k_max;k>0;k--)
    l_max=(long)java.lang.Math.pow((double)(min(p5(m)-p5(i)-p5(j)-p5k))),0.2d)+1;
    if (l_max>k) l_max=k;
    if (l_max>2) l_start=l_max-2;
    else l_start=1;
    for(l=l_max;l>l_start-1;l--)
    if(p5(i)+p5(j)+p5(k)+p5(l)==p5(m))
    Long[] solution=new Long[5];
    solution[0]=i;
    solution[1]=j;
    solution[2]=k;
    solution[3]=l;
    solution[4]=m;
    *return "" solution[0]"^5+"*
    solution[1]"^5+"*
    solution[2]"^5+"*
    solution[3]"^5="*
    solution[4]"^5";*
    return null;
    *private long p5(long n){*
    return nn*n*n*n;*
    *private long min(long n){*
    return n>0?n:0;
    I just can't seem to get the whole thing work correctly on the server side. I need it to run from 1 client on atleast 3 servers. Please any explanations will be appreciated.

  • Help urgently needed with edit to tape / print to video error

    I have tried to edit to tape and print to video a sequence (0my whole project, worked for way too many nights to let go... so frustrated and sad right now because it doesn't work.
    The project is saved on an extern harddisk, my harddrive on teh pc is too full (not big enough).
    My camera and FCP connects but all the time I get an error that 'the tape may be locked' . AND I HAVE TRIED WITH DIFFERENT TAPES, none of them were locked!
    I am not really sure how to set the camera in this VTR mode... I have tried in the settings to set it in webcam mode... and I have tried without... and I dont have a button or setting called VTR, only a *PLAY' option or a 'FILMØ option....
    My A/V settings are FireWire PAL and DA PAL 48khz ... however have no ide what that means or if these should be changed...?
    I checked from apple but cannot find my DV cam on the list... hmm, does that mean I cannot do edit to tape recordings???
    My Dv cams informations:
    NV-GS140 by Panasonic, Model 0x80330B, 0x804580114B5DD1
    I checked the system settings and was able to the FireWire/NV-GS140 Unit
    I have a MacBook1,1 / Intel Core Duo/ 2 GHz
    OS 10.4.11
    I use the version FCP 2
    Please help me out, I am really without any good suggestions how to proceed!

    You're going to have to use a dvd authoring program. Burning the seq to a dvd qill just create a qt movie on a dvd data disc. It won't create a dvd video disc that plays in a dvd player.
    Export from fcp a QT movie, current settings, self-contained. Use Anamorphicizer (http://mac.softpedia.com/get/Video/Anamorphicizer.shtml) to make imovie recognise it as 16:9. Then import that file to idvd.
    Or you can drop your 16:9 sequence into a new 4:3 sequence to letterbox it, then you can do the export as above but skip the anamorphicizer step.
    It's better to use compressor on the original 16:9 sequence and then use dvdsp to author, but if you've never used dvdsp it's a big program to get your head round.
    The export can be done in two ways;
    1. Export from fcp using 'export using compressor'.
    2. Export a QT ref/self-contained movie and import that into compressor.
    3. Export a QT movie and import it direct into DVDSP.
    The second option will take longer initially (if you use the self-contained option) but will then allow compressor to work in the background, the first option will tie up fcp for the duration of the encode.
    Once in compressor use one of the 16:9 dvd presets, depending on the duration of the movie and the quality you want. Don't try to adjust the settings. If your movie is 31 mins just use the shortest option (i think it's 60min) and make sure you select the m2v video and ac3 audio options. If you just select the mpeg 2 video you'll only get video, as you've discovered.
    Open dvdsp and create your opening menu and a video track, import the movie file, add it to the video track, and then add the audio to the track as well. Then add any chapter submenus you may want.

  • Help Urgently Needed With Border

    Hi
    Please can anyone help me?
    I have designed a site and I am trying to put a border around
    the whole of the table (not individual cells).
    Is this possible to do?
    Thank you very much, Louisa

    Erp...
    <table style="border: 3px solid gray;" ...>
    </table>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Malcolm N_" <[email protected]> wrote in message
    news:[email protected]..
    > On Fri, 3 Aug 2007 15:31:14 +0000 (UTC), "LoobieLouLou"
    > <[email protected]> wrote:
    >
    >>Hi
    >>Please can anyone help me?
    >>I have designed a site and I am trying to put a
    border around the whole of
    >>the table (not individual cells).
    >>Is this possible to do?
    >>Thank you very much, Louisa
    >
    >
    > give the table a css class
    > <table class="table1">
    >
    > and control it with this
    > .table {
    > border: 3px solid gray;
    > }
    >
    >
    > or just quick and dirty
    >
    > <table style="border: 3px solid gray; </table>
    > --
    >
    > ~Malcolm N....
    > ~

  • Help urgently needed please ! My Iphone 4 is on silent vibration mode, received a call and has frozen with the Iphone unusable and yet vibrating. I have tried switching off, connecting to power, connecting to laptop and removing SIM card ???

    Help urgently needed please ! My Iphone 4 is on silent vibration mode, received a call and has frozen with the Iphone unusable and yet vibrating. I have tried switching off, connecting to power, connecting to laptop and removing SIM card ???

    Problem solved... just saw the answer in another thread... https://discussions.apple.com/message/13110222#13110222

  • Help urgently needed, I have installed Logic Pro 9, since then my Final Cut Pro X keep freezing. Anyone what is wrong and how to solve it? I desperately need help on this. Thanks

    Help urgently needed, I have installed Logic Pro 9, since then my Final Cut Pro X keep freezing. Anyone what is wrong and how to solve it? I desperately need help on this. Apple support says I have to pay £85 for to help me. Thanks

    Just a word of advice. Never ever use the word "urgent" on this forum

  • Help Needed with XML Attribute Access (Bold/Italics)

    Hi,
    I have a form that displays data in livecycle designer. When someone imports an xml file into the form in Adobe Acrobat it should be able to display some data as bolded and some italicized based on the xml file.
    Here is the sample xml file
    <Table1>
         <Row1>
              <Cell1 style="none">1</Cell1>
              <Cell2 style="bold">2</Cell2>
              <Cell3 style="italics">3</Cell3>
         </Row1>
    </Table1>
    And the output should be:
    1 2 3 
    Can someone please help! If the xml file should be designed differently please let me know.
    Thank you!

    Paul,
    Thanks for the help! I tried it out and it worked. One last question please. According to your explanation I added to the xml file the tags
    <body xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/" xmlns="http://www.w3.org/1999/xhtml" xfa:APIVersion="Acroform:2.7.0.0" xfa:spec="2.1">
    <p style="font-weight:bold;">2</p>
    </body>
    do I need to place this body tag around each number or can I place it in one location in the xml file?
    Thanks again.

  • HELP urgently needed: My Sandberg FireWire for Laptop will not start on my T60

    Let me start with information on my T60:
    OS information: Microsoft Windows XP
    OS version: 5.10.2600   Service Pack 2
    Processor: x86 Family 6 Model 14 Stepping 8
    Memory: 3.135.856 kb
    BIOS version: 2.09  (79ETC9WW)
    Machine type-Model: 1951A47
    I have just got a new Sandberg FireWire for Laptop, a PC Card with 3 6-pins connectiont. After inserting the card in the PC Card slot, the Windows Device Manager tells me that there are problems with the card. Looking at the 1394 Card Properties the status says:
    "This device cannot start. (Code 10) - Click Troubleshoot to start the troubleshooter for this device."
    The troubleshooter did not solve my problem. I have tried disconnecting, re-connection, shut down Windows and start again etc.
    At Sandberg Help Desk they tell me that I have two slots in my laptop, one with a 16 bits bus and another with a 32 bits slots, and I should use the latter. It seems that I can use the lower slide only in my laptop and I cannot push the card into the upper slide. There is not enough room for it.
    Here is what I found on Lenovo's support site on my type & model:
     PC Card
    Conforms to the PC Card Standard 95
    Type II slot
    Both the 16-bit Release 2.1 card standard and the 32-bit CardBus card are supported.
    Have a look at these screen captures.
    What should I do to solve my urgent problem!? 
    Message Edited by pbl_ibm on 10-09-2008 05:10 AM
    Message Edited by pbl_ibm on 10-09-2008 07:27 AM
    Message Edited by pbl_ibm on 10-09-2008 07:45 AM
    Message Edited by pbl_ibm on 10-09-2008 07:45 AM

    garytr23 wrote:
    Sounds to me like a driver configuration problem.  Maybe something bad happened during driver install.  I would recommend uninstalling the device from device manager by right clicking on it and hitting uninstall.  Reboot the computer.  Have a go at it again.  Also, test your pcmcia port functionality by finding and plugging in a different card.  See if that works.  It might need repair.
    Message Edited by garytr23 on 10-09-2008 09:41 AM
    The status right now is:
    The PC Card reader works on my T60
    If I use a Firewire PC Card it will not start - as described above (on T60)
    The PC Card work properly on my T61P - and I succeeded importing a video file from a digital camera using the Fireswire PC Card.
    So what does a wise man do in this situation??
    Please help me as I urgently need to know how to solve this serious issue!! 
    Have you got an idea? Can I import the video in another way??
    Message Edited by perbuch on 10-12-2008 07:55 AM

  • Urgent need for Adobe Reader for Windows Phone 8

    Dear Adobe!
    Please help us all Windows Phone 8 users and tell us what is your current status with WP8 reader, and when it will be released in the WP Store?
    Please speed up the development and note that there are many of us who have changed their mobiles for WP8 mobiles, and we are now facing this horrible situation where we do not have a proper PDF reader available.
    Thus, please help us quickly even this situation is initially generated by ourselves - by the brave and keen who did not check beforehand if Reader is available for WP8, before we made the decision to take it in use. Adobe Reader has been available so long and in so many platforms that at least I could not have guessed that WP8 version is still missing.
    So hurry up Adobe, develop - test - and release it, and you will make lots of people very happy!
    Best Regards,
    Mr Jujunen

    An other way is to copy the pdf with Windows explorer into the path /documents of the phone. Open Office and choose Adobe Reader. The pdf will be copyed in the Sandbox of the Reader and You may read it. You may delete the PDF in the documents path. It will still be in the Readers sandbox. All without any cloud ;-)!

  • Installation problem, please help, urgent needs,

    I have install the FCP 7 into my MBP, and updated, but in the "add behavior" tap i don't have those new behavior like "text-basic" "text-continuous" "text-energetic" etc..... how can i add it back?
    urgent needs, please help

    fixed

  • Urgent Help Needed with Adobe Reader

    I exported a single page of a document to adobe reader as a PDF file, and the document was deleted shortly there after. I now realize I need a few more pages from this document, so would there be any way to extract all the pages from the document from the single one I exported as a PDF? This is for a final porject, so a swift response would be greatly appreciated.

    Nope. You need the original document. Sorry.

  • Immediate help needed with XML Parser

    I am currently running Oracle 8i and trying to use the XML utilities. Just to make sure things are working, I tried a very simple program. I followed the xslsample.sql code that was supplied by Oracle. Code is as follows:
    declare
    p xmlparser.parser;
    begin
    p := xmlparser.newparser;
    end;
    When the code executes, I get a PLS-00201: identifier 'XMLPARSER.PARSER' must be declared. Anyone have any ideas on what is going on and how to fix it? Any assistance would be greatly appreciated. You can email directly if you wish since I am really under a tight timeline to get these utilities to work correctly.

    Michael,
    Seems to be some problem with privileges. XMLPARSER is owned by SYS. You will need to grant execute access from SYS to the user under which you are trying to compile the procedure. It might be useful to create a public synonym and then grant access.
    Hope this helps.

  • Help needed with xml to flat file conversion

    Hi all,
    I am doing a webservice (SOAP) to file scenario. The file I get into the target directory is as below.
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:MT_Test_interface xmlns:ns1="http://test_namespace.co.uk"><fieldA>0000012345</fieldA><fieldB></fieldB><fieldC>0010203040</fieldC><transaction_type>NEW</transaction_type><transaction_date>2011/08/21</transaction_date><sales data>PARTNERS (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), (382225.17 73214.976, 398410.463 95156.636)))</sales data></ns1:MT_Test_interface>
    But I want it to be a plain text file like below, not an xml file.
    0000012345
    0010203040
    NEW
    2011/08/21
    PARTNERS
    (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), (382225.17 73214.976, 398410.463 95156.636)))
    What are all the modules I need and also the parameters and their values please?
    Any help is appreciated.
    Thanks.
    Ramesh.

    Thanks guys.
    My xml now is like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:MT_test xmlns:ns1="http://test.co.uk">
    - <REPORT>
      <company_number>0000043239</company_number>
      <transaction_type>CREATE</transaction_type>
      <transaction_date>2011/08/21</transaction_date>
      <sales_data>Partners (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), (382225.17 73214.976, 398410.463 95156.636)))</Partners>
      </REPORT>
      </ns1:MT_test>
    I am using the content conversion as below:
    Recordset Structure: REPORT
    Name: REPORT.addHeaderLine      Value: 1
    Name: REPORT.fieldSeparator      Value: ,
    Name: REPORT.endSeparator      Value: 'nl'
    Name: company_number.endSeparator      Value: 'nl'
    and I am getting the result as:
    company_number,transaction_type,transaction_date,sales_data
    0000043239,CREATE,2011/08/21,Partners (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), 382225.17 73214.976, 398410.463 95156.636)))
    But I want file like this:
    company_number,transaction_type,transaction_date,sales_data
    0000043239
    CREATE
    2011/08/21
    Partners (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), 382225.17 73214.976, 398410.463 95156.636)))
    What will be the CC parameters please?
    Many thanks.
    Ramesh.

  • Help needed with xml list

    hi,
    i need to make a list in which all the list items will come
    from xml file. these items will also be clickable so that they open
    a new respective hyperlink on click. i need something like
    www.sponky.com ' s portfolio list. can somebody please help me? i
    really need your help.
    thanks,
    gaurav

    I'm hoping I understand what you're doing... I would probably
    do it all in one frame and just toggle the .visible property of the
    subcategory list after the first one has been clicked, but there's
    no rules about how you do it.
    Without being sure, I think what you may have done is put a
    second "copy" of the category list on another keyframe, which
    replaces the previous instance. By taking away the second copy it
    should work. If that's not the case, then I'm stumped... otherwise
    read on.
    So if you have the category list in its own layer, just have
    it in frame one, on frame 2 of the same layer have a frame but
    not a keyframe. This will mean the instance in frame one is
    still the same one when the playhead gets to frame 2.
    And have the subCategory list on a separate layer, it appears
    on frame 2...
    BTW the .getSelectedItem() method of the list reminds me of
    flash mx... is that the version you're using (curiosity only I
    don't think its relevant, because its obviously working).

  • Need help troubleshooting issues with Adobe Reader X

    Hello,
    Recently our company upgraded multilpe computers to Reader X.  Initially we installed version 10.1.0.  Ever since our users on X have been experiencing problems.  We are seeing three different issues.
    1) A user will fill out the PDF and click print.  At that point a popup appears with the message "Adobe Reader has encountered a problem and needs to close.  We are sorry for the inconvenience."  The user has the choice to click on Debug or Close.  Clicking Debug doesn't appear to do anything.
    2) Clicking on a PDF in internet explorer will launch Adobe Reader and a progress bar shows on the screen indicating that the PDF is loading.  The progress bar goes away and the user is left looking at a grey screen.
    3)  When attempting to open a PDF the user recieves this message "The instruction at "0x00720065" referenced memory at "0x00720065" . The memory could not be "written."
    In every situation the only way to get past the problems is a restart of the PC.
    As an attempt to resolve the issue we tried upgrading several users to Reader version 10.1.3.  This was done by completely uninstalling version 10.1.0 and then installing 10.1.3.  This did not have any effect on the problems.
    Can anyone here offer and suggestions?
    Thank you

    Hello,
    1. The OS on which you are seeing these issues.
    Windows XP SP3
    2. The method of deployment of the 10.1.3 update. Was it done via SMS/GPO/SCUP?
    Originally 10.1.0 was installed remotely using a program PSEXEC.  Once the errors began occurring 10.1.0 was uninstalled manually and 10.1.3 was installed using a copy from your ftp site.
    3. Can you try and update any one of your systems to the latest version of Reader i.e. Reader 10.1.4 and see if it solves the problem.
    We have upgraded one machine to 10.1.4 using the Check for Updates function within Reader 10.1.3 and are looking for any ongoing issues.
    4. Which browser are you using to render the PDFs. Is the issue seen with internal links alone or with all links. Can you try and see if the following opens on one of the faulty machine: http://kb2.adobe.com/cps/837/cpsid_83708/attachments/Acrobat_Reader_Re leaseNote_10.1.3.pdf<http://kb2.adobe.com/cps/837/cpsid_83708/attachments/Acrobat_Reader_ReleaseNote_10.1.3.pdf>
    We are using IE 8.  The issues are seen with both internal and external links as well as stand alone PDFs.  No one could open the link you sent but we could open: http://helpx.adobe.com/content/dam/kb/en/837/cpsid_83708/attachments/Acrobat_Reader_Releas eNote_10.1.3.pdf on a faulty machine.
    5. If suggestion# 3 doesn't work, can you also try and uninstall the installation on any one of the machines manually (i.e. via Control Panel > Add/Remove Programs or Programs and Features depending upon your OS) and install a fresh copy of Reader 10.1.3 (from ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.1.3/en_US/AdbeRdr1013 enUS.exe<ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.1.3/en_US/AdbeRdr1013_en_US.exe>) and see if it solves the problem. If it does, then it may be an issue with the Deployment methodology followed.
    Already tried this.  See answer to suggestion #2
    Thanks,
    Adam Behsmann
    Application Support Analyst
    Exchange Bank
    (707) 541-1044

Maybe you are looking for