[FlexPMD] flexpmd.html report created with zero bytes [Plz help]

hi folks,
initially i integrated FlexPMD with Maven.
when i tried to build it creates the following:
two folders:
* CSS --- contains css files
* Images --- contains image files
two files:
flexpmd.html -- created with zero bytes
pmd.xml -- it lists the violations.
my pom.xml
<plugin>
<groupId>com.adobe.ac</groupId>
<artifactId>flex-pmd-maven-plugin</artifactId>
<version>1.0.RC3</version>
<executions>
    <execution>
    <goals>
        <goal>check</goal>
    </goals>
    </execution>
</executions>
<configuration>
    <ruleSet>${basedir}/pmd-ruleset.xml</ruleSet>
    <outputDirectory>${basedir}/target/pmd</outputDirectory>
</configuration>
</plugin>
then i tried to integrate with Hudson, i configured this pmd.xml with hudson, its showing empty graph(see below)
could you tell me , why this flexpmd.html is generated with zero bytes and why i'm not able to see plotted graph
i tried the following version 1.0.RC4,1.0.RC5 and 1.1. but these versions also creating empty html report and some versions not running under hudson.
please provide the correct version and details to solve this issue.
please help in this issue, no help except this forum... i googled already did nt get any help.
correct me if i'm wrong.
thanks in advance.
Regards,
Mani

Hi,
What do you have in the console log?
Please, try with 1.1.
Xavier

Similar Messages

  • Pdf file created with zero bytes

    Hi Team,
               We have requirement of sending pdf file to webservice and after we will process that pdf file using Abbyy reader. We have issue in getting the pdf file content.
               In web service, pdf file content is received with header information and body content..while creating, pdf file is created with empty...We have used C# WCF webservice..For more information, kindly refer the C# forum code: https://social.msdn.microsoft.com/Forums/vstudio/en-US/b6a05717-2b17-4408-a606-ccbe104e132 4/need-webservice-code?forum=wcf

    In your browser make sure the default PDF Viewer is Adobe Reader

  • Deployed EJB.jar has some classes with zero bytes

    Has anyone hit a situation where Windows Jdev 902 puts class files into the ....EJB.jar file with zero bytes? In my case, the eight zero length classes are: seven My...Row.class files and the MyApplicationModule.class file. They all are in the /mypackage/common/ package and are in the ...classes/mypackage/common/ file folder.
    I can use PKZIP to delete the zero length classes and add them back into the .jar and everything works as expected.
    There are no error messages generated during the deployment that creates the .jar file that has the problem.

    This was posted on another thread by jdev team...
    We have been following this issue in support TAR 2274825.996. I sent some technical detail to the support rep on July 10, but it looks like that information never got added to the TAR. Well, FWIW, here it is:
    The user may be running out of open files. The
    stdio library which underlies Win32 programs (like the JVM) has a
    limit on the number of files that can be open concurrently. The
    limit is around 2000-2100 open files (I tested this on NT, 2000, and
    XP), and the limit is on a per-process basis. If the user is running
    into this limit because JDev has too many open files, then the utility
    methods we use to open JAR files or other streams could be receiving
    a java.io.FileNotFoundException exception with the message "Too many
    open files". To verify this: go to the Windows Task Manager, go to
    View | Select Columns... and be sure the "Handle Count" checkbox is
    checked. Does the jdev.exe process have a disproportionately higher
    number of handles than other processes? If the Handle Count is above
    2000 (approx), JDev might be running out of open files. (I say "might" because
    the Handle Count is for many different kinds of Win32 kernel objects,
    not just for file handles.) If the Handle Count is the problem, then
    it would explain the transient, nondeterministic behavior that the
    user is reporting. Because the Handle limit is per-process, it would
    explain why the user is able to use PKZIP or WinZip to repair the JAR
    file. Try closing editors before deploying and see if that helps.
    If the user confirms that the Handle Count is excessive, then we may
    have a Handle leak of some kind in the product that will need to be
    fixed.
    Also try running JDev using "jdev -hotspot" on the command line instead
    of just "jdev" and see if the behavior changes.
    Hope that helps. We are monitoring the TAR, but no one has been able to reproduce the problem you are reporting, even with the files attached to the TAR, and yours is the only report so far that we've received about this specific problem.
    I have added several more entities and views into app module. As I added each one, the list of zero byte jar classes would change, but always about 7-8 bad ones. Now that I am no longer adding new entities/views, the problem has become stable and repeatable. The same classes ALWAYS show up with zero bytes.
    I monitored jdevw.exe while doing the deploy, and the number of handles never went above 675. I ran with jdevw.exe -hotspot and the results were exactly the same.
    thanks,
    Roger

  • Zip file is created with 0 bytes

    In my below code, I am trying to zip a folder containing files and folders. But the zip file is getting created with 0 bytes.
    Could anyone please tell me what is wrong in my coding.
    private void jButton5ZipActionPerformed(java.awt.event.ActionEvent evt)
         File sgm=new File(jTextField1Text);//jTextField1Text is the filename I am selecting from the jTextField
         File tempXML=new File(sgm.getParent());
         String[] children = tempXML.list();
         for(int i=0;i<children.length;i++)
              File renamingFile=new File(tempXML,children);
              CreateZipFile czf=new CreateZipFile();
              try
                   czf.doCreate(renamingFile);
              catch (FileNotFoundException ex)
                   ex.printStackTrace();
              catch (IOException ex)
                   ex.printStackTrace();
    ==============================
    void doCreate(File dir) throws FileNotFoundException, IOException
         String[] filenames=new String[]{dir.toString()};
         byte[] buf = new byte[1024];
         try
              // Create the ZIP file
              String outFilename = "C:\\outfile.zip";
              ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));
              for (int i=0; i<filenames.length; i++)
                   FileInputStream in = new FileInputStream(filenames);
                   // Add ZIP entry to output stream.
                   out.putNextEntry(new ZipEntry(filenames[i]));
                   // Transfer bytes from the file to the ZIP file
                   int len;
                   while ((len = in.read(buf)) > 0)
                        out.write(buf, 0, len);                    
                   // Complete the entry
                   out.closeEntry();
                   in.close();
              // Complete the ZIP file
              out.close();
         catch (IOException e)
    Message was edited by:
    Simmy

    If I give File [] filenames =
    dir.listFiles();an error is thrown for the line
    out.putNextEntry(new
    ZipEntry(filenames)); as
    cannot find symbol
    symbol: constructor ZipEntry(java.io.File)
    location: class java.util.zip.ZipEntry
    There's no constructor that accepts a File as argument. There's only this
    ZipEntry(String name)
              Creates a new zip entry with the specified name.
    ZipEntry(ZipEntry e)
              Creates a new zip entry with fields taken from the specified zip entry.
    Check the API
    http://java.sun.com/j2se/1.4.2/docs/api/java/util/zip/ZipEntry.html
    regards,
    MAnuel Leiria                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to find report created with Report Painter?

    Hi!
    how to find report created with Report Painter?
    Here is the information that I have:
    Object filename, let's say <b>Y_P01_90000001</b>
    Report painter object <b>INV-102</b>
    The thing is that Library is unknown, thats why I can not find it via GR22...
    Any ideas?
    Will reward,
    Mindaugas

    Check in GRR3 under <b>INV</b> node...

  • Running reports created with Reports 9i in client-server configuration

    I need to have users run reports created with Oracle Reports 9i on workstations without any Oracle products installed on it, (in a client-server configuration as opposed to Web based) . I am looking for a step-by-step approach to accomplish this. I looked through the installation documents in OTN and I did not see one that addressed this.
    BTW, I saw an earlier post in this form which disscussed this,indirectly, for Reports 6i but I don't think these steps will work for 9i rpeorts
    ** Earlier post
    Question:
    I have an application in Oracle 8i, Forms 6i, Reports 6i. Now I want to make executable CD which will be installable in nature. I don't know how to make it or what tools to be used for this . Kindly help me out.
    Answer:
    You can write a .bat file for installation.....
    This file should do following things.
    1. Oracle8 Personal Setup
    Install only Database (no tools)
    2. Oracle Developer200 Setup
    Install only Forms Runtime
    Reports Runtime
    Graphics Runtime
    3. Use imp/exp to put the desired database...
    4. Copy exexutables in some directory and place shortcuts in programs and destkop
    5. Make new file-types in start->setting ->folder options-> file-types
    and specify that in which runtime-application you want to open your executables....
    Thanks in advance,
    Audrey Watson

    hi audrey,
    there is no client/server runtime available for reports9i. what
    you can do is to use the rwclient executable shipped with IDS
    to submit jobs to the reports server.
    there are plans to provide a stand alone thin client in the
    future but this is not available yet.
    regards,
    christian

  • Help! Files will send with zero bytes!

    I have been trying to send files (pdf mostly) through a dropbox server. Every time I try to, they send with zero bytes. Why is this? I have no idea on how to fix it!

    Hi,
    What do you have in the console log?
    Please, try with 1.1.
    Xavier

  • Outbound created with zero value against STO PO

    Hi experts,
    I have created an outbound delivery (VL10D) against STO PO. OBD has been created with zero value. in PGI correct accounting entry is getting generated. However, material price is maintained in STO PO.
    Please highlight the gaps, due to which amount in OBD is coming as zero. Subsequently, in billing document zero value is appearing.
    regards

    probably something wrong in your price schema if you want copy the price from the STO, or you just missed to maintain the price conditions if you use special intercompany prices.
    For details see OSS Note 338922 - Analysis note for cross-company transactions (delivery)
    look at point 6 in this note.

  • Intercompany Deliveries were created with zero quantity, causing an idoc failure and the remaining delivery too

    Intercompany Deliveries were created with zero quantity, causing an idoc failure and the remaining delivery too
    a. User trying to create delivery but stock not available.
    b. When stock is not there it should show an error message in SAP screen but its not -  like stock not available etc
    c. Fedex gets delivery notice for the delivery; if its more than zero it will create delivery otherwise less than zero it won’t accept.
    d. But issue its creating even its less than zero
    Is there anyone who can help me out...

    When one is created with zero quantities it starts blocking our deliveries from getting through to fedex because deliveries will in doubt have been blocked at fedex. As we process our orders in morning and if there is an STO blocking orders, it will be in afternoon .
    Any suggestions !!!

  • Can report created with BIP be called from forms?

    Hello.
    We have many forms.
    And now we ned complex reports. With BIP we can create them.
    But is there a way to call them from forms, like reports created with Report builder?
    Can we transfer parameters from forms to BIP reports, so data can be queried on that form parameters?
    Thanks.

    Hi,
    yes, there are several ways you can do this.
    DejanH, we discussed at the BI Publisher Forum, here just for the others.
    The document you're looking for is here: http://www.oracle.com/technology/products/xml-publisher/docs/Forms_BIP_v21.pdf
    or here
    http://www.oracle.com/global/de/community/forms/documents/Forms_BIP_v21.pdf
    Jan,
    it's a new version of the mentioned paper at the OTN-Forms-Side and the old one was removed.
    The document describes the way, how to integrate BI Publisher via Web Services into Forms. There are other ways available like
    - using HTTP calls via show_document
    - using the JavaAPI of BI Publisher and import the needed classes to Forms
    Regards
    Rainer

  • I had backup my iphone .. and it started but later it showed no space .. so i had gone to preference device and deleted the backup.. but still my iphone shows the availabilty as zero..plz help

    i had backup my iphone .. and it started but later it showed no space.. so i had to stop the backup..and had gone to preference>device and deleted the backup.. but still my iphone shows the availabilty as zero..plz help.. how to get the available space that was before..

    rabidrabbit wrote:
    Can I back up my iPhone 4S to my ipad 3 (64 gb)?
    no
    rabidrabbit wrote:
    However, now I don't have enough space in iCloud to backup either device. Why not?
    iCloud only give so much space for free storage, then if you exceed the limit of 5gb you have to pay for additional storage.

  • Can't create repository - zero byte log file?

    Hello all,
    I'm getting the 'CDR-21244 : This process has been aborted' message when creating the repository in a 10g database using Designer 10g ( 9.0.4.5). I get identical results with Designer 9i (9.0.2.7). I've checked the installation log file, according to the documentation, and it contains zero bytes. The IMP.EXE window doesn't say anything unusual, it simply reports a couple of possible character conversions and then terminates before doing anything.
    None of the suggested solutions to this error from the Repository Installation Guide seem to apply to me:
    * I have all the proper permissions and settings according to the 'check requirements' dialog
    * I don't have anything in my log file
    * The IMP.EXE utility is installed
    * TNSNAMES.ORA seems fine since I can connect to this database using TOAD
    Has anyone else seen this?
    I'm using Windows XP, by the way.
    Thanks.

    Hi,
    Can you please give us the following information :
    1. Both Designer 9.0.4.5 and 10g Database are installed in same machine or different machines.
    2. Version of Export/Import utilities used by Designer
    3. Value in the registry variable 'REPOS61'
    Steps to get the registry value
    a. Invoke and connect to 'Repository Administration Utility'.
    b. Invoke 'Check Requirements' utility.
    c. Expand 'Parameter Settings' node and '[HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\REPOS61\]' node.
    d. Note the values for 'EXECUTE_EXPORT', 'EXECUTE_IMPORT', 'EXECUTE_PLUS_RAU' variables.
    4. Version of Database.
    Regards,
    Wilson.

  • Oder created with zero quantity

    Hello,
    Order was created with several line items in which one line item has zero quantity the system still allowed to save the order.
    Can you help me to investigate why this has happened.
    Thanks
    Vinay Sapare

    Hi Vinay Sapare 29, 
    You have to assign the *incompletion log* to the sales document hear
    Go To *SPRO-IMG-Sales& Distribution-Basic functions-Log of Incomplete Items-define incompletion procedures*
    -- Assign the Incompletion procedures to the Sales document header & save it
    --Go to T.Code VOV8 & select your sales document type & check mark the incomplete message.
    --Raise the sale order in VA01 & check  the output if any incomplete data is maintained the system throws an error message & it will not allow to save the document.
    Let me know if your problem is solved
    Regards
    Pradeep

  • Reports created with CR prior version 9

    Dear all,
    i am just a "user" of an application in which the reports had being created with CR prior version 9. These reports need to be modified. But if i do with CR XI i will get the information "does not support reports prior version XI. and the reports in my application are not shown anymore and error  2147206429 message "Invalid TLV Record" is shown. Kindly i would appriciate your support very much
    Peter

    Hi Brian,
    could be the reason, sounds good. I can remember we had this problem (or similar) about 2 years ago, by changing or adding a small file it was solved. However i guess its worth to follow up, here are my questions
    1. where do i get the print engine (or driver) for CR XI ?
    2. is it possible to have two print engines installed at the same time and location? as most of the reports do not need to be changed and can still work with the old one.
    3 how is a print engine named (file type or name) so i could locate the old one and will know where i do have to place the new one. Can anyone forward me the print engine as a attached file on email? Sorry guys as mentioned i am just a user who try to solve a problem and over here (Thailand, Pattaya) i havent found a specialist which is for sure be able to solve it in less then an hour. But i highly appriciate that all of you trying to help and support me. Many thanks to all at this point.

  • Process will not be created with zero standard prices in material master

    Hi,
    I have two type of material;
    1.     In process material say A1
    2.     Finished Goods say B1
    Both materials price control are standard price.  I do not run costing. So , after creation of material master , standerd price has to update through MR21 in the account1 tab before start production .
    Suppose, if I forget to update standard price in material master and prepared process order, it will carry zero value of production cost.
    Hence, I want to restrict the creation of process order with zero standard prices in the material master.
    In order words, as long as standard price will not be updated after creation of the material master, user will not be allowed to create process order, if wrongly try, system will give message u201Cwith zero standard price creation of process order will not be allowedu201D.
    Please let me know either standard configuration or name of User exit or Badi.
    Regards,
    Amit

    Hi,
    You need to use BADI: workorder_update.
    Method: At release.
    check MBEW-STPRS field in the code ..and flag error and reject error if STPRS = 0.
    Regards,
    Santosh Sarda

Maybe you are looking for