URGENT!! - Bug on read (readLine) method?

Hello to all, I have need of a large aid.
I need to know if There is the possibility that the method read() or readLine(), than I use for reading data from a socket from a PLC, has a Bug.
This why, with the socket opened and of the data in arrival from the PLC (than does not give to errors), the method read() raises the "Connection exception reset by peer."
The Technicians of the PLC say not to have errors but and I am surest of the correct operation of the server socket, also why it has been tested with telnet, hyperterminaly and others client without problems.
I do not know that what to say and what to try.
Thanks for every eventual aid.

I don't think there is a bug with BufferedReader. But instead of using buffered reader, you can try using the socket input stream directly for reading to see if it makes any difference:
try {
  // if the PLC is a client:
  ServerSocket serverSocket = new ServerSocket(...);
  Socket socket = serverSocket.accept();
  // or if the PLC is a server:
  Socket socket = new Socket(...);
  // and the rest of the code to test with
  InputStream in = socket.getInputStream();
  byte[] buffer = new byte[1024];
  int length;
  while ((length = in.read(buffer)) != -1) {
    System.out.println("Read "+length+" bytes");
  System.out.println("Connection closed");
} catch (Exception e) {
  e.printStackTrace();
}See if that little example works.
Is the PLC i client or server? Is the PLC the first to write something to your java program or do you have to write something to it first (maybe it doesn't understand what you write to it).
If you use reader/writer classes, there could be problems with the character encoding you use. If you don't specify any with InputStreamReader/OutputStreamWriter, then you will use the default platform encoding. I don't know which character encoding the PLC use, but if the characters are between 0 and 255, and you really want to use reader and writer classes, then use the ISO 8859-1 encoding.

Similar Messages

  • How to use the readLine()  method when reading data from a URL?

    Hello,
    I have a URL which contains text input.
    The only way to get the data from this URL is by opening a URL connection to it.
    I would like to get the data from this URL but at the same time I would like to be able to use readLine() method of BufferedReader in order to read the data line by line.
    My question is how do I combine between these two requirements in order to reed the data from the URL?
    Roy

    Hello Roy,
    can you try out this code.
      URL yahoo = new URL("http://www.yahoo.com/");
            URLConnection yc = yahoo.openConnection();
            BufferedReader in = new BufferedReader(
                                    new InputStreamReader(
                                    yc.getInputStream()));
            String inputLine;
            while ((inputLine = in.readLine()) != null)
                System.out.println(inputLine);
            in.close();
    Regards,
    Mohan R

  • BufferedReader's readLine() method problem (REPOST)

    Hello,
    If anyone can help me out I would not have to struggle :)
    Here is the thing. I have a file like this:
    1 srjetnuaazcebsqfbzerhxfbdfcbxyvihswlygzsfvjleengcftwvxcjriwdohjisnzppipiwpnniui yjpeppaezftgjfviwxunu
    2 ekjghqflatrcdteurofahxoiyvrwhvaxjgcuvkkpondsqhedxylxyjizflfbgusoizogbffgwnswohe njixwufcdlbjlkoqevqdy
    3 stfhcbslgcrywwrgbsqdkcxfbizvniyookceonscwugixgrxvvkxiqezltsiwhhepqusjdlkhadvkzg iefgarenbxnxtxnqdqpfh
    4 dcuefkdrkoovjwdrqbpgoirruutphuiobqweknxhboyktxzcczgekrlbfsbfuygjpheydiwaasxifph tldawxsfepotkgqqsivur
    5 fpfrspbuhangkeugfuwexsgivetovkoyloddgofdcajwwlrocgjrhonsrfrfxozvgohwoytycfjoycr xdhnhxyitkeqynedrbroh
    6 hgzqqsfgnotfepywbpccrosxborslqtkanyffrwknjapnzjnesjlkbbsckbyvgrxujqyocpcpctsqyz apcinhjyysxsdwfjugndr
    7 pltzealtrklzrugxdcskndqyvsrzncitqvjcnndeqossyrifzvbqovtdzsixjlizsbxwutgqipuxfid xyoktwupsuqbqgnxdfbze
    8 avpxfjgwpxnzfsfosgsryhpyaezigrqsxsgdvwdbwovhcchrijbitvbcvltrgvadogokaennwpjjpku uttidlnqftdnzqpqafels
    9 oyvztgletdwdtibshpzeuqryvulnubrqtgxwizfsdzqlgxvsebhslnovphgehfigbjyyqsirqcwflbn bnrflotpqytqzbgnkeyrk
    10 unvryrnlqucuydrasyzyiclnjvospzdoviqchdhasxzffblwsewikzbznyegrqtjvxfxfjenvrboofb xfsynlxhyuvqprqbvoruk
    and my java programs is like this:
    public String searchForAString(String fileName, int lineNumber)
    File fileObject = new File(fileName);
    String finalString ="";
    String record = "";
    int line;
    try
    FileInputStream fileInputStreamObject = new FileInputStream(fileObject);
    BufferedInputStream bufferedInputStreamObject = new BufferedInputStream(fileInputStreamObject);
    //DataInputStream dataInputStreamObject = new DataInputStream(bufferedInputStreamObject);
    BufferedReader bufferedReaderObject = new BufferedReader(new InputStreamReader(bufferedInputStreamObject));
    //System.out.println(bufferedReaderObject.readLine());
    //System.out.println("_____________________");
    while((bufferedReaderObject.readLine()) != null)
    System.out.println(bufferedReaderObject.readLine());
    Last System.out.println statement only displays second, forth, sixth, eigth, tenth and null lines. Why not every line? Any ideas? Thanks!
    Re: BufferedReader's readLine() method problem.
    Author: EagleEye101 Feb 18, 2005 8:48 PM (reply 1 of 1)
    You do relize that when you call the in.readLine() in your loop conditional and in your loop body it reads in diffrent lines. Try this:
    public String searchForAString(String fileName, int lineNumber)
    File fileObject = new File(fileName);
    String finalString ="";
    String record = "";
    int line;
    try
    FileInputStream fileInputStreamObject = new FileInputStream(fileObject);
    BufferedInputStream bufferedInputStreamObject = new BufferedInputStream(fileInputStreamObject);
    //DataInputStream dataInputStreamObject = new DataInputStream(bufferedInputStreamObject);
    BufferedReader bufferedReaderObject = new BufferedReader(new InputStreamReader(bufferedInputStreamObject));
    //System.out.println(bufferedReaderObject.readLine());
    //System.out.println("_____________________");
    String s = bufferedReaderObject.readLine();
    while(s != null)
    System.out.println(bufferedReaderObject.readLine());
    s = bufferedReaderObject.readLine();
    Every time you call the readLine method, it does read a diffrent line. Java does not know you want to read the same line twice.
    Tried it, did not work. I need to go through each line of the file I have. Any ideas?

    solution should be in your other thread.
    Please do not repeat threads--it really bugs the people here, just some 'nettiquite' --I don't mean to be a grouch.
    --later.  : )                                                                                                                                                                                                                                                                                                                                                       

  • Writing my own readLine() method

    I am trying to write my own readLine() method. I am using the read() method from BufferedReader to read one char at a time into an array. Then when I encounter a \n chacter I convert the array to a string and return it.
    The problem arrises when i reach the end of a file.
    The read() method returns a -1 when the end of the file has been reached.
    How can I get my readline method to read the last line and return it but also tell the user the end of the file has been reached?
    Thanks.

    The reason I want to write my own is beacause
    readLine() in BufferedReader has been deprecated.
    No it isn't. Not until 1.3.1, at least.
    I want to read and return lines until read() returns a
    -1. But how can i still return the last line? err... with a return statement?
    It may contain a string and then be the end of the file. How
    can I return the string and the -1?You can't. You'll have to do it the way readLine already does or really think of something new.

  • I need a solution for the deprecated readLine() method .

    import java.io.*;
    import java.net.*;
    class UC {
    public static void main(String args[]) throws Exception
    DataInputStream inFromUser = new DataInputStream(System.in);
    DatagramSocket clientSocket = new DatagramSocket();
    InetAddress IPAddress = InetAddress.getByName("hostname");
    byte[] sendData = new byte[1024];
    byte[] receiveData = new byte[1024];
    while(true)
    String[] sentence = inFromUser.readLine(); /* It says the readLine() method is deprecated. what is the solution for this? */
              sentence.getSubstringBytes(sentence,0, sentence.length(), sendData, 0);
    //sentence.getBytes(0, sentence.length(), sendData, 0);
    DatagramPacket sendPacket = new DatagramPacket(sendData, sendData.length, IPAddress, 9876);
    clientSocket.send(sendPacket);
    DatagramPacket receivePacket
    = new DatagramPacket(receiveData, receiveData.length);
    clientSocket.receive(receivePacket);
    String modifiedSentence =
    new String(receivePacket.getData());
    System.out.println("FROM SERVER:" + modifiedSentence);
         public void getSubstringBytes(String sentence,int space,int Size,byte[] sendData,int space)
                   byte[] bytes=sentence.getBytes();
                   System.arraycopy(bytes,0,sendData,0,sentence.length()-0);
    }

    Sorry, It should be the BufferedReader , not BufferedInputStream.

  • Buffered Reader, Readline, Change Char

    Simple Java Test.
    from command line, when i run an appllication this must happen:
    First, User enters either (-u, -l, or -t) followed by space
    then a string of characters in speech marks.
    i.e. -u "this is a simple sentence"
    -u means change all the text in speech marks "" to uppercase.
    -l means change all the text in speech marks "" to lowercase.
    -t means change only the first letter of each word in speech marks "" to uppercase.
    Iv got upto this point. Now im stuck. Don't know where to go. I dont want the answer but a little assistance.
    import java.io.*;
    public class ReadString {
    public static void main (String[] args) {
         System.out.println("1. Uppercase (-u)");
         System.out.println("2. Lowercase (-l)");
         System.out.println("3. TitleCase (-t)");
         System.out.println("");
         System.out.println("Enter your action and string i.e. -u ''Hello World'' ");
    // Used for listening to input
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    String Choice = null;
    // need to use try/catch with the
    // readLine() method
    try {
    Choice = br.readLine();
    } catch (IOException ioe) {
    System.out.println("IO error Dont know what your talkin bout!");
    System.exit(1);
    System.out.println("Result: " + Choice);
    Edited by: DollarDollar on Oct 10, 2008 5:57 PM

    So basically you haven't done anything after asking for a user input. No one's gonna do the whole thing for you. Post your efforts so far and ask specific questions about your code and where you're stuck and everyone will do their best to point you in the right direction.
    Also: When you post code, use the wrap the code in CODE tags. That makes it easy to read. Just mark the code and click the CODE button. Preview the post to make sure it looks good and then post it.

  • BufferedReader's readLine() method problem.

    Hello,
    If anyone can help me out I would not have to struggle :)
    Here is the thing. I have a file like this:
    1     srjetnuaazcebsqfbzerhxfbdfcbxyvihswlygzsfvjleengcftwvxcjriwdohjisnzppipiwpnniuiyjpeppaezftgjfviwxunu
    2     ekjghqflatrcdteurofahxoiyvrwhvaxjgcuvkkpondsqhedxylxyjizflfbgusoizogbffgwnswohenjixwufcdlbjlkoqevqdy
    3     stfhcbslgcrywwrgbsqdkcxfbizvniyookceonscwugixgrxvvkxiqezltsiwhhepqusjdlkhadvkzgiefgarenbxnxtxnqdqpfh
    4     dcuefkdrkoovjwdrqbpgoirruutphuiobqweknxhboyktxzcczgekrlbfsbfuygjpheydiwaasxifphtldawxsfepotkgqqsivur
    5     fpfrspbuhangkeugfuwexsgivetovkoyloddgofdcajwwlrocgjrhonsrfrfxozvgohwoytycfjoycrxdhnhxyitkeqynedrbroh
    6     hgzqqsfgnotfepywbpccrosxborslqtkanyffrwknjapnzjnesjlkbbsckbyvgrxujqyocpcpctsqyzapcinhjyysxsdwfjugndr
    7     pltzealtrklzrugxdcskndqyvsrzncitqvjcnndeqossyrifzvbqovtdzsixjlizsbxwutgqipuxfidxyoktwupsuqbqgnxdfbze
    8     avpxfjgwpxnzfsfosgsryhpyaezigrqsxsgdvwdbwovhcchrijbitvbcvltrgvadogokaennwpjjpkuuttidlnqftdnzqpqafels
    9     oyvztgletdwdtibshpzeuqryvulnubrqtgxwizfsdzqlgxvsebhslnovphgehfigbjyyqsirqcwflbnbnrflotpqytqzbgnkeyrk
    10     unvryrnlqucuydrasyzyiclnjvospzdoviqchdhasxzffblwsewikzbznyegrqtjvxfxfjenvrboofbxfsynlxhyuvqprqbvoruk
    and my java programs is like this:
    public String searchForAString(String fileName, int lineNumber)
    File fileObject = new File(fileName);
    String finalString ="";
    String record = "";
    int line;
    try
    FileInputStream fileInputStreamObject = new FileInputStream(fileObject);
    BufferedInputStream bufferedInputStreamObject = new BufferedInputStream(fileInputStreamObject);
    //DataInputStream dataInputStreamObject = new DataInputStream(bufferedInputStreamObject);
    BufferedReader bufferedReaderObject = new BufferedReader(new InputStreamReader(bufferedInputStreamObject));
    //System.out.println(bufferedReaderObject.readLine());
    //System.out.println("_____________________");
    while((bufferedReaderObject.readLine()) != null)
    System.out.println(bufferedReaderObject.readLine());
    Last System.out.println statement only displays second, forth, sixth, eigth, tenth and null lines. Why not every line? Any ideas? Thanks!

    You do relize that when you call the in.readLine()in
    your loop conditional and in your loop body itreads
    in diffrent lines. Try this:
    public String searchForAString(String fileName,int
    lineNumber)
    File fileObject = new File(fileName);
    String finalString ="";
    String record = "";
    int line;
    try
    FileInputStream fileInputStreamObject = new
    FileInputStream(fileObject);
    BufferedInputStream bufferedInputStreamObject =new
    BufferedInputStream(fileInputStreamObject);
    //DataInputStream dataInputStreamObject = new
    DataInputStream(bufferedInputStreamObject);
    BufferedReader bufferedReaderObject = new
    BufferedReader(new
    InputStreamReader(bufferedInputStreamObject));
    //System.out.println(bufferedReaderObject.readLine());
    //System.out.println("_____________________");
    String s = bufferedReaderObject.readLine();
    while(s != null)
    System.out.println(bufferedReaderObject.readLine());
    s = bufferedReaderObject.readLine();
    Every time you call the readLine method, it doesread
    a diffrent line. Java does not know you want toread
    the same line twice.Err, shouldn't that be:
    while(s != null)
    System.out.println(s);
    s = bufferedReaderObject.readLine();
    Otherwise, you're still discarding a line if you use
    two readLines in the while loop.yes you are correct... srry late last night and I wsa copying his code :).

  • BufferedReader's readLine() method

    i use this readLine() method to read from a file.
    in this file, there is only a line of normal text, say "hello".
    after saving the returned String from readLine() method,
    i find that it is not as same as "hello" anymore -> i get a
    false while comparing the two strings : one is the derived string from bufferedreader's readLine() method, another one is from a string variable i defined in the program.
    what is wrong here ?

    hi ya abnormal !
    below is the piece of code of mine :
    =====================================               FileReader bf = new FileReader("test.txt");
                   BufferedReader br = new BufferedReader(bf);
                   br.readLine();
                   String s1 = br.readLine();
                   String s2 = "hihi";
                   char[] c1 = s1.toCharArray();
                   char[] c2 = s2.toCharArray();
                   System.out.println("String 1: ");
                   for (int x = 0; x < c1.length; x++)
                   {  System.out.print((int)c1[x]+" ");}
                   System.out.println();System.out.println("String 2: ");
                   for (int x = 0; x < c2.length; x++)
                   {  System.out.print((int)c2[x]+" ");}
                   System.out.println();               
                   boolean result = false;
                   if (s1 == s2)
                   result=true;
                   System.out.println(result);
                   br.close();
                   bf.close();
    =============================
    i get a false :(
    from your piece, the output integers representing the two strings are equal. but not after the comparison...
    of course , the first line in the file test.txt is "hihi".
    i even tried to move the "hihi" to the 2nd line out of 3 lines in the test.txt file, to avoid EOF or \r\n , if there are... the result is the same. false ....
    what could be wrong ?

  • How to read the method and put that code in 1 internal table

    Hi,
    Actually in the normal ABAP, if we want to read the report,  then we will write read report statement.
    If we want to read method then this statement will not work.
    So, to read the method and put that code in 1 internal table , which statement we need to write?
    Regards,
    Radhika

    Hi Naimesh,
    Thanks for your reply.
    As, i am not aware of ABAP Objects i am having some issues:
    Actually that is working for some methods in some classes.
    Here 1 issue is there:
    In se24 1 method is there in 1 class.
    Even by using that FM in SE37 i am able to get the program name by giving class and method name,
    but while using that FM in the program i am not able to get that program name.
    so, i am unable to read the source code of the program?
    1 example here:
    Class name is CL_GUI_FRONTEND_SERVICES.
    in this class, methods like FILE_EXIST , FILE_GET_SIZE, etc are there.
    By giving the class name and method name i am able to get the program name also,
    but while using that FM in the program i am not able to get that program name.
    so, i am unable to read the source code of the program?
    Here is my code:
    REPORT  Z16059_SCAN_METHOD.
    DATA: BEGIN OF I_PROGRAM OCCURS 0,
          LINE(256) TYPE C,
          END OF I_PROGRAM.
    DATA METHOD TYPE PROGRAM.
    DATA: BEGIN OF I_STRUCTURE,
          CLS_NAME(30) TYPE C,
          METH_NAME(61) TYPE C,
          END OF I_STRUCTURE.
    I_STRUCTURE-CLS_NAME = 'CL_GUI_FRONTEND_SERVICES'.
    I_STRUCTURE-METH_NAME = 'CL_GUI_FRONTEND_SERVICES-FILE_EXIST'.
    CALL FUNCTION 'SEO_METHOD_GET_INCLUDE_BY_NAME'
      EXPORTING
      MTDKEY             =  I_STRUCTURE
    IMPORTING
       PROGNAME          = METHOD
    EXCEPTIONS
       INTERNALMETHOD_NOT_EXISTING      = 1
       OTHERS                             = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ REPORT METHOD INTO I_PROGRAM.
    Please help me out in this regard.
    Thanks & Regards,
    Radhika

  • Problem while using read(char[]) method of stream

    Hi I am trying to read different xml files, , hence i am using a buffered reader, and the read(char[]) method in the bufferereader.
    //rawContent - is the xml file content
          BufferedReader br = new BufferedReader(new InputStreamReader(rawContent,
              ENCODING_FORMAT));
          int ascii = 0;
          char ch[]= new char[200];
          while((ascii = br.read(ch)) != -1) {       
            rawContentBuffer.append(ch);
          }This is the error that i get when i execute the above piece of code. I have checked the files they have no white spaces after the xml contents.
    Please tell me how i can overcome this.
    2006-02-17 19:43:52,826 ERROR [com.test.web.taglib.LightTag] - Error in parsing the XHTMLContent is not allowed in trailing section.
    org.xml.sax.SAXParseException: Content is not allowed in trailing section.
          at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown Source)
          at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(Unknown Source)
          at javax.xml.parsers.DocumentBuilder.parse(Unknown Source)
          at com.test.web.taglib.LightTag.renderField(LightTag.java:293)
          at com.test.web.taglib.LightTag.doStartTag(LightTag.java:128)

    Maybe it isn't. I don't know what 'rawContentBuffer' is, but you're assuming that 'ch' is always full when you call rawContentBuffer.append(ch). You need to call rawContentBuffer.append(ch,0,ascii) or some such form if there is one, or make some other arrangement for handling short reads.

  • Urgent,: Able to read but not set bean methods

    Hi
    I am having a strange problem.
    <h:outputText value="Period (ms)"/>
    <h:inputText value="#{bean.period}">
    </h:inputText>
    When the page shows up, I am able to read the getPeriod method, but When I click a button, which returns "OK", I see that setPeriod method is called with empty string.
    What am I missing here
    thanks

    Show us the signature and the code of the property and it's accessors.
    Is this input element actually nested in the same h:form? And is the value actually filled in?

  • URGENT---ANY FREE HAND DRAWING METHOD

    on the CANVAS I wanna do freehand drawing...
    is there ANY method or technique for this......
    also if anyone knows then letme know in detail
    how to fill any given shape/polygon.....
    the coordinates of which is not known....
    rgds
    ASHWIN

    ashwin0007,
    This is at least your 3rd recent post on the same subject, marked "URGENT" and ALL-CAPITALS no less. Go back and read prior responses--the url ref provided in one of them does work, (I can attest to it being tested from at least 6 locations around the world).
    --A                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • URGENT: Need help reading URL of current page

    Hello kind people!
    I need help, and its very simple:
    How do i read the URL of a web page?
    For example, the URL of this page is:
    http://forums.sun.com/thread.jspa?threadID=5327796
    So how can i be able to read in this URL in my java program?
    thanks SO MUCH
    P.S. I HAVE searched the java docs and everything, the closest thing i found was request.getRequestURL().? but i have no idea how to use it. you have NO IDEA how appreciative i would be if you could simply show me exactly how to read in the URL of a given page.
    thanks SO MUCH
    Edited by: homegrownpeas on Aug 31, 2008 5:19 PM

    Going by what I understand here is a simple version of how you can read data from over HTTP.
    This expects the "page" to be text (hence an InputStreamReader instead of an InputStream.)
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.HashMap;
    * GPLv2.
    * @author karlm816
    public class HomeGrownPeas {
          * @param args
         public static void main(String[] args) {
              HashMap<String, String> params = new HashMap<String, String>();
              params.put("threadID", "5327796");
              System.out.println(loadHttpPage("http://forums.sun.com/thread.jspa", params));     
         public static String loadHttpPage(String sUrl, HashMap<String, String> params) {
              // Build the HTTP request string
              StringBuilder sb = new StringBuilder();
              if (params != null) {
                   for (String key : params.keySet()) {
                        if (sb.length() > 0) {
                             sb.append("&");
                        sb.append(key);
                        sb.append("=");
                        sb.append(params.get(key));
              System.out.println("params: " + sb.toString());
              try {
                   URL url = new URL(sUrl);
                   URLConnection connection = url.openConnection();
                   connection.setDoOutput(true);
                   connection.setRequestProperty("Content-Length", "" + sb.length());
                   connection.setUseCaches(false);
                   if (connection instanceof HttpURLConnection) {
                        HttpURLConnection conn = (HttpURLConnection) connection;
                        conn.setRequestMethod("POST");
                   OutputStreamWriter osw = new OutputStreamWriter(connection.getOutputStream());
                   osw.write(sb.toString());
                   osw.close();
                   // Now use sb to hold the resutls from the request
                   sb = new StringBuilder();
                   BufferedReader in = new BufferedReader(
                         new InputStreamReader(
                         connection.getInputStream()));
                   String s;
                   while ((s = in.readLine()) != null) {
                        sb.append(s);
                        // To make it more "human readable"
                        sb.append("\n");
                   in.close();
             } catch (IOException e) {
                  e.printStackTrace();
                  return null;
            return sb.toString();
    }

  • Has anyone come across the 'insufficient data for an image' bug in Reader 9.5.1??

    We have an application that uses Reader to open scanned documents containing JP2K images and our users are intermittently getting this error however I can only find instances online of this bug from version 9.5.2 up.
    Has anyone seen this bug in 9.5.1??
    Thanks.

    Hi, thanks for getting back to me so quickly.  Our application uses scanned images up to 10 years old, and there are thousands of images so we cannot rescan these unfortunately.   
    I work in a large organisation with it's own desktop team so unfortunately I can't upgrade the version of Reader on our user's machines to see if this resolves either.  The desktop team will also not upgrade the version as the problem appears to have only started in 9.5.2. 
    Does anyone know how I can confirm if the problem was first seen in 9.5.2 or if there were instances in 9.5.1 also?
    Thanks again

  • URGENT: Bug in Adobe Acrobat X /// Acrobat.exe Runtime Error! R6025 - pure virtual function call

    Hello
    I work usually with large PDF documents, and I was trying to convert a PDF document of 1000 pages ONE THOUSAND PAGES, to little PDF documents of 10 MB each one.
    When I tried to convert the PDF file into little ones, craaashhhhhhhhhhhhhhhhhh
    I got this message:
    Acrobat.exe Runtime Error! R6025 - pure virtual function call - Microsoft Visual C++ Runtime Library
    This seems to be a BUG AS BIG A GRAND PIANO... so I would like someone from Adobe tell me how may I solve this problem or if they will release an update soon?
    Thank you

    This is a user to user forum and we don't post information here (or anywhere else public) about what may or may not be in future patch releases.
    If you have a bug with an Adobe product you must report it using the correct form.

Maybe you are looking for

  • Voice Memo no Volume

    I get no volume with voice memos. Video recording pick up is ok, but in voice memo the VU meter does not move from my voice, even if I am yelling. Knocking the iPod touch case will produce a volume. I have restarted the iPod. Any suggestions? Harmz

  • Did you know... you can talk through your Aux in your car with your iPhone.

    I am a new iPhone user. It took me over a year to finally decide to purchase one, and I'm loving it... But didn't know if anyone knew this but I found it on an accident. To get better hearing from my iPhone iPod, I hook it to my Aux connection in my

  • MIFI 2000 Hotspot runs slow

    I have a MIFI 2000 and it is running real slow. If buffers forever when trying to view any vedio on the net. It downloads real slow. Is there a reason for this? Does VZ slow down the speed now they have 4G?

  • Possible to rename popup strings upon changing `Chapter` field in `Composition Marker` dialog?

    Hi There, I am in need to dynamically change the values inside a popup upon a user changing the value of the `Chapter` field within the `Composition Marker` dialog.  I realize that we cannot add new string values to a popup at runtime, but I read a t

  • Business Objects Xi3.1 access to SQL 2005

    What level of security does the BO service account need to a SQL 2005 database? We are having some issue with getting the permissions correct. Thank you, Krysta