How to validate PDF document with JAVA

Hi,
Is there any way to write JAVA app that will validate PDFs through/with LC API ? I was traying with code:
ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
FormsServiceClient formsClient = new FormsServiceClient(myFactory);
FormsResult renderedForm = renderPDF(formName, xmlData, url, formsClient);        
RenderOptionsSpec processSpec = new RenderOptionsSpec();
//processSpec.setValidationReporting(5);
processSpec.setLocale("pl_PL");
FormsResult formOut = formsClient.processFormSubmission(renderedForm.getOutputContent(),"CONTENT_TYPE=applicati on/pdf","",processSpec);
System.out.println(formOut.getValidationErrorsList().toString());
//Rendering method
private static FormsResult renderPDF(String formName,String  xmlData, String url, FormsServiceClient formsClient) throws RenderFormException, DSCException, UnsupportedEncodingException {
         PDFFormRenderSpec pdfFormRenderSpec = new PDFFormRenderSpec();
         pdfFormRenderSpec.setCacheEnabled(new Boolean(false));
         pdfFormRenderSpec.setXMLData(true);
         pdfFormRenderSpec.setStandAlone(true);
         pdfFormRenderSpec.setLinearizedPDF(true);
         URLSpec urlSpec = new URLSpec();
         urlSpec.setContentRootURI(url);
         String credentialAlias = CREDENTIAL_ALIAS;
         String credentialPassword = CREDENTIAL_PASSWORD;
         ReaderExtensionSpec reOptions = new ReaderExtensionSpec();
         reOptions.setReCredentialAlias(credentialAlias);
         reOptions.setReCredentialPassword(credentialPassword);
         reOptions.setReExpImp(true);
         reOptions.setReFillIn(true);
         reOptions.setReDigSig(true);
         Document inputData = new Document(xmlData.getBytes("UTF-8"));
         /*return renderedForm = formsClient.renderPDFForm(formName,inputData,pdfFormRenderSpec,urlSpec,null);*/
         return formsClient.renderPDFFormWithUsageRights(formName,inputData,pdfFormRenderSpec,reOptions,u rlSpec);
but in formOut.getValidationErrorsList() i still get:
[8/2/10 12:03:46:728 GMT+01:00] 0000002c SystemOut     O --------------------Validation------------
[8/2/10 12:03:46:728 GMT+01:00] 0000002c SystemOut     O <document state="active" senderVersion="3" persistent="false" senderPersistent="false" passivated="false" senderPassivated="false" deserialized="true" senderHostId="127.0.0.1/172.16.133.24/172.16.134.24" callbackId="0" senderCallbackId="0" callbackRef="null" isLocalizable="false" isTransactionBound="false" defaultDisposalTimeout="600" disposalTimeout="600" maxInlineSize="65536" defaultMaxInlineSize="65536" inlineSize="0" contentType="null" length="-1"><cacheId/><localBackendId/><globalBackendId/><senderLocalBackendId/><senderGl obalBackendId/><inline></inline><senderPullServantJndiName>adobe/idp/DocumentPullServant/a dobews_anathNode01Cell_anathNode02_server1</senderPullServantJndiName><attributes/></docum ent>
without any errors. I was looking around (google,forum and Adobe Develop Connection) but no luck . Is it posible to make it that way ?
Ps.
It's my first post so (if i did something wrong ) be gentle. And ... sorry for my poor english .

I modified code for rendering form and for validating and I start to get erros on output, but that is not complete list
<document state="active" senderVersion="3" persistent="false" senderPersistent="false" passivated="false" senderPassivated="false"
deserialized="true" senderHostId="127.0.0.1/172.16.133.24/172.16.134.24" callbackId="0" senderCallbackId="0" callbackRef="null"
isLocalizable="false" isTransactionBound="false" defaultDisposalTimeout="600" disposalTimeout="600" maxInlineSize="65536"
defaultMaxInlineSize="65536" inlineSize="342" contentType="text/xml" length="-1">
<cacheId/>
<localBackendId/>
<globalBackendId/>
<senderLocalBackendId/>
<senderGlobalBackendId/>
<inline>
    <?xml version="1.0" encoding="UTF-8"?>
    <validationErrors>
    <m d="2010-08-04T10:05:48.897+02:00" ref="...
</inline>
<senderPullServantJndiName>adobe/idp/DocumentPullServant/adobews_anathNode01Cell_anathNode 02_server1</senderPullServantJndiName>
<attributes/>
</document>
it is cut in place where should be reference to wrong field.
<inline>
     <?xml version="1.0" encoding="UTF-8"?>
     <validationErrors>
     <m d="2010-08-04T10:05:48.897+02:00" ref="...
</inline>
I attach whole class after changes:
public class AdobeForm {
    private static final String CREDENTIAL_ALIAS  = "READER_EXC_CERT";
    private static final String IIOP = "iiop://localhost:2810";
    private static final String CREDENTIAL_PASSWORD = "pass";
    private static final String AS_USERNAME = "log";
    private static final String AS_PASSWORD = "pass";
    private static final String NO_ERRORS = "";
    public static byte[] renderForm(String formName,String  xmlData, String url){
        byte[] data = null;
        try
            //JBOSS
/*            Properties connectionProps = new Properties();
            connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", "jnp://localhost:1099");
            connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL", "EJB");
            connectionProps.setProperty("DSC_SERVER_TYPE", "JBoss");
            connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", "log");
            connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", "pass");*/
           // dla WebSphere
            Properties connectionProps = new Properties();
            connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", IIOP);
            connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL","EJB");         
            connectionProps.setProperty("DSC_SERVER_TYPE", "WebSphere");
            connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", AS_USERNAME);
            connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", AS_PASSWORD);
            ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
            FormsServiceClient formsClient = new FormsServiceClient(myFactory);
            FormsResult renderedForm = renderPDF(formName, xmlData, url, formsClient, false);
            //test(renderedForm);
            Document renderedFormData = renderedForm.getOutputContent();
            InputStream inputStream = renderedFormData.getInputStream();
            // to pewnie trzeba poprawic na przepisywanie duzych danych
            int size = inputStream.available();
            data = new byte[size];
            inputStream.read(data);
            inputStream.close();
        catch (Exception e)
            e.printStackTrace();
        return data;
    public static byte[] validateForm(String formName, String xmlData, String url){
        byte[] data = null;
        try
            //JBOSS
            Properties connectionProps = new Properties();
            connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", "jnp://localhost:1099");
            connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL", "EJB");
            connectionProps.setProperty("DSC_SERVER_TYPE", "JBoss");
            connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", "administrator");
            connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", "password");*/
            // dla WebSphere
            Properties connectionProps = new Properties();
            connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", IIOP);
            connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL","EJB");         
            connectionProps.setProperty("DSC_SERVER_TYPE", "WebSphere");
            connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", AS_USERNAME);
            connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", AS_PASSWORD);
            ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
            FormsServiceClient formsClient = new FormsServiceClient(myFactory);
            FormsResult renderedForm = renderPDF(formName, xmlData, url, formsClient, true);        
            RenderOptionsSpec processSpec = new RenderOptionsSpec();
            processSpec.setValidationUI(0);
            processSpec.setValidationReporting(10);
            processSpec.setCacheEnabled(true);
            //processSpec.setXMLData(true);
            //processSpec.setDebugEnabled(true);
            /*processSpec.setLocale("pl_PL");
            processSpec.setStandAlone(true);*/
            FormsResult formOut = formsClient.processFormSubmission(renderedForm.getXMLData(),
                    "I=application/pdf&CONTENT_TYPE=application/vnd.adobe.xdp+xml",
                    "",processSpec);
/*            Document inputData = new Document(xmlData.getBytes("UTF-8"));
            FormsResult formOut = formsClient.processFormSubmission(inputData,
                    "CONTENT_TYPE=application/pdf&CONTENT_TYPE=application/vnd.adobe.xdp+xml&CONTENT_TYPE=tex t/xml",
                    "",processSpec);*/
            test(formOut);
            // to pewnie trzeba poprawic na przepisywanie duzych danych
            InputStream inputStream = formOut.getOutputContent().getInputStream();
            int size = inputStream.available();
            data = new byte[size];
            inputStream.read(data);
            inputStream.close();
            System.out.println("Dane: "+(new String(data)));
            System.out.println("------------------------------------------");
            System.out.println("OutputXML: "+formOut.getOutputXML());
            return NO_ERRORS.getBytes();
        catch (Exception e)
            e.printStackTrace();
        return NO_ERRORS.getBytes();
    private static void test(FormsResult formOut) {
        if(formOut != null)
            System.out.println("------------------------------------------");
            System.out.println("--------------------Validation------------");
            System.out.println(formOut.getValidationErrorsList());
            System.out.println("------------------------------------------");
            System.out.println("------------------------------------------");   
        else
            System.out.println("-------------------FORMOUT NULL-----------------------");   
    @SuppressWarnings("unused")
    private static void showData(String xmlData, String formName, String url) {
        System.out.println("------------------XML------------------------");
        System.out.println("XML: "+xmlData);
        System.out.println("Form: "+formName);
        System.out.println("URL: "+url);
        System.out.println("------------------XML------------------------");
    private static FormsResult renderPDF(String formName,String  xmlData, String url, FormsServiceClient formsClient, boolean renderedForm) throws RenderFormException, DSCException, UnsupportedEncodingException {
         URLSpec urlSpec = new URLSpec();
         urlSpec.setContentRootURI(url);
         PDFFormRenderSpec pdfFormRenderSpec = new PDFFormRenderSpec();
         pdfFormRenderSpec.setCacheEnabled(true);
         pdfFormRenderSpec.setXMLData(true);
/*       pdfFormRenderSpec.setDebugEnabled(true);
         pdfFormRenderSpec.setLocale("pl_PL");
         //without rights
         if(renderedForm)//see bellow
             pdfFormRenderSpec.setLinearizedPDF(true); */
         System.out.println("RenderServlet formName "+formName);  
         String credentialAlias = CREDENTIAL_ALIAS;
         String credentialPassword = CREDENTIAL_PASSWORD;
         Document inputData = new Document(xmlData.getBytes("UTF-8"));
         if(renderedForm)
             return formsClient.renderPDFForm(formName,inputData,pdfFormRenderSpec,urlSpec,null);
         else
             ReaderExtensionSpec reOptions = new ReaderExtensionSpec();
             reOptions.setReCredentialAlias(credentialAlias);
             reOptions.setReCredentialPassword(credentialPassword);
             reOptions.setReExpImp(true);
             reOptions.setReFillIn(true);
             reOptions.setReDigSig(true);
             pdfFormRenderSpec.setStandAlone(true);
             return formsClient.renderPDFFormWithUsageRights(formName,inputData,pdfFormRenderSpec,reOptions,u rlSpec);
         //[8/4/10 11:10:55:928 GMT+01:00] 0000002a CommonGibsonU W com.adobe.livecycle.formsservice.logging.FormsLogger logMessage ALC-FRM-001-048: Forms with Rights cannot be linearized.

Similar Messages

  • Validate PDF document with JAVA

    good morning,
    I'm a little desperate, I need to know how to validate using java pdf api but not know how. I followed your steps, which very generously put in the post whose title I refer to the subject of this message, and gives me the same error as you. Did you get it working? Could you send me the code? I ask you please
    I have two pdf documents, each with a date field. In one of them in the date field has a malformed date and another date is in correct format. Need to distinguish, using the JAVA API, each other, but do not know how? anyone can help me? thank you very much

    good morning,
    I'm a little desperate, I need to know how to validate using java pdf api but not know how. I followed your steps, which very generously put in the post whose title I refer to the subject of this message, and gives me the same error as you. Did you get it working? Could you send me the code? I ask you please
    I have two pdf documents, each with a date field. In one of them in the date field has a malformed date and another date is in correct format. Need to distinguish, using the JAVA API, each other, but do not know how? anyone can help me? thank you very much

  • Problem in printing pdf document with java code

    Hi All
    I want to print a pdf document with java code i have used PDFRenderer.jar to compile my code.
    Code:
    File f = new File("C:/Documents and Settings/123/Desktop/1241422767.pdf");
    FileInputStream fis = new FileInputStream(f);
    FileChannel fc = fis.getChannel();
    ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
    PDFFile pdfFile = new PDFFile(bb); // Create PDF Print Page
    PDFPrintPage pages = new PDFPrintPage(pdfFile);
    // Create Print Job
    PrinterJob pjob = PrinterJob.getPrinterJob();
    PageFormat pf = PrinterJob.getPrinterJob().defaultPage();
    pjob.setJobName(f.getName());
    Book book = new Book();
    book.append(pages, pf, pdfFile.getNumPages());
    pjob.setPageable(book);
    // System.out.println(pjob.getPrintService());
    // Send print job to default printer
    pjob.print();
    but when i am running my program i am getting error
    Exception in thread "main" java.awt.print.PrinterException: Invalid name of PrintService.
    Please anybody, knows the solution for this error?
    Thanks In Advance
    Indira

    It seems that either there is no default printer setup or you have too many printers or no printer setup at all. Try running the following code. It should print the list of available print services.
    import java.awt.print.*;
    import javax.print.*;
    public class PrintServiceNames{
         public static void main(String args[]) throws Exception {
              PrintService[] printServices = PrinterJob.lookupPrintServices();
              int i;
              for (i = 0; i < printServices.length; i++) {
                   System.out.println("P: " + printServices);
    }From the list pick one of the print service names and set it explicitly like "printerJob.setPrintService(printServices);" and then try running the program.

  • How to creat pdf documents with printing restrictions in Aperture

    Hi,
    I wondered if it is possible to create a pdf document made up of 9-12 image per page contact sheets, to send to clients that restricts the client to open and view only i.e no printing allowed.
    Photoshop allows this, however i would like to create /correct versions in aperture and then create a pdf [with the above printing restrictions applied, simply to save time.
    the way i work in photoshop is to export approx a 500 to 1000 jpegs [ per client] in aperture to a folder which I then open with Bridge- create the contact sheets and then create the pdf document with printing restrictions applied.
    is there any way for me to make this simpler, especially just using Aperture?

    just been reading about terminal on another thread.... Spinning beach ball,,[page 2 of Aperture discussions].Apparently there is a command line explained there that can help speed up Aperture. I tried it but Had a problem when trying to type in my Password... It would not let me type anything....So I canceled the proceedure. [ knowing my luck I would cause some irrepairable damage to the machine].
    Think I need to do a lot of reading up to get up to scratch with folk using this discussion Board!!!
    With regards to the pdfauxinfo- is it complicated to get running, or does it run straiaght away in automator?

  • How to display pdf file with java code?

    Hi All,
    i have a jsp pagein that page if i click one icon then my backing bean method will call and that method will create pdf document and write some the content in that file and now i want to display that generated pdf document.
    it should look like you have pressed one icon and it displayed pdf file to you to view.
    java code below:
    FacesContext fc = FacesContext.getCurrentInstance();
    ExternalContext ec = fc.getExternalContext();
    HttpServletResponse resp = (HttpServletResponse) ec.getResponse();
    resp.setHeader("Content-Disposition", "filename=\"" + temppdfFile);
    resp.encodeRedirectURL(temppdfFile.getAbsolutePath());
    resp.setContentType("application/pdf");
    ServletOutputStream out = resp.getOutputStream();
    ServletUtils.returnFile(temppdfFile, out);
    out.flush();
    and above temppdfFile is my generated pdf file.
    when i am executing this code, it was opening dialog box for save and cancel for the file, but the name of the file it was showing me the "jsp file name" with no file extention (in wich jsp file i am calling my backing bean method) and type is "Unknown File type" and from is "local host"
    it was not showing me open option so i am saving that file then that file saved as a pdffile with tha name of my jsp file and there is nothing in that file(i.e. empty file).
    what is the solution for this. there is any wrong in my code.
    Please suggest me.
    Thanks in advance
    Indira

    public Object buildBarCodes() throws Exception
    File bulkBarcodes = null;
    String tempPDFFile = this.makeTempDir();
    File tempDir = new File("BulkPDF_Files_Print");
    if(!tempDir.exists())
    tempDir.mkdir();
    bulkBarcodes = File.createTempFile
    (tempPDFFile, ".pdf", tempDir);
    //bulkBarcodes = new File(tempDir, tempPDFFile+"BulkBarcode"+"."+"pdf");
    if(!bulkBarcodes.exists())
    bulkBarcodes.createNewFile();
    Document document = new Document();
    FileOutputStream combinedOutput = new FileOutputStream(bulkBarcodes);
    PdfWriter.getInstance(document, combinedOutput);
    document.open();
    document.add(new Paragraph("\n"));
    document.add(new Paragraph("\n"));
    Image image = Image.getInstance(bc.generateBarcodeBytes(bc.getBarcode()));
    document.add(image);
    combinedOutput.flush();
    document.close();
    combinedOutput.close();
    FacesContext facesc = FacesContext.getCurrentInstance();
    ExternalContext ec = facesc.getExternalContext();
    HttpServletResponse resp = (HttpServletResponse) ec.getResponse();
    resp.setHeader("Content-Disposition", "inline: BulkBarcodes.pdf");
    resp.encodeRedirectURL(bulkBarcodes.getAbsolutePath());
    resp.setContentType("application/pdf");
    resp.setBufferSize(10000000);
    ServletOutputStream out = resp.getOutputStream();
    ServletUtils.returnFile(bulkBarcodes, out);
    out.flush();
    return "success";
    This is my action method which will call when ever i press a button in my jsp page.
    This method will create the barcode for the given barcode number and write that barcode image in pdf file
    (i saw that pdf file which i have created through my above method, This PDF file opening when i was opening manually and the data init that is also correct means successfully it writes the mage of that barcode)
    This method taking the jsp file to open because as earlier i said it was trying to open unknown file type document and i saved that file and opended with editplus and that was the jsp file in which file i am calling my action method I mean to say it was not taking the pdf file which i have created above it was taking the jsp file

  • How to view PDF documents with my problem

    I have Imac OS and since downloading and installing Adobe Reader this week, I am unable to open PDF documents.  I get a box which states "before
    viewing PDF documents in this browser you must launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the
    browser".  How do a accept the End User License Agreement?

    Open Reader by itself (look for its icon in the Applications folder, and double click on it), this should show you the EULA.

  • How to Validate PDF documents

    Hi,
    I need to find the given PDF document has any missing fonts or it is damaged one from my acrobat plugin application.  Which functions should
    I need to use to get  this information in Acroabt SDK.  Please help me..
    Thanks & Regards,
    Rehana

    Thanks Irosenth,
    that is good idea.  But I am don't have any idea on which plug-in functions (HFT) available and their names from the preflight plugin.  Can you please give some pointers on which functions i need to import to get this functionality in my plugin application.
    Thanks & Regards,
    Rehana

  • How to publish PDF documents with working Quicktime movies?

    I am pursuing the idea of creating an eBook format document that features quicktime movies.
    At present I've imported Quicktime movies into my Pages 2.0.2 document, and they play perfectly within the Pages application. But, when I export the document as PDF, the movies end up as static images.
    Earlier posts in this forum suggest Adobe Acrobat Professional will do this (not a Mac version yet). I am wondering if there are any other solutions that I need to consider?
    Any thoughts?
    MacBook Pro   Mac OS X (10.4.8)  

    There is a Mac Version of Adobe Acrobat which does this. There was a hiatus when there was some incompatibility between the MacOS, QuickTime and Adobe Acrobat of the time, but as far as I know, everything works fine today.
    You may have problems starting with a Pages document though. I think InDesign is the best starting point.

  • How do I print .pdf documents with reader for windows 8?

    I have Reader for windows 8.  How can I print .pdf documents with it? 

    See FAQ: Printing from Adobe Reader for Windows 8 Tablets.

  • How can I open and listen to the PDF documents with audio in my iPad?

    How can I open and listen to the PDF documents with audio in my iPad?

    You need to use a PDF reader that supports multimedia. Adobe Reader 10.3 does not. Adobe has not stated whether it will support multimedia in the future.
    In the meantime, you could buy an application that does like PDF Expert. Read about it here:
    Finding the Best Tablet PDF Reader

  • I want to share PDF documents with others. These documents have been edited (mostly highlights) by me. I want to share these documents without the changes I've made. How can I do this?

    I want to share PDF documents with others. These documents have been edited (mostly highlights) by me using Preview. I want to share these documents without the changes I've made. How can I do this? Do I have to manually erase all of the changes I've made. The people I want to share it with also have macs.
    Isaac

    You can move the iTunes folder to a separate drive on your pc an then configure each account to use this drive / folder as iTunes library ... The problem is, that iTunes by default stores everything in your personal music folder which is separate for each user account in windows (and by default is on "C" drive).
    I create a separate partition on every pc/laptop (and map a drive name) where I store music, videos and other mass data. This will also keep the "C" drive small, which is backed up from time to time and so my backup is also small.

  • How to create a  PDF document with page curls using Adobe  CS 4?

    My  goal is to create a  PDF document with page curls. I am using Adobe  CS 4.
    1.      The document was created in Adobe InDesign  CS 4  where the page  turn (curl) transition  was applied.
    2.      Then the document was exported to .swf.
    3.     The .swf file was imported into   Adobe Acrobat Pro  to create a PDF file with  flip page or page curl transitions.
    These are the problems.
    1.      The background is not  transparent.
    2.      Page dimensions have to be increased at least an inch in width and length so that the full page can show
    3.      The command and+   will not only increases the document's  screen size. It increases the page margins.

    PDF was never designed to support the Flash page curl effect (it didn't exist back then). Anything you try (and you've tried the standard hack) will look like a hack. Personally, I don't think the effort is worth it for an effect that's much overused.

  • A PDF document with information about activation for CS6 software

    Here's a PDF document with information about activation for CS6 software.
    I found it very useful for understanding how the system worked for activation of perpetual licenses, both in cases where the computer is and isn't connected to the Internet.

    Ann, with some browsers, the PDF document will download in the background rather than appear in a browser window.

  • How to link PDF document in Report Layout??

    I need to display the contents of PDF document after the form letter report. I tried OLE object but at the runtime it does not display the content. Does any one knows how to attach PDF document in reports layout?
    Thanks
    Ravindra

    you will have to concatinate your report output with the static PDF document. in reprots 10g you can create a cusotm destination that could implement this functionality.
    out of the box, reports does not provide the ability to add static content in PDF to reports' generated PDF output.
    thanks,
    philipp

  • Tried to open a pdf document with Acrobat XI Pro Trial and sign in popped up , I keyed in my username and password but it doesnt respond its like grey with the four dots rotating forever. Any solution Please ?????

    Tried to open a pdf document with Acrobat XI Pro Trial and sign in popped up , I keyed in my username and password but it doesnt respond its like grey with the four dots rotating forever. Any solution Please ?????

    Hi higi97,
    How are you connected to the internet? Are you behind a particularly secure corporate firewall? Are you on Mac or Windows? Do you have any anti-malware software running on your machine that may be preventing applications other than your browser from connecting to the internet?
    You may try to follow the steps below:
    1.Close the Creative Cloud application.
    2.Navigate to the OOBE folder.
    Windows: [System drive]:\Users\[user name]\AppData\Local\Adobe\OOBE
    Mac OS: /Users/[user name]/Library/Application Support/Adobe/OOBE folder
    3.Delete the opm.db file.
    4.Launch Creative Cloud.
    Let us know if that helps,
    Regards,
    Rave

Maybe you are looking for

  • How would I create a screen with links after a person logs into their computer?

    I have been asked to create a custom welcome screen that would load after a person logs into their computer . This screen is to have links to a couple of items. but I need this to show after they log in and before they see their desktop. How do I do

  • Like operator issue with on Number column

    Hi, Query with like operator for Example: " where RATE LIKE ('%2%')" the result of the query returns rows which contains "2" as part of field value along with few rows which are updated recently, but do not contain 2 in that row. In the table data ty

  • Doubt with MultiMapping

    Hey guys i m doin a multimapping scenario but getting some errors.its for test purposes so my source and target structures both are same . i m taking help from the followin the following blog /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm

  • Antec Notebook Cooler or iLap

    So, the heat coming from my MBP has forced me to make a decision. I need a cooler of some sort. I have been looking at getting a Antec Notebook Cooler with the two fans in it because that looks promising and isn't a bad deal. But I've seen on here ma

  • "This iPod can not be used because the required software is not installed"

    I downgraded my ipod touch to 1.1.1, then back up to 1.1.2 now whenever i plug it in it says, "This iPod can not be used because the required software is not installed" what should i do?????????????????????????????????????????????????