Thursday, 7 June 2007
|
| warning: [LocalTxConnectionManager$LocalConnectionEventListener]
prepare called on a local tx. Stefan Puiu 07:32:34 |
| | Hello, I'm running JBoss 3.0.6 compiled and run on a 1.4.1 Sun JDK on a Mandrake Linux 9.0 box. I'm running some simple database tests written by a co-worker based on the JBossCMP "Crime portal" example. There are three ant targets (three EJBTestCase sub-classes run one after another): db-setup, db-test and db-teardown. When running db-teardown, which basically cleans up the database and saves the old entries in an "archive" database which uses the same entities as the first with different deployment descriptors and a different data source. It uses a session bean to save everything in the "archive" db and then clean up. Trouble is, we get these warnings every time we run db-teardown:
12:47:57,100 WARN [LocalTxConnectionManager$LocalConnectionEventListener] prepare called on a local tx. You are not getting the semantics you expect! 12:47:57,101 WARN [LocalTxConnectionManager$LocalConnectionEventListener] prepare called on a local tx. You are not getting the semantics you expect!
The warnings were showing up on JBoss 3.0.4, 3.0.5 and are still there in 3.0.7 (I tried it this morning). Does anybody know what might be the cause of this? It's not an error, the app works, but the messages are annoying and it bugs me not to know what is the thing that causes them.
------------------------------------------------------- Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara The only event dedicated to issues related to Linux enterprise solutions www.enterpriselinuxforum.com
|
| | 5 answers | Add comment |
Sunday, 3 June 2007
|
| How to Convert ".doc" to ".pdf" Mallela Siva Subrahmanyam 10:45:47 |
| | Hi,
I am using the PDFWriter and Document classes of iText.jar file and trying to convert a ".doc" file to ".pdf" format. I am able to fetch the data and put it into a pdf file. But the ".doc" data being read contains some formatting information that is being appended to the content, in the beginnning and at the end. How to get rid of that code content in the PDF file through java code? I am trying this out as a stand alone API, which takes the "Document File Name" as command line argument.
I could successfully convert a ".txt" file into ".pdf".
Also, can I insert a GIF into this PDF(just created) in a page that contains a particular text String ?
Please send me the code piece, as I badly need that.
Attaching a copy of the code that I am currently using. Regards, Subbu
__________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com
// This Java Class is to Convert a specified Document into a PDF Format // This Takes a file as an input and Generates a PDF from this. // Developed by S Subrahmanyam Mallela on 24/3/2003 for Sirvisetti Global Services
import java.util.*; import java.io.*; import java.sql.*;
// Custom Packages itext-1.0.0.jar import com.lowagie.text.*; import com.lowagie.text.pdf.*;
public class PdfGenerator {
public PdfGenerator(String str)
{ String img_path = ""; String fax_no = ""; String tmpStr=""; String file_nm = ""; String fname = ""; String lname = "";
DocumentException ex = null; Document doc = new Document(); PdfWriter docWriter = null; RandomAccessFile raf = null;
try {
raf = new RandomAccessFile(str,"r");
OutputStream os= new FileOutputStream("file_nm.pdf"); docWriter = PdfWriter.getInstance(doc,os); docWriter.flush();
// Option to Hide the ToolBar and MenuBar // docWriter.setViewerPreferences(PdfWriter.HideMenubar | PdfWriter.HideToolbar);
// This piece of Code is for Embedding a GIF or JPG into the PDF at the Desired Position Watermark watermark = new Watermark(Image.getInstance("img_path.gif"), 400, 90); doc.add(watermark); raf.close(); doc.open(); tmpStr = ""; raf = new RandomAccessFile(str,"r"); while((tmpStr=raf.readLine())!= null){ doc.add(new Paragraph(tmpStr)); } raf.close();
}catch (DocumentException dex){ dex.printStackTrace(); System.out.println(this.getClass().getName()+ " caught an exception: "); } catch (IOException ioe){ System.out.println(" caught an IO exception: "+ioe); } catch(Exception ioe){ ioe.printStackTrace(); System.out.println("Caught in Submethbod "+ioe); } finally { if (doc != null){ doc.close(); } if (docWriter != null){ docWriter.close(); } }
}
// Main Method to create instance and invoke the Generator Method
public static void main(String args[]){ PdfGenerator sub = new PdfGenerator(args[0]); } } |
| | 1 answer | Add comment |
Wednesday, 30 May 2007
|
| Library supporting variably determinate time Donald McLean 21:41:49 |
| | I'm working on an application that will be storing family history information.
Some of this data is precise and well known (my birthday), and some is not. For example, a precise month and day may be known, but not necessarily the precise year.
Is anyone aware of any library or libraries that support the encoding of temporal information with different levels of determinateness?
Is anyone aware of any research into the representation and/or encoding of such information?
Thank you,
Donald McLean [speaking strictly for myself]
=================================== This list is hosted by DevelopMentor® http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com
|
| | 6 answers | Add comment |
Monday, 28 May 2007
|
| Printing PDF from HTML. KA Jaganatha 12:09:16 |
| | _______________________________________________ iText-questions mailing list iText-questions@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/itext-questions
|
| | Add comment |
Friday, 25 May 2007
|
| Is JDK SSL known to be leaking on closing the connections ? Sergey Beryozkin 22:07:19 |
| | Hi
has someone seen the default SSL client implementation leaking ? I'm witnessing a leak on every SSL-based GET request...I've searched the arhives a bit but haven't found any pointers except for the recommendation to switch to the HTTPClient library... The profiler I'm using (NetBeans one) shows consistent leak coming from com.sun.net.ssl.internal.* classes. I'm closing the input stream and then calling connection.disconnect on every request, originally I did not do disconnect() as I was using Keep-Alive, but then, just for tests, I removed a Keep-Alive property and started calling disconnect() explicitly, hioping it will give my progarmm some memory back Apologies if it's not considered a topic advanced enough Cheers, Sergey
=================================== This list is hosted by DevelopMentor http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com
|
| | 1 answer | Add comment |
Monday, 21 May 2007
|
| Can I have more control of Runtime.process? Carfield Yim 19:05:41 |
| | I am writing a bloomberg connector to get information from bloomberg API. However bloomberg don't come with a java API so for now I've developed a C EXE application and using java Runtime process to feed input using stdin and get output from stdout.
Just wonder can I know more information about the C EXE application like if the process crashed or not so that I can create a new process for any exception happened. And I found that this is possible to wait for a long time to get the informatin back from the stdout of the C process. Is it possible to have more control about that?
The application will probably run at Windows platform, so I just like to know the information about windows platform, please post if you know any information about this area.
=================================== This list is hosted by DevelopMentor® http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com
|
| | 5 answers | Add comment |
|
| Can I design a system wide deadlock detection using new Thread.state API Carfield Yim 14:08:55 |
| | Is it possible to create a thread when the system startup, which can monitor all thread, may be using similar approach with http://www.exampledepot.com/egs/java.lang/ListThreads.html to get all thread in the system.
Then detect if one thread idle for more than several second (may be 15s) , if it still in wait state, using Thread.state API. We try to interrupt it. However, is it possible to get the thread ownership to kill it? And, do you think this is a reasonable approach to recover from deadlock?
=================================== This list is hosted by DevelopMentor® http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com
|
| | 38 answers | Add comment |
Thursday, 17 May 2007
|
| Javadoc Comment Generator Keith Kirkhope 14:50:03 |
| | Hello all> I would like to work on the Javadoc comment generation as detailed in> issue #11950 and others. Can anyone point me in the correct direction to> guides/code to help me in my quest.> Thanks> Keith |
| | 1 answer | Add comment |
|
| [JBoss Portal] - Re: Forum portlet error Unibrew 06:16:08 |
| | Hi
From the log I see you are using Mysql 4.1 and JBossAS 4.0.3 SP1 but which JBPortal and JBForums versions do you deploy?
Cheers --------------------------- Ryszard Kozmik JBoss Forums Lead
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3939484#3939484
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3939484
------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
|
| | 17 answers | Add comment |
Tuesday, 15 May 2007
|
| One question Alois Lehnertz 03:50:13 |
| | Hi,
I have a question about the itext. Is it possible to change the Acrobat Version number and the Fast Web view = yes on the same time? Best regards,
Alois Lehnertz alois.lehnertz@ic.lu
------------------------------------------------------- SF.Net email is sponsored by: Tell us your software development plans! Take this survey and enter to win a one-year sub to SourceForge.net Plus IDC's 2005 look-ahead and a copy of this survey Click here to start! http://www.idcswdc.com/cgi-bin/survey?id=105hix
|
| | 2 answer | Add comment |
Monday, 14 May 2007
|
| Access to windows mounted drive Juan Alonso 18:09:12 |
| | Hi,
Running File.listRoots() in windows doesn't list all my mounted drives, it lists only the mounted drives I`m already authenticated.
My needs are to read a file in a remote machine with a shared folder:
1. If I access the file from FileInputStream("G:\\test.txt"); then I get a path no identify error. 2. If I access the file from FileInputStream("\\\\180.105.3.18\folder1\test.txt"); then I get an security error.
Scenario: ServerA shares a folder (centralized repository) ClientA uploads a file to the shared folder. ServerB reads the file uploaded. Any thoughts, how can I make this work??
thx, Juan.
=================================== This list is hosted by DevelopMentor http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com
|
| | 1 answer | Add comment |
Tuesday, 8 May 2007
|
| Re: Spellchecker Brian Smith 09:53:55 |
| | John Richardson wrote:> 2) I could submit the changes as a patch, but the changes would be> rather large (or someone could pick up the source from> http://www.mv.com/ipusers/zealand/java/spell/).
John,
I downloaded this version and it seems to work. At least, it seems to correctly identify mispelled words. I am a little confused about whether this is the latest version or if the latest version is in NetBeans CVS? I couldn't get the CVS version to work.
Anyway, since I am a horrible speller, I created a quick-and-crude hack to add support for my XML files. In doing so I managed to remove the explicit dependencies on JavaTokenContext, HTMLTokenContext, etc. But, the added functionality needs to be rewritten since I did it in a very inefficient way, but I think it can be cleaned up to still not require those source-code level dependencies on the Java/HTML modules.
It also would be better to offer the user more customization like:
For HTML: Which element/attributes types should be spell checked? For example, <code> and <style> probably shouldn't be spell checked. An option for disabling checking of comments would also be nice.
For XML/SGML in general: All of the above, but on a DTD/schema-by-DTD/schema basis. For example, DocBook documents will have a set of non-code element types that is completely different than SVG, etc.
For Java: What kinds of comments should be checked (of JavaDoc, inline, block); I think that I would only want JavaDoc to be checked in my case. Also, I think that there should be an option to disable the spell-checking of strings, and/or provide a way of skipping strings that are marked NO18N.
For some of these customizations it might be necessary to have some simple spell-checker API/SPI for complex cases (e.g. //I18N, JavaDoc vs. normal block comments, distinguising elements and attributes in XML/HTML/SGML).
Thanks, Brian
|
| | 20 answers | Add comment |
Friday, 4 May 2007
|
| Java enum riddle Sordini Emmanuele 19:08:58 |
| | Hello list,
IMHO, Java enums are indeed more powerful than their counterparts in other languages (namely, C++), but also trickier.
Here is my question: can a Java enum implement an interface with different specialization for each enum entry? Let's consider the following example:
public Interface Foo
{
public void nop();
}
Here comes the implementing enum:
public enum Bar implements Foo
{
FIRST
{
public void nop()
{
// Do something
}
},
SECOND
{
public void nop()
{
// Do somethin' DIFFERENT
}
}
}
[...]
Somewhere else in the calling code:
List<Bar> lb = // Build the list somehow
for (Bar b: lb)
{
// Here, I want the specialized version to be called, i.e.
// FIRST.nop(), then SECOND.nop()...
//
b.nop();
}
Looks like the Java compiler (J2SE 5.0, Win32) sometimes will accept this coding style, sometimes won't. A quick fix to the compiler's complaints was adding an empty implementation for the nop() method at Foo class level alongside the specialized enum entry version, which is the one actually called at runtime. For the record, I am using Netbeans 5.5 IDE.
This behavior kind of puzzles me: what am I missing and/or doing wrong?
Thanks in advance,
Emmanuele Sordini.
=================================== This list is hosted by DevelopMentor http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com
|
| | 5 answers | Add comment |
Thursday, 3 May 2007
|
| WeakReference vs SoftReference Sergey Beryozkin 14:02:40 |
| | Hi
I'm having a discussion with my colleagues on what kind of References should we use in order to avoid memory leaks. there're lots of opinions on this issue and it all depends on the actual scenario.
My own preference is to use WeakReferences. We have some internal maps whose values need a periodic cleanup. These maps can be used quite frequently, with values being added there, removed, queried. My understanding, from what I've heard and read before, is that using SoftReferences in this scenario to wrap the values can really lead to the memory exception if the heap limit is reached, a request to add more objects into this internal map is pending and the GC hasn't had a chance to clear softly referenced values yet. In fact, I'm not even sure when would I use SoftReferences at all. Why wait until the OutOfMemory exception is about to be thrown ? The more memory the application consumes the less responsive it becomes. Perhaps only when dealing with loading heavy images, etc...
Any comments will be appreciated
Thanks, Sergey
=================================== This list is hosted by DevelopMentor http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com
|
| | 15 answers | Add comment |
Wednesday, 2 May 2007
|
| PHP & Apache through proxy Daniel B I 14:59:42 |
| | Hi! Any idea how to send a www header through a proxy? Is there a proxy www header?
thanx, Daniel BI
|
| | 1 answer | Add comment |
|
| PHP + javascript Jim Ide 08:11:19 |
| | Hi -
I want to use javascript to validate some fields on a form. The javascript code will take the value the user typed into the form and search for it in an array. If the value is found in the array, then the value is ok, otherwise an alert() message will be displayed.
The amount of data in the array is quite large.
The data in the array rarely changes.
I want to avoid transferring the array from the web server to the client's web browser every time the user loads the form. I put the array in a file called "myarray.js":
$ cat myarray.js var MyArray = new Array( "value 1", "value 2", <many lines snipped> "value 789", "value 790" ); $
Then, I put the following line in the php script that generates the form:
<script language="JavaScript" src="myarray.js"></script>
By examining Apache's access_log, I see that "myarray.js" is transferred to the user's web browser once when the form is first displayed, and for subsequent uses of the form, the web browser uses the myarray.js that is cached, so that the array does not have to be transferred from the web server to the client computer every time the user uses the form.
So, if the data in the array contained in myarray.js _does_ need to be changed, I need some way of signaling the user's web browser that it needs to transfer the updated myarray.js file from the web server. How do I do this?
The only way I know to do this is to instruct the users to clear their web browser cache, which will force the web browser to transfer the updated myarray.js from the web server to the web browser.
Is there another way? Is there some kind of "expire" mechanism that will tell the web browser that it needs to get the updated myarray.js file?
Thanks - Jim Ide
|
| | 2 answer | Add comment |
Tuesday, 1 May 2007
|
| nesting php Brendan Caulfield 23:41:06 |
| | Hello everyone!
I am trying to pass a variable in a url and can't seem to do it. The problem is, the url is already being determined by a php "if" statement. So, when I get to the part where I try to append the url I get parse errors. What I would ideally like to do is generate the url using php and append the url with a variable, also using php. The variable is a username, therefore i need to use (urlencode()). Any ideas.
Thanks,
Brendan
_________________________________________________________________ Start your day everyday with fellow Sigma Nu brothers. Visit http://www.SigmaNu.com, Sigma Nu's exclusive private label start page, where you'll get Fraternity news, New York Times news, custom stock portfolios, up-to-the-minute sports scores, current weather conditions and five-day forecasts, online shopping with brand name stores, web-based Sigma Nu e-mail and much more. This is a free service brought to you by Sigma Nu.
|
| | 1 answer | Add comment |
|
| Problem with new Syntax Highlighting Module Sebastian Hofmann 08:31:37 |
| | -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Hi,
I am about to write a module for some syntax highlighting. I followed the instructions in the "Manifest-Support" tutorial.
I am able to install the new module, create new file from template and manage properties of the module using the options dialog.
Problem is, that the syntax in the editor will not be highlighted. Another problem - perhaps the same? - is that a NullPointerException occurs when clicking in the preview example in the option window. Log and Stacktrace see below. In preview example syntax is not highlighted, too.
Has anybody an idea? Thanks for help... Regards Sebastian
- ------------------------------------------------------------------------------->Log Session: Sunday, August 6, 2006 2:44:21 PM CEST>System Info: Product Version = NetBeans Platform Dev (Build 200601251500) Operating System = Linux version 2.6.16.1.02 running on i386 Java; VM; Vendor; Home = 1.5.0_06; Java HotSpot(TM) Client VM 1.5.0_06-b05; Sun Microsystems Inc.; /opt/apps/jdk1.5.0_06/jre System Locale; Encoding = de_DE; UTF-8 Home Dir.; Current Dir. = /home/shofmann; /home/shofmann/projekte/velocity-support Installation; User Dir. = /opt/apps/netbeans-5.0/enterprise2:/opt/apps/netbeans-5.0/harness:/opt/apps/netbeans-5.0/ide6:/opt/apps/netbeans-5.0/nb5.0:/opt/apps/netbeans-5.0/platform6:/home/shofmann/projekte/velocity-support/build/cluster:/opt/apps/netbeans-5.0/platform6; /home/shofmann/projekte/velocity-support/build/testuserdir Boot & Ext. Classpath = /opt/apps/jdk1.5.0_06/jre/lib/rt.jar:/opt/apps/jdk1.5.0_06/jre/lib/i18n.jar:/opt/apps/jdk1.5.0_06/jre/lib/sunrsasign.jar:/opt/apps/jdk1.5.0_06/jre/lib/jsse.jar:/opt/apps/jdk1.5.0_06/jre/lib/jce.jar:/opt/apps/jdk1.5.0_06/jre/lib/charsets.jar:/opt/apps/jdk1.5.0_06/jre/classes:/opt/apps/jdk1.5.0_06/jre/lib/ext/sunjce_provider.jar:/opt/apps/jdk1.5.0_06/jre/lib/ext/localedata.jar:/opt/apps/jdk1.5.0_06/jre/lib/ext/dnsns.jar:/opt/apps/jdk1.5.0_06/jre/lib/ext/sunpkcs11.jar Application Classpath = /opt/apps/netbeans-5.0/platform6/lib/boot.jar:/opt/apps/netbeans-5.0/platform6/lib/org-openide-modules.jar:/opt/apps/netbeans-5.0/platform6/lib/org-openide-util.jar:/opt/apps/jdk1.5.0_06/lib/dt.jar:/opt/apps/jdk1.5.0_06/lib/tools.jar Startup Classpath = /opt/apps/netbeans-5.0/platform6/core/core.jar:/opt/apps/netbeans-5.0/platform6/core/org-openide-filesystems.jar:/opt/apps/netbeans-5.0/ide6/core/org-netbeans-modules-utilities-cli.jar:/opt/apps/netbeans-5.0/nb5.0/core/org-netbeans-upgrader.jar:/opt/apps/netbeans-5.0/nb5.0/core/locale/core_nb.jar - ------------------------------------------------------------------------------- Updating module: JavaScript Editor Turning on modules: org.openide.util [6.8.1 200601251500] org.openide.modules [6.5.1 200601251500] org.openide.awt [6.7.1 200601251500] org.openide.filesystems [6.4.1 200601251500] org.openide.dialogs [6.5.1 200601251500] org.openide.nodes [6.7.1 200601251500] org.openide.windows [6.5.1 200601251500] org.openide.options [6.4.1 200601251500] org.openide.text [6.9.1 200601251500] org.openide.explorer [6.5.1 1 200601251500] org.openide.actions [6.5.1 200601251500] org.openide.loaders [5.9.1 200601251500] org.netbeans.bootstrap/1 [2.3.1 200601251500] org.netbeans.api.progress/1 [1.5.1 200601251500] org.netbeans.core.startup/1 [1.5.1 200601251500] org.netbeans.swing.plaf [1.5.1 200601251500] org.netbeans.core/2 [3.2.1.1 200601251500] org.netbeans.modules.autoupdate/1 [2.16.1 200601251500] org.netbeans.api.xml/1 [1.12.1 200601251500] org.netbeans.spi.navigator/1 [1.2.1 200601251500] org.openide.io [1.9.1 200601251500] org.netbeans.core.output2/1 [1.7.1.1 1 200601251500] org.netbeans.modules.xml.core/2 [1.11.1.4 4 200601251500] org.netbeans.libs.xerces/1 [1.8.1 2.6.2 200601251500] org.netbeans.modules.xml.tax/2 [1.11.1.4.4 4 200601251500] org.netbeans.modules.settings/1 [1.10.1 200601251500] org.netbeans.modules.javahelp/1 [2.8.1 200601251500] org.netbeans.tasklistapi/1 [1.20.1.7 7 200601251500] org.netbeans.modules.tasklist.core/2 [1.37.1.16.7 16 200601251500] org.netbeans.modules.queries/1 [1.7.1 200601251500] org.netbeans.modules.suggestions_framework/2 [1.15.1.9.16.7 9 200601251500] org.jdesktop.layout/1 [1.3.1 1.0 200601251500] org.openide.execution [1.8.1 200601251500] org.netbeans.libs.formlayout/1 [1.2.1 1 200601251500] org.netbeans.modules.options.api/0 [1.3.1 200601251500] org.netbeans.core.execution/1 [1.9.1 200601251500] org.apache.tools.ant.module/3 [3.24.1.1 1 200601251500] org.netbeans.modules.apisupport.ant [2.30.2 060322] org.netbeans.modules.editor.util/1 [1.8.1 200601251500] org.netbeans.modules.editor.mimelookup/1 [1.3.1 200601251500] org.netbeans.modules.editor.fold/1 [1.5.1 200601251500] org.netbeans.modules.editor.lib/1 [1.9.1.1 1 200601251500] org.netbeans.modules.ant.browsetask [1.11.1 200601251500] org.netbeans.api.java/1 [1.10.1 200601251500] org.netbeans.modules.projectapi/1 [1.9.1 200601251500] org.netbeans.modules.projectuiapi/1 [1.13.1.5 5 200601251500] org.netbeans.modules.project.ant/1 [1.12.1 200601251500] org.netbeans.spi.viewmodel/2 [1.9.1 200601251500] org.openide.src [1.8.1 200601251500] org.openidex.util/3 [3.9.1 200601251500] org.netbeans.modules.java.platform/1 [1.7.1 200601251500] org.netbeans.modules.favorites/1 [1.11.1 200601251500] org.netbeans.core.ui/1 [1.9.1 200601251500] org.netbeans.modules.xml.catalog/2 [1.10.1.4.4 4 200601251500] org.netbeans.modules.masterfs/1 [1.7.1 200601251500] org.netbeans.modules.projectui [1.7.1.5 200601251500] javax.jmi.reflect/1 [1.7.1 200601251500] org.netbeans.jmi.javamodel/2 [1.21.1 200601251500] org.netbeans.modules.editor.errorstripe.api/1 [2.2.1.1 1 200601251500] org.netbeans.api.mdr/1 [1.4.1 200601251500] javax.jmi.model/1 [1.7.1 200601251500] org.netbeans.modules.jmiutils/1 [1.5.1.2 2 200601251500] org.netbeans.modules.mdr/1 [1.5.1.2.2 2 200601251500] org.netbeans.modules.classfile/1 [1.18.1 200601251500] org.netbeans.modules.javacore/1 [1.18.1.2.2 200601251500] org.netbeans.modules.java/1 [1.25.1.2.2.2 2 200601251500] org.netbeans.modules.project.libraries/1 [1.13.1 200601251500] org.netbeans.modules.java.project/1 [1.8.1 200601251500] org.netbeans.api.debugger/1 [1.7.1 200601251500] org.netbeans.api.debugger.jpda/2 [2.4.1 200601251500] org.netbeans.modules.debugger.jpda/2 [1.16.1 200601251500] org.netbeans.spi.debugger.ui/1 [2.8.1 200601251500] org.netbeans.modules.debugger.jpda.ui/1 [1.5.1 200601251500] org.netbeans.modules.debugger.jpda.ant [1.7.1 200601251500] org.netbeans.core.multiview/1 [1.8.1 200601251500] org.netbeans.modules.junit/2 [2.19.1 200601251500] org.netbeans.modules.apisupport.project [1.11.1.5.4 5 200601251500] org.netbeans.modules.ant.freeform/1 [1.10.1 200601251500] org.netbeans.modules.java.freeform/1 [1.5.1 200601251500] org.netbeans.api.web.webmodule [1.6.1 200601251500] org.netbeans.modules.web.freeform [1.4.1 200601251500] org.netbeans.modules.j2ee.platform/1 [1.3.1 200601251500] org.netbeans.modules.editor.hints/1 [1.9.1.1 1 200601251500] org.netbeans.modules.editor.settings/1 [1.4.1 200601251500] org.netbeans.modules.editor/3 [1.26.1.1 200601251500] org.netbeans.modules.editor.completion/1 [1.6.1 200601251500] org.netbeans.modules.java.editor.lib/1 [1.4.1 200601251500] org.netbeans.modules.editor.codetemplates/1 [1.2.1 200601251500] org.netbeans.modules.java.editor/1 [1.4.1 200601251500] org.netbeans.modules.java.hints/1 [1.10.1.1 1 200601251500] org.netbeans.libs.commons_logging/1 [1.3.1 1.0.4 200601251500] org.netbeans.modules.servletapi24/1 [2.6.1 2.4 200601251500] org.netbeans.modules.web.jspparser/2 [2.5.1 200601251500] org.netbeans.modules.websvc.clientapi [1.4.1 200601251500] org.netbeans.modules.j2eeapis/1 [1.6.1 200601251500] org.netbeans.modules.schema2beans/1 [1.14.1 200601251500] org.netbeans.modules.j2eeserver/4 [1.13.1 200601251500] org.netbeans.modules.j2ee.dd/1 [1.7.1.2 2 200601251500] org.netbeans.modules.j2ee.dd.webservice [1.3.1 200601251500] org.netbeans.modules.websvc.websvcapi [1.4.1 200601251500] org.netbeans.modules.j2ee.api.ejbmodule [1.4.1 200601251500] org.netbeans.modules.web.project [1.4.1 200601251500] org.netbeans.modules.web.jstl11/1 [2.6.1 1.1.2 200601251500] org.netbeans.modules.jmxri/1 [1.2.1 1 200601251500] org.netbeans.modules.j2ee.weblogic9/1 [1.4.1 200601251500] org.netbeans.modules.db/0 [1.16.1.3 3 200601251500] org.netbeans.modules.j2ee.sun.dd/1 [1.5.1 200601251500] org.netbeans.modules.j2ee.sun.appsrv/1 [1.3.1 1 200601251500] org.netbeans.modules.dbschema/1 [1.7.1.3.3 3 200601251500] org.netbeans.modules.j2ee.sun.ddui/1 [1.6.1 1 200601251500] org.netbeans.modules.javadoc/1 [1.18.1 200601251500] org.netbeans.modules.editor.plain.lib/1 [1.3.1 200601251500] org.netbeans.modules.html.editor.lib/1 [1.4.1 200601251500] org.netbeans.modules.html.editor/1 [1.4.1 200601251500] org.netbeans.modules.j2ee.debug/1 [1.3.1 200601251500] org.netbeans.modules.j2ee.common/1 [1.4.1 200601251500] org.netbeans.modules.websvc.registry [1.3.1 200601251500] org.netbeans.modules.websvc.core [1.5.1.1.4 1 200601251500] org.netbeans.modules.refactoring/1 [1.15.1.3.2 3 200601251500] org.netbeans.spi.palette/0 [1.5.1 200601251500] org.netbeans.modules.xml.multiview/1 [1.4.1.2 2 200601251500] org.netbeans.modules.editor.structure/1 [1.11.1.1 1 200601251500] org.netbeans.modules.xml.text/2 [1.11.1.4.4 4 200601251500] org.netbeans.modules.web.core.syntax/1 [1.22.1 200601251500] org.netbeans.modules.web.core/1 [1.25.1.42.2 42 200601251500] org.netbeans.modules.j2ee.refactoring/1 [1.5.1.42.1 200601251500] org.netbeans.modules.tomcat5/1 [1.7.1 200601251500] org.netbeans.libs.jsch/1 [1.4.1 0.1.24 200601251500] org.netbeans.modules.usersguide/1 [1.19.1 200601251500] org.netbeans.modules.diff/1 [1.15.1.42 42 200601251500] org.netbeans.modules.image/1 [1.17.1 200601251500] org.netbeans.modules.servletapi/1 [1.9.1 200601251500] org.netbeans.modules.httpserver/2 [2.5.1.42 42 200601251500] org.netbeans.modules.xsl/1 [1.11.1.4 200601251500] org.netbeans.modules.j2ee.ant [1.7.1 200601251500] org.netbeans.modules.ant.debugger/1 [1.7.1.1 200601251500] org.netbeans.modules.apisupport.refactoring [1.2.1.5 200601251500] org.netbeans.modules.clazz/1 [1.19.1 200601251500] org.netbeans.modules.updatecenters/1 [1.6.1 200601251500] org.netbeans.modules.j2ee.blueprints/1 [1.9.1 200601251500] org.netbeans.modules.web.debug/1 [2.8.1 200601251500] org.netbeans.modules.editor.bookmarks/1 [1.3.1 200601251500] org.netbeans.modules.utilities/1 [1.21.1 200601251500] org.netbeans.modules.utilities.project/1 [1.5.1 200601251500] org.netbeans.modules.properties/1 [1.17.1 200601251500] org.netbeans.modules.properties.syntax/1 [1.17.1 200601251500] org.netbeans.modules.defaults/1 [1.2.1 200601251500] org.netbeans.modules.beans/1 [1.17.1 200601251500] org.netbeans.modules.j2ee.ejbcore [1.4.1 200601251500] org.netbeans.modules.j2ee.ejbjarproject [1.4.1 200601251500] org.netbeans.modules.j2ee.earproject [1.5.1 200601251500] org.netbeans.modules.editor.settings.storage/1 [1.4.1 200601251500] org.netbeans.modules.options.editor/1 [1.2.1 200601251500] org.netbeans.modules.derby [1.3.1 200601251500] org.netbeans.modules.j2ee.sun.appsrv81/1 [1.1.1.1.1 1 200601251500] org.netbeans.modules.jad [1.0 051008] org.netbeans.modules.db.core [1.2.1 200601251500] org.netbeans.modules.db.sql.editor [1.2.1.3 200601251500] com.liguorien.jseditor [0.2 060212] org.netbeans.lib.cvsclient/1 [1.14.1 200601251500] org.netbeans.modules.html/1 [1.19.1 200601251500] org.netbeans.modules.web.monitor/1 [1.15.1 200601251500] | |