Undefined error in the ReportClientDocument

hello
i want to export my rpt file into pdf and store same where in the disk
my code is given below
/Crystal Java Reporting Component (JRC) imports.
import com.crystaldecisions.reports.sdk.*;
import com.crystaldecisions.sdk.occa.report.lib.*;
import com.crystaldecisions.sdk.occa.report.exportoptions.*;
import com.crystaldecisions.reports.sdk.ReportClientDocument;
//Java imports.
import java.io.*;
public class JRCExportReport {
     static final String REPORT_NAME = "report5.rpt";
     static final String EXPORT_FILE = "C:\\myExportedReport.pdf";;
     public static void main(String[] args) {
          try {
               //Open report.               
               ReportClientDocument reportClientDoc = new ReportClientDocument();               
               reportClientDoc.open(REPORT_NAME, 0);
               //NOTE: If parameters or database login credentials are required, they need to be set before.
               //calling the export() method of the PrintOutputController.
               //Export report and obtain an input stream that can be written to disk.
               //See the Java Reporting Component Developer's Guide for more information on the supported export format enumerations
               //possible with the JRC.
               PrintOutputController pl=new PrintOutputController();
               ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
               //Release report.
               reportClientDoc.close();
               //Use the Java I/O libraries to write the exported content to the file system.
               byte byteArray[] = new byte[byteArrayInputStream.available()];
               //Create a new file that will contain the exported result.
               File file = new File(EXPORT_FILE);
               FileOutputStream fileOutputStream = new FileOutputStream(file);
               ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(byteArrayInputStream.available());
               int x = byteArrayInputStream.read(byteArray, 0, byteArrayInputStream.available());
               byteArrayOutputStream.write(byteArray, 0, x);
               byteArrayOutputStream.writeTo(fileOutputStream);
               //Close streams.
               byteArrayInputStream.close();
               byteArrayOutputStream.close();
               fileOutputStream.close();
               System.out.println("Successfully exported report to " + EXPORT_FILE);
          catch(ReportSDKException ex) {
               ex.printStackTrace();
          catch(Exception ex) {
               ex.printStackTrace();
i got code for this but i getting undefined method error .
plz any one have solution then proviede me
thanks & regards
ram

Warning rampant multi-poster on the loose
http://forum.java.sun.com/thread.jspa?threadID=703303&tstart=0

Similar Messages

  • "undefined" error when attempting to update Creative Cloud desktop app

    I'm trying to update apps for a user on a Windows 7 64-bit machine. If i run the app under my admin account, the "apps" tab shows that all products are up to date, however, when I run the CC desktop app as the user, I am getting an "undefined" error under the apps tab. This is extremely annoying and inconvenient. I've tried logging out and back in to the CC desktop app, which did not help. I've restarted the PC several times. I've also re-installed the CC app to no avail. Also, due to the frequency of app updates, and the inability of users to update the apps themselves, this is a huge waste of time as I have to manually log in to each PC on our network with CC to update from an admin account. Does anyone know of a way to get around this? Any help would be greatly appreciated.

    As far as I know, an Admin account is required... but since I don't work for Adobe, you'll need to proceed below
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Email sends correctly but shows with a 'Red X' on it with an undefined error

    As the title, for the past few days when ever I send an email a red X appears by the email with an undefined error.  The email sends correctly however.  No changes were made that I am aware of.  Any suggestions on what this is?

    Hello sekisko, 
    Welcome to the forums. 
    Try clearing your Service Book database then resend Service Books and test again.
    How to clear the user content databases from the BlackBerry smartphone
    How to send service books using the email setup application on the BlackBerry smartphone
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Getting an "undefined" error when passing a variable to a function using Microsoft Razor

    I am trying to call a function and pass a variable to it. However I get an "undefined" error.
    The code is:
    Layout = "~/_SiteLayout.cshtml";
    Page.Title = "General Information";
    var recID = 3;
    <input type="text" id="rdy">
    <p>
    <a href=""><input type="button" name="button" id="button" value="Next Hypothetical" onclick='reselectState(recID)'></a>
    </p>
    <script>
    function reselectState(recIDx)
    var elem = document.getElementById("rdy");
    elem.value = recIDx;
    var rdy = $("#rdy").val();
    alert(rdy);
    location.href = '/hypothetical.cshtml?recordkey=' + rdy;
    </script>
    It seems to think that the variable "recID" is undefined even though it exists and I assign a value to it.

    Michael,
    Let me ask you this ... Are you trying to pass the value of the Input value? If you are looking for the input value to be .. then I made some changes you can follow...
        var recId = 3;
        <input type="text" id="rdy">
        <p>
            <a href="">@*<input type="button" name="button" id="button" value="Next Hypothetical" onclick='reselectState(recId)'>*@</a>
            <input type="button" name="button" id="button" value="Next Hypothetical" onclick='test()' />
        </p>
        <script>
            function test() {
                var inputValue = document.getElementById("rdy").value;
                reselectState(inputValue);
            function reselectState(recIDx) {
                var elem = document.getElementById("rdy");
                elem.value = recIDx;
                var rdy = $("#rdy").val();
                alert(rdy);
                location.href = '/hypothetical.cshtml?recordkey=' + rdy;
        </script>
    --Thanks,
    Pavan

  • Sending an Email via ColdFusion as a Service leads to ActionScript-Error "Server is undefined to setup the connection"

    Hi,
    Ben Forta shows in his video "ColdFusion9 exposed as Flex Services" how to send an Email using ColdFusion as a Service.
    I tried out this example with Flashbuilder4 Beta2 but I got the following ActionSript-Error:
    Error: Server is undefined to setup the connection
        at coldfusion.service::BasicService/initializeConnection()[D:\p4\depot\ColdFusion\cf_main\to ols\AIRIntegration\Services\src\coldfusion\service\BasicService.as:278]
        at coldfusion.service::BasicService/call()[D:\p4\depot\ColdFusion\cf_main\tools\AIRIntegrati on\Services\src\coldfusion\service\BasicService.as:226]
        at coldfusion.service.mxml::Mail/execute()[D:\p4\depot\ColdFusion\cf_main\tools\AIRIntegrati on\Services\src\coldfusion\service\mxml\Mail.as:370]
        at CFaaS/button1_clickHandler()[C:\Dokumente und Einstellungen\walter\Adobe Flash Builder Beta 2\CFaaS\src\CFaaS.mxml:18]
        at CFaaS/___CFaaS_Button1_click()[C:\Dokumente und Einstellungen\walter\Adobe Flash Builder Beta 2\CFaaS\src\CFaaS.mxml:93]
    Who has an idea what to do?
    Thanks in advance,
    Walter

    Hi,
    We tried this out and it works like a charm
    Actually even we hit the issue you have mentioned but on further investigation we could get things working.
    Please follow these settings, we are not sure if you have done all of these:
    a) In CF9 administrator, under Mail section please type your server name, username and password. Check the ' Verify mail server connection'
    checkbox and click 'Submit Changes'. Make sure you get the message 'Connection Verification Successful'.
    b) Under Security-> 'User Manager' section in CF9 administration,  add an user using 'Add User' with the following info:
    username, password, confirm password , check both RDS and administrative access and add 'Exposed Services' by selecting the required services.
    eg: Mail Service and click 'Add User'.
    c) Go to 'Security->Allow IP Address in CF9 administrator and enter your IP address and say 'Add'.
    d) After add the following tag in addition to CF:Mail,
    <cf:Config  cfServer="" cfPort="8501" servicePassword="" serviceUserName="" />(the values entered here should be same as the ones configured under 'Add User' and 'Allow IP address' section).
    Please find attached the mxml file (TestCF.mxml) which has the Flex code.
    Also, add the 'CFService.swc' into your project. Go to  Project->Flex Build Path->Add SWC and point to D:\ColdFusionCentaur\wwwroot\CFIDE\scripts\air (subject to CF9 installed location).
    Please try the workflow by following these steps and let us know if things work fine
    Thanks,
    Balaji
    http://balajisridhar.wordpress.com

  • There was an error in the App Store. Please try again later. (undefined)

    Attempting to purchase and download from App Store off and on over the last several hours. Have checked account details, rebooted twice, closed store and reopened several times. Running 10.6.6 and have even verified details in iTunes to ensure that is not the issue. Also verified Time Zone settings per Apple Support suggestions.
    I continue to see the same error each time: There was an error in the App Store. Please try again later. (undefined)
    Anyone else have/solved this problem?

    Your issues may be in the iTunes Store account. Quit the MAS and Open iTunes. Sign into your iTunes account and there may be a new Terms for your to agree to. Also, at the bottom of your account info page reset the notifications.
    Dah•veed

  • Tried the solutions posted for this "SubVI filter not executable​. Undefined error" but not solving the problem

    Hello,
    I am trying to use a lowpass filter for my application but getting the error "SubVI filter not executable. Undefined error".I tried working with the solutions at this post 
    http://forums.ni.com/t5/LabVIEW/SubVI-filter-not-e​xecutable-Undefined-error/m-p/1996701#M657751 and results with
    1. Create a blank vi, put a VI filter in the block diagram (this should not be functional as it is not wired), copy it and paste it in my other project. I believe if the filter is the first vi of a blank project, it is funcitonal and then you may copy it wherever you need to.
    Result:
    2.Tried to open the filter panel of the Filter but showing the same error as shown inthe below image
    Don't why the solutions worked for others are not working.Can someone suggest a solution for this.
    thanks in advance.

    Hi PatanGova,
    Very strange error. Actually, there are no required inputs on this express VI, so it should be able to run even without wires. It is not correct as you said: "this should not be functional as it is not wired". Nothing will happen, true, but the run arrow should not be broken.
    For some reason, the VI with the Filter express VI fails to compile. I tried it on my computer (LV 2013) and get no error when I add it to a new VI. As was suggested in the linked forum thread, you need to open the front panel of the Filter VI and run it to see the explicit error.
    If you do, do you also get the error:
    "This VI claims to be part of a library that does not include the VI. The VI might have been deleted from the library. Add the VI to the library again or select File - Disconnect from the library."?
    If you do, it seems that you may have a project library somewhere that has taken ownership of the express VI. The ownership prevents you from running or editing the express VI. To free the VI, you need to do one of two things. Either, you need to load the library into memory, or you need to disconnect the VI from the library. Either way, you need to find the project library that has taken the ownership of the VI. As soon as it is released, it should run for you. You release it by selecting File»Disconnect from Library on the VI.
    The workaround described in your link (and also here: http://forums.ni.com/t5/LabVIEW/compatibility-prob​lem-labview-2009-2010-2011-quot-This-VI-claims/td-​... tells that you can make a copy of the VI and thereby create another instance that is free. This solution may work for you as well, but if not, you may not have created the copy properly. Maybe your copy of the VI also became part of some project library that took ownership. In either way, you should rather find the project library to release the VI before trying the workaround to copy it.
    If project library ownership is not the problem, maybe the problem is connected to LV 2011, as most forum posters report that it only happens here.

  • Excel Merge Cells.vi throws an undefined error in Excel 2013?

    Basically, I can't write text into an Excel spreadshoot using the Report Generation tools.
    Using LabVIEW 2013 (SP1) I am writing to individual cells in an Excel (2013) template.
    The error is coming from the Report Generation Toolkit>Excel Specific>Excel Easy Text.vi.>Excel Merge Cells.vi.
    Inside of the "Excel Merge Cells.vi" is an "Invoke Node.Range". When the program hits this point, it throws out an undefined error.
    My code has been running on multiple platforms in multiple programs with no problems using Office 2010.
    NASA upgraded our Office Suit to 2013. I am now throwing an undefined error ( -2146827284).
    I've got a service request in and have talked to an engineer. THey are looking at the problem. However, I thought I would throw it out here and see if anyone had seen this particular problem.
    Bryan Alexander

    Problem found, workaround implemented.
    When you use the "New Report.vi", you have to wire in one of four choices for the state of the window. "Maximized", "Minimized", "Normal" and "No Change". If you use the "Excel Easy Text.vi" to insert data into an Excel 2013 Spreadsheet, it will generate an error if you opened the Excel file in "Minimized" mode. The other three states work fine.

  • Multiple web services on single server causing object undefined errors

    Hi,
    I've currently got a bit of a strange problem within a web service that is proving difficult to debug.
    There are the web service urls :
         api.domain.com                -> /var/www/html/api.domain.com/            -> CF mapping to MYSERVICE
         testapi.domain.com          -> /var/www/html/testapi.domain.com/     -> CF mapping to MYSERVICE_test
    In both instances the cfcs that contain the code to be translated into a WSDL reside in /api/..., in the case of this example, /api/common.cfc.  wsargs constists simply of refreshwsdl true.
    If I call the following 2 lines ...
         obj_myservice = CreateObject('webservice','http://api.domain.com/api/common.cfc?wsdl',wsargs);
         obj_myservice_test = CreateObject('webservice','http://testapi.domain.com/api/common.cfc?wsdl',wsargs);
    I then call the same method in both, and they are successful.  When checking the "Data & Services" -> "Web Services" panel within the CF control panel, only the web service "http://api.domain.com/api/common.cfc?wsdl" is listed, and not testapi.domain.com......
    If I reverse the order in which the WSDL's are loaded then this switches, and testapi.domain.com..... gets listed under "Web Services" but api.domain.com..... does not.  In essence it appears as though for some reason the CF server overwrites one with the other.  The exact "object undefined" error is proving difficult to reproduce reliably.
    This appears to happen no matter which server is accessing the web service, be it the same server or a remote server.  All servers involved are running CF8.  Accessing the 2 WSDL files in a browser results in the 2 WSDLs being rendered correctly with different namespace values.
    On the same server are 2 more services
         MYSERVICE2
         MYSERVICE2_test
    These reside in the /api2 directories on the same 2 subdomains, api. and testapi.   MYSERVICE2 and MYSERVICE2_test appear to conflict with each other.  MYSERVICE and MYSERVICE_test appear to conflict with each other.  MYSERVICE and MYSERVICE2 do not appear to conflict with each other.
    Is there a configuration change or anything like that which I should be aware of that would prevent me doing the above?  The 2 /api/ directories are nearly identical with the exception that the namespace and complex type names have been set to http://api.domain.com & MYSERVICE in the first, and http://testapi.domain.com & MYSERVICE_test in the second url.
    I have also tried mapping /MYSERVICE and /MYSERVICE_test within /opt/coldfusion8/WEB-INF/jrun-web.xml to no avail.
    Any help would be appreciated.  If there is any useful information that I have missed off please let me know and I'll dig it out.
    - Simon H

    Hi,
    As an extension to the above
    Server                Test service         "Live" service
    1 ("dev")                devtest                   devlive               http://dev(test/live).domain.com
    2 ("test")                testtest                   testlive               http://test(test/live).domain.com
    I currently have a test script (TEST1) that performs the following :
    CreateObject + call method from devlive
    CreateObject + call method from devtest
    CreateObject + call method from testtest
    The script errors on the third, when it attempts to call a method from devtest.  On the server on which this test script is running, by the end of this, there are the following 2 web services in the Coldfusion control panel :
    http://devlive.domain.com/api/common.cfc?wsdl
    http://testtest.domain.com/api/common.cfc?wsdl
    I have a second test script (TEST2) on a second server distinctfrom the first test script server, on which the following is performed :
    CreateObject + call method from testlive
    If I execute TEST2, then it executes fine.  If I execute TEST1 straight after, then I receive the following error on TEST1
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: org.xml.sax.SAXException: Deserializing parameter 'objectFetchReturn':  could not find deserializer for type {http://common.types.WEBSERVICE_test}details
    Where WEBSERVICE.types.common.details is a complex type (/api/types/common/details.cfc). If I then run the TEST2 script again straight after, the same error appears (with WEBSERVICE in place of WEBSERVICE_test).  If I execute TEST2 twice in a row, or TEST1 twice in a row, then the error disappears"test" server has got jrun-web.xml  edited to include the following, which "dev" does not.
      <virtual-mapping>
        <resource-path>/WEBSERVICE_test</resource-path>
        <system-path>/var/www/html/testapi.domain.com/api</system-path>
      </virtual-mapping>
      <virtual-mapping>
        <resource-path>/WEBSERVICE</resource-path>
        <system-path>/var/www/html/api.domain.com/api</system-path>
      </virtual-mapping>
    I hope that this extended explaination helps.
    Simon H

  • Bobj is undefined error while debugging a web application

    Hello, I am developing an asp.net web application in which I display a report, and testing it by using a sample (dummy) report that's saved on the computer's hard drive.  In design mode, the report displays properly, when when I try to debug the site on my machine (the server in this case, but it should work on any computer, since debugging is done on localhost), the site crashes and returns a Microsoft JScript error 'bobj is undefined'.  I have already tried moving the CrystalReportsViewer folder to be a sub-directory of the application (physical and virtual), as well as adding a script tag to refer to the location of the .js files in that directory, but nothing seems to fix the error.
    I recently tried installing the fix-packs and service packs for crystal reports, but the problem persists.
    I"m running Windows 7, VS 2008, Crystal Reports 2008, and IIS 7.  Thank you in advance.

    Hi;
    Compiling as 32 bit is only available for a Windows based application, not a Web one. You need to configure IIS to run either 32 or 64 bit.
    As for the bobj undefined error, try these kbases:
    [Bobj|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233373338333933353332%7D.do]
    [Undefined|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133383333333033363335%7D.do]
    Regards,
    Jonathan

  • HP LaserJet 1200 with "undefined" error

    Hi -
    I have an HP LaserJet 1200 attached to my home network off an HP JetDirect 175 (I think). I can print fine - after the Leopard installation, the settings didn't transfer, but I was able to add a printer and it found the driver.
    I'm using an iMac which is wireless (as was the case in the Tiger days), and the printer communicates via AppleTalk. The printer is shared with another G4 iMac and a PC laptop - both wireless, and both print fine.
    The problem I have is that, after each successful print, I have an extra page that says:
    ERROR: undefined
    OFFENDING COMMAND: D
    STACK:
    Any idea what this means, and how to fix it? I've never had this before Leopard.
    Thanks!
    Steve

    Hi. I had this exact problem with my HP Laserjet 2300d right after I installed OS 10.5. I tried installing an update to the HP drivers that is available for 10.5 with no success. As well, I didn't try the Gutenprint option because it just didn't make sense to me that the HP drivers alone were faulty. Anyways, what fixed it for me was the "Installed options" setting. This can be accessed by going into the "Print and Fax" preference panel. When you select the printer, click on "Options and Supplies". In my case, my printer is a duplex enabled printer, but under the "Driver" panel, the "Duplex Unit" setting was not selected as one of the installed options. I clicked the checkbox for that feature and now it prints perfectly fine without any error page. Perhaps the problem is the opposite for the Laserjet 1200 users: their printers are not duplex-enabled, but the duplex option is selected, generating an error whenever the computer negotiates a connection with the printer.
    I hope this helps, otherwise my getting and resolving this error is just an odd coincidence.

  • Error in the Portal Logon par

    Hi All
    i got the error  in the logon par customization i have the followed the steps based on the weblog from the following link
    Modifying The Logon Par(or customising the Logon Screen)
    after done everything i restarted the portal then i got the following error
    <b> Servlet [prt] will be unavailable for undefined time.
      Details:   javax.servlet.UnavailableException: Initialization of Dispatcher failed
    Exception id: [001731424EAC006700000029000013100004346F05987ABE]
    </b>
    please help me on this as early as posible
    Regards
    Sunil

    Hi Sunil,
    First of all, put back the original par file and restart the portal. If you have the same problem, it has nothing to do with your changes (unless you changed the authschemes.xml as well).
    Download the standard logon par file and compare the structure with your par file. Find the problem (create an iview where you can test your component). If it works, you can try again.
    cheers,
    Noë

  • Possible Bug with Drag-and-Drop Being Published via HTML5 - Getting "Undefined" Error When Dragging Object

    Hello,
    I came up with a way to use drag-and-drop interactions that will take advantage of file input so that I may create a drag-and-drop interaction that uses one draggable object over and over allowing multiple scoring/tracking possibilities.  Example use...is having the draggable object be dynamic in that it randomly changes its text so that a learner can drag a term it's possible classification.........thus allowing the possibility of having many terms easily loaded without having to redo a drag-and-drop interaction for each needed terms/classifications updates/changes.
    My Issue: When using a variable to represent the text for a draggable Smart Shape object, I'm getting the error message "undefined" when, clicking/pressing on the object, as well as during the drag of the object. This issue occurs when publishing the project in an HTML5 format.  Flash interestingly enough seems to work perfect...but we are not interested in publishing via Flash any longer.
    To better help you explore this error message, I've set up a test project so that you can see when and how the "undefined" message shows up during a drag-and-drop interaction.  I've also included the Captivate 8 project file used to make the exploration project I'm sharing in this post.
    Link to Captivate project I created for you all to explore "undefined" error message": http://iti.cscc.edu/drag_and_drop_bug/
    Link to this Captivate 8 Project file: http://iti.cscc.edu/drag_and_drop_bug.cptx
    It's pretty interesting how things react in this demo, please try the following actions to see some interesting happenings:
    Drag the Yellow (or variable drag box) to the drag target.
    Drag Black Hello square to Drag target and click undo or reset - watch the undefined message come up on the Yellow (or variable drag box).
    Drag the Yellow (or variable drag box) to the drag target and then use the undo or reset.
    Move both draggable boxes to the drag target and use the undo and reset buttons...
    Anyhow, I know you all are sharp and will run the demo through its paces.
    I'd really be very honored if anyone help me figure out how I could (when publishing out to HTML5) no longer have the "undefined" error message show up when using drag-and-drop with a variable for shape text. This technique has been well received at the college I work at...and I have many future project requests for using such an idea on a variety of similar interactions. I'd love see a solution or see if this might be a bug Adobe may be able to fix!
    I tried to find a solution to the issue documented here for quite some time, but I was not able to find anyone with this problem much less attempting the idea I'm sharing in the help request -  save the darn "undefined" message that comes up!
    Many thanks in advance for any help and/or direction that you all may be able to provide,
    Paul

    Hello,
    I just wanted to supply a minor update related to my drag-and-drop question/issue stated above:
    I did another test using Captivate 7, and found that the undefined error (publishing as HTML5) does not appear and the variable data remains visible - except the variable data turns very small and does not honor any font size related settings.
    I did go ahead and submit this to Adobe as a possible bug today.
    Thanks again for any help related to this issue.  If the issued documented above is solved, it will allow many amazing things to be done using Captivate's drag-and-drop for both regular type projects as well as interaction development for iBooks! 
    Matter of fact if this issue gets fixed, I'll publish a Blog entry (or video) on way's I've used Captivate's drag-and-drop to create dynamic learning activities for Higher Ed. and for use in iBooks.
    ~ Paul

  • Unable to open PDF, Undefined Error, command Get

    I am on Adobe Acrobat Pro 11.0.5 and the person sending me a document or trying to read one I send in also on 11.0.5.  I am running on Windows 7, 64 bit.
    Some, but not all documents that are scanned and saved as a PDF file will not open on the other person's system.  The open results in two pages with the first blank and the  second showing:
    ERROR: undefined
    OFFENDING COMMAND: get
    STACK:
    /quit
    -dictionary-
    -mark
    I have serached the web and have not found any solution.  I checked the document security on one that was sent to me that fails and it shows "no secuity".  I do not recal ever having this until I went to the Acrobat 11 level.  Since I can no longer expect a PDF file to be usable by the person I send it to or for one sent to me to be readable, I am back to having to fax document or scan them as jpegs for sending. 
    I get the same error trying to open the document under Acrobat Pro or Reader.
    Checked a set of PDF files where one opens and others have the error.  The one that opens shows as having password security while the two that fail show as having no security.

    I asked the person sending the PDF files to me to verify that the failing files open and look like expected on his PC.  He says they do.
    Here are the Adobe Properties on a bad and a good file:
    Bad
    Good
    I am going to guess that he got the good (full) form from the insurance company and then tried to save the two signature pages from it as a smaller PDF file.  It is this smaller PDF that has the error.

  • SQL Developer 1.5.4.59.40 - IO Exception: Undefined Error VENDOR CODE 17002

    Hi All.
    I hope someone can help.
    I have recently installed Oracle XE on my Vista Ultimate laptop and it is up and running with no apparent problems. I then connected to the HR schema on XE with no problems using SQL Developer 1.2.1.3213 (OLD Version). I noticed that SQL Developer 1.5.4.59.40 (NEW version) was available and downloaded it (the offering without JDK included) and renamed the "C:\Program Files\SQLDeveloper" folder holding the older version to "C:\Program Files\SQLDeveloper_Orig" and placed the new version of SQL Developer in the Prog Files directory to give "C:\Program Files\SQLDeveloper".
    I then ran SQLDeveloper.exe (NEW) and when requested gave the JDK path as "C:\Program Files\Java\JDK_1.6.0_11\bin\java.exe" ('Java -version' gives 1.6.0_11-b03) and migrated over the settings from the previous version of SQLDeveloper (OLD).
    The Application loads fine but when i attempt to connect to XE's HR schema i get the following error:
    "IO Exception: Undefined Error
    VENDOR CODE 17002"
    I have searched to try and find out what is going on but cannot find any solutions that work. The previous 17002 error solutions on this forumn have all failed.
    These included changing the JDK.conf file to hold route to JDK directory and also creating a 'bat' file.
    My system does not have the directory for the JDK in it's PATH environment setting (either USER or SYSTEM) but does include a directory path under SYSTEM environment vars to another version fo JDK on my machine under "C:\Program Files\Sun\JDK\". I thought this may be causing a conflict but it is version 1.6.0.05_b13 and is also compatible-is it not? I also have Java JRE6 (1.6.0_12-b04) on my machine - this does not have a PATH variable and was not referenced when loading SQL Developer when loading the first time.
    Can anyone help me resolve this, why can the previous version still connect OK to XE and not new version? is there something i am missing? Do i require the Java JDK Directory to be placed under a PATH environment SYSTEM variable?
    Thanks in advance,
    M
    Edited by: user592047 on 16-Mar-2009 10:08

    Taken from about SQL Developer:
    Version:
    CVS Version          Internal to Oracle SQL Developer (client-only)
    Java(TM) Platform     1.6.0_11
    Oracle IDE          1.5.4.59.40
    Versioning Support     1.5.4.59.40
    Properties:
    apple.laf.useScreenMenuBar     true
    awt.toolkit                    sun.awt.windows.WToolkit
    class.load.environment          oracle.ide.boot.IdeClassLoadEnvironment
    class.load.log.level          CONFIG
    class.transfer               delegate
    com.apple.macos.smallTabs     true
    com.apple.mrj.application.apple.menu.about.name     "SQL_Developer"
    com.apple.mrj.application.growbox.intrudes     false
    file.encoding               Cp1252
    file.encoding.pkg               sun.io
    file.separator               \
    http.agent                    Mozilla/5.0 (Java 1.6.0_11; Windows Vista 6.0 x86; en_GB) ICEbrowser/v6_1_3
    ice.browser.forcegc          false
    ice.pilots.html4.ignoreNonGenericFonts     true
    ice.pilots.html4.tileOptThreshold     0
    ide.AssertTracingDisabled     true
    ide.bootstrap.start          10390897243225
    ide.build                    MAIN-5940
    ide.conf                    C:\Program Files\sqldeveloper_new\sqldeveloper\bin\sqldeveloper.conf
    ide.config_pathname          C:\Program Files\sqldeveloper_new\sqldeveloper\bin\sqldeveloper.conf
    ide.debugbuild               false
    ide.devbuild               false
    ide.extension.search.path     sqldeveloper/extensions:jdev/extensions:ide/extensions
    ide.firstrun                    false
    ide.java.minversion          1.5.0
    ide.launcherProcessId          2672
    ide.main.class               oracle.ide.boot.IdeLauncher
    ide.patches.dir               ide/lib/patches
    ide.pref.dir                    C:\Users\M\AppData\Roaming\SQL Developer
    ide.pref.dir.base               C:\Users\M\AppData\Roaming
    ide.product                    oracle.sqldeveloper
    ide.shell.enableFileTypeAssociation     C:\Program Files\sqldeveloper_new\sqldeveloper.exe
    ide.splash.screen               splash.gif
    ide.startingArg0               C:\Program Files\sqldeveloper_new\sqldeveloper.exe
    ide.startingcwd               C:\Program Files\sqldeveloper_new
    ide.user.dir                    C:\Users\M\AppData\Roaming\SQL Developer
    ide.user.dir.var               IDE_USER_DIR
    ide.work.dir               C:\Users\M\Documents\SQL Developer
    ide.work.dir.base               C:\Users\M\Documents
    java.awt.graphicsenv          sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob          sun.awt.windows.WPrinterJob
    java.class.path               ..\..\ide\lib\ide-boot.jar
    java.class.version               50.0
    java.endorsed.dirs          C:\Program Files\Java\jdk1.6.0_11\jre\lib\endorsed
    java.ext.dirs               C:\Program Files\Java\jdk1.6.0_11\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
    java.home                    C:\Program Files\Java\jdk1.6.0_11\jre
    java.io.tmpdir               C:\Users\M\AppData\Local\Temp\
    java.library.path               C:\Program Files\sqldeveloper_new;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\oracle\xe\app\oracle\product\10.2.0\server\bin;C:\Program Files\CodeGear\RAD Studio\5.0\bin;C:\Users\Public\Documents\RAD Studio\5.0\Bpl;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared\;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Users\Public\Documents\RAD Studio\5.0\Bpl;C:\Program Files\Common Files\Teleca Shared;C:\Program Files\Microsoft Network Monitor 3\;C:\PROGRA~1\DISKEE~1\DISKEE~1\;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Java\jdk1.6.0_11;C:\Program Files\Sun\SDK\bin;C:\Users\Public\Documents\RAD Studio\5.0\Bpl;C:\Program Files\Nmap
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.runtime.name          Java(TM) SE Runtime Environment
    java.runtime.version          1.6.0_11-b03
    java.specification.name          Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.6
    java.util.logging.config.file     logging.conf
    java.vendor                    Sun Microsystems Inc.
    java.vendor.url               http://java.sun.com/
    java.vendor.url.bug          http://java.sun.com/cgi-bin/bugreport.cgi
    java.version                    1.6.0_11
    java.vm.info               mixed mode
    java.vm.name               Java HotSpot(TM) Client VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor               Sun Microsystems Inc.
    java.vm.version               11.0-b16
    jdbc.library                    /C:/Program Files/sqldeveloper_new/jdbc/lib/ojdbc5.jar
    line.separator               \r\n
    oracle.home               C:\Program Files\sqldeveloper_new
    oracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG     true
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    orai18n.library               /C:/Program Files/sqldeveloper_new/jlib/orai18n.jar
    os.arch                    x86
    os.name                    Windows Vista
    os.version                    6.0
    path.separator               ;
    reserved_filenames          con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    sun.arch.data.model          32
    sun.boot.class.path          C:\Program Files\Java\jdk1.6.0_11\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_11\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_11\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_11\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_11\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_11\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_11\jre\classes
    sun.boot.library.path          C:\Program Files\Java\jdk1.6.0_11\jre\bin
    sun.cpu.endian               little
    sun.cpu.isalist               pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop               windows
    sun.io.unicode.encoding     UnicodeLittle
    sun.java2d.ddoffscreen          false
    sun.jnu.encoding               Cp1252
    sun.management.compiler     HotSpot Client Compiler
    sun.os.patch.level          Service Pack 1
    user.country               GB
    user.dir                    C:\Program Files\sqldeveloper_new\sqldeveloper\bin
    user.home                    C:\Users\M
    user.language               en
    user.name                    M
    user.timezone               Europe/London
    user.variant     
    windows.shell.font.languages

Maybe you are looking for