<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-14592</id>
	<title>Nabble - Java General</title>
	<updated>2009-12-02T09:41:23Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Java-General-f14592.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Java-General-f14592.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26613087</id>
	<title>Re: How to hide password Field in JOptionPane</title>
	<published>2009-12-02T09:41:23Z</published>
	<updated>2009-12-02T09:41:23Z</updated>
	<author>
		<name>tommylee</name>
	</author>
	<content type="html"> My solutions:&lt;br&gt;
&lt;br&gt;
Simple:&lt;br&gt;
&lt;br&gt;
String password;&lt;br&gt;
JPasswordField passwordField = new JPasswordField();&lt;br&gt;
passwordField.setEchoChar('*');&lt;br&gt;
Object[] obj = {&quot;Please enter the password:\n\n&quot;, passwordField};&lt;br&gt;
Object stringArray[] = {&quot;OK&quot;,&quot;Cancel&quot;};&lt;br&gt;
if (JOptionPane.showOptionDialog(null, obj, &quot;Need password&quot;,
JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, stringArray, obj) == JOptionPane.YES_OPTION)&lt;br&gt;
password = passwordField.getPassword().toString();&lt;br&gt;
&lt;br&gt;
// ---------&lt;br&gt;
Complex:&lt;br&gt;
&lt;br&gt;
class CustomPasswordField extends JPasswordField {&lt;br&gt;
public CustomPasswordField() {&lt;br&gt;
addKeyListener(new java.awt.event.KeyAdapter() {&lt;br&gt;
@Override&lt;br&gt;
public void keyPressed(java.awt.event.KeyEvent kEvt) {&lt;br&gt;
if (kEvt.getKeyCode() == java.awt.event.KeyEvent.VK_ENTER) {&lt;br&gt;
kEvt.consume();&lt;br&gt;
// auto generate TAB + Enter keypress events&lt;br&gt;
try {&lt;br&gt;
java.awt.Robot robot = new java.awt.Robot();&lt;br&gt;
robot.setAutoDelay(100);&lt;br&gt;
robot.keyPress(java.awt.event.KeyEvent.VK_TAB);&lt;br&gt;
robot.keyPress(java.awt.event.KeyEvent.VK_ENTER);&lt;br&gt;
}&lt;br&gt;
catch (java.awt.AWTException awtEx) {&lt;br&gt;
awtEx.printStackTrace();&lt;br&gt;
}&lt;br&gt;
}&lt;br&gt;
}&lt;br&gt;
});&lt;br&gt;
}&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
{ your code here... }&lt;br&gt;
&lt;br&gt;
String password;&lt;br&gt;
CustomPasswordField passwordField = new CustomPasswordField();&lt;br&gt;
passwordField.setEchoChar('*');&lt;br&gt;
Object[] obj = {&quot;Please enter the password:\n\n&quot;, passwordField};&lt;br&gt;
Object stringArray[] = {&quot;OK&quot;,&quot;Cancel&quot;};&lt;br&gt;
if (JOptionPane.showOptionDialog(null, obj, &quot;Need password&quot;,
JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, stringArray, obj) == JOptionPane.YES_OPTION)
password = passwordField.getPassword().toString();&lt;br&gt;
&lt;br&gt;
In the complex solution the CustomPasswordField class auto-generate TAB + Enter keypress pair, when the user hit the Enter key on JPasswordField.&lt;br&gt;
&lt;br&gt;
Regards!&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.fm-pdf.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fm-pdf.com&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.bamboosoft.hu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bamboosoft.hu&lt;/a&gt;&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-hide-password-Field-in-JOptionPane-tp10069368p26613087.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26214538</id>
	<title>How to convert an ip into binary</title>
	<published>2009-11-05T05:43:16Z</published>
	<updated>2009-11-05T05:43:16Z</updated>
	<author>
		<name>Michal Singer</name>
	</author>
	<content type="html">How do i convert an ip in java to binary represenation?
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-convert-an-ip-into-binary-tp26214538p26214538.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25530030</id>
	<title>Re: proper user management</title>
	<published>2009-09-20T06:30:15Z</published>
	<updated>2009-09-20T06:30:15Z</updated>
	<author>
		<name>Damon G</name>
	</author>
	<content type="html">You might take a look at Kerberos. &amp;nbsp;Type &amp;quot;Authentication and Authorization&amp;quot; into Sun's website search engine and see what comes back.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/proper-user-management-tp25083094p25530030.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25332029</id>
	<title>pdfbox can't print itext pdfs</title>
	<published>2009-09-07T08:11:58Z</published>
	<updated>2009-09-07T08:11:58Z</updated>
	<author>
		<name>bradly</name>
	</author>
	<content type="html">Good day everyone, i'm currently working on a project that requires i create a pdf file containing images and text in itext and print it using pdfbox. Itext generated text will print by itself, however when images are added only the images are printed. In addition, i tried printing pdf files from the itext tutorial site, but those wouldn't print text with the images either.
&lt;br&gt;&lt;br&gt;N.B. No we shouldn't generate the pdf using pdfbox and the system shouldn't be dependent on adobe so we can't use itext's &amp;quot;Executable&amp;quot; class
&lt;br&gt;&lt;br&gt;Can someone please help me!!!!!</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pdfbox-can%27t-print-itext-pdfs-tp25332029p25332029.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25315063</id>
	<title>when using SimpleDateFormat in jdk1.6 parse for EEE MMM dd HH:mm:ss zzz yyyy I receive a parse exception</title>
	<published>2009-09-05T23:43:02Z</published>
	<updated>2009-09-05T23:43:02Z</updated>
	<author>
		<name>Michal Singer</name>
	</author>
	<content type="html">when using SimpleDateFormat in jdk1.6 parse for EEE MMM dd HH:mm:ss zzz yyyy I receive a parse exception
&lt;br&gt;this works fine with lower version of jdk.
&lt;br&gt;&lt;br&gt;I try to do:
&lt;br&gt;&amp;nbsp;SimpleDateFormat dtf
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = new SimpleDateFormat(&amp;quot;EEE MMM dd HH:mm:ss zzz yyyy&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;String str0 = &amp;quot;Thu Aug 27 14:40:26 IDT 2009&amp;quot;; 
&lt;br&gt;&lt;br&gt;and i get this exception:
&lt;br&gt;&lt;br&gt;Parsing Thu Aug 27 14:40:26 IDT 2009 with EEE MMM dd HH:mm:ss zzz yyyy
&lt;br&gt;Exception: java.text.ParseException: Unparseable date: &amp;quot;Thu Aug 27 14:40:26 IDT 2009&amp;quot;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any ideas why?
&lt;br&gt;&lt;br&gt;thanks</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/when-using-SimpleDateFormat-in-jdk1.6-parse-for-EEE-MMM-dd-HH%3Amm%3Ass-zzz-yyyy-I-receive-a-parse-exception-tp25315063p25315063.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25083094</id>
	<title>proper user management</title>
	<published>2009-08-21T09:28:16Z</published>
	<updated>2009-08-21T09:28:16Z</updated>
	<author>
		<name>measwel</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;Can somebody tell me how to do proper user management in a webapp? I am building a site using the following technologies: JSF, JPA for DB access, tiles for layout and java for the logic. I have a number of questions:
&lt;br&gt;&lt;br&gt;1) How do I manage the logged in users? My userController is now of request scope type and it is only there when a user logs in or registers. How can I know which user fires up a request? Example code that shows how to handle concurrent users with aforementioned technologies would be greatly appreciated.
&lt;br&gt;&lt;br&gt;2) I have declared a number of beans via faces.config xml file. Are these beans 1 for all, or are the beans (that are of session scope) created per logged in user? 
&lt;br&gt;&lt;br&gt;Thank you in advance,
&lt;br&gt;measwel</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/proper-user-management-tp25083094p25083094.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24602508</id>
	<title>NaviCoder Editor 2.0 is now available</title>
	<published>2009-07-22T02:00:39Z</published>
	<updated>2009-07-22T02:00:39Z</updated>
	<author>
		<name>samnav</name>
	</author>
	<content type="html">NaviCoder Editor 2.0 is now available July 21, 2009 — PremiumSoft CyberTech Limited today announced the release of NaviCoder Editor, which is a free source code editor for Windows.
&lt;br&gt;&lt;br&gt;NaviCoder Editor is a professional source code editor for Windows and is useful for people who work with various programming environments, its supports various programming languages/ script files such as HTML, C/C++, Perl, Phython, Java, PHP, ASP, VBScript and more, up to 46 types.
&lt;br&gt;&lt;br&gt;NaviCoder Editor is written in C++ and professionally designed for the best look and feel. It is not only fast in loading time and occupying less memory, but also small in size, making it a stable and powerful tool.
&lt;br&gt;Feature highlights: 
&lt;br&gt;1. Edit multiple documents.
&lt;br&gt;2. Syntax Highlighting and Syntax Folding.
&lt;br&gt;3. Brace and Indent guideline Highlighting.
&lt;br&gt;4. Zoom in and zoom out.
&lt;br&gt;5. Bookmarking.
&lt;br&gt;6. and more….
&lt;br&gt;&lt;br&gt;To download this freeware, please visit: &lt;a href=&quot;http://www.navicoder.com/download.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.navicoder.com/download.html&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NaviCoder-Editor-2.0-is-now-available-tp24602508p24602508.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24349012</id>
	<title>About jTables and jcombobox with imageicons !!! :D from argentina</title>
	<published>2009-07-05T19:44:36Z</published>
	<updated>2009-07-05T19:44:36Z</updated>
	<author>
		<name>AgusCar</name>
	</author>
	<content type="html">Hi to all !!! :D how's all here ? blessingsssss !!! :D
&lt;br&gt;Just saw this forum and I decided to register...
&lt;br&gt;My problem is the following... How I can make a jtable that when I clicked a certain cell from a column a jcombobox appear and let me select a certain country and finnaly, and depending on the user chose, to display a certain flag ?.
&lt;br&gt;I already done this by making a class that implements TableCellRenderer in which dependeing on what the user types (&amp;quot;England&amp;quot; or &amp;quot;Germany&amp;quot;) a flag is display... But I don't know how to make this...
&lt;br&gt;&lt;br&gt;And the other doubt is how to align all the content to the CENTER of the cell... When I programme the class I told before I align the flag by using the JLabel methods but know if I want to center a string ???
&lt;br&gt;&lt;br&gt;How you can help me...</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/About-jTables-and-jcombobox-with-imageicons-%21%21%21-%3AD-from-argentina-tp24349012p24349012.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24303593</id>
	<title>how to embed Asian font while genrating PDF using FOP??</title>
	<published>2009-07-02T02:11:07Z</published>
	<updated>2009-07-02T02:11:07Z</updated>
	<author>
		<name>Sumit4dreams</name>
	</author>
	<content type="html">I have been trying to embed Asian font while genrating PDF using FOP. I am not able to get a break through in this. I need a help as to how to configure the whole thing like-
&lt;br&gt;1) Where to keep my metric file, Currently &amp;nbsp;fop.xconf and metric file are in the same location
&lt;br&gt;2) i have created a fop.xconf file which has the following data
&lt;br&gt;&amp;lt;renderers&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;renderer mime=&amp;quot;application/pdf&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;fonts&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;font metrics-url=&quot;D:/HEAD/applications/proj/config/arialuni.xml&quot; kerning=&quot;yes&quot; embed-url=&quot;D:/HEAD/applications/proj/font/arialuni.ttf&quot;&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;font-triplet name=&amp;quot;arialuni&amp;quot; style=&amp;quot;normal&amp;quot; weight=&amp;quot;normal&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/fonts&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/renderer&amp;gt;
&lt;br&gt;&amp;lt;/renderers&amp;gt;
&lt;br&gt;&lt;br&gt;3) the arialuni.ttf font is placed in my directory D:/HEAD/applications/proj/font/
&lt;br&gt;and the metric file is placed in D:/HEAD/applications/proj/config/
&lt;br&gt;&lt;br&gt;4) In my java code i have the following code
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; FopFactory fopFactory = FopFactory.newInstance();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; FOUserAgent userAgent = fopFactory.newFOUserAgent();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; File userConfigXml = new File(&amp;quot;D:/HEAD/applications/proj/config/fop.xconf&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; fopFactory.setUserConfig(userConfigXml);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; fopFactory.setFontBaseURL(&amp;quot;D:/HEAD/applications/proj/font/&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; TransformerFactory transformerFactory = TransformerFactory.newInstance();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; File copyrightFile = new File(fileUpLoadTempDir + copyrightPdfFileName);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; outputStream = new FileOutputStream(copyrightFile);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; outputStream = new BufferedOutputStream(outputStream);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF, userAgent, outputStream);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Transformer transformer = transformerFactory.newTransformer(new StreamSource(xslSource));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Source src = new DOMSource(copyrightDom);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Result res = new SAXResult(fop.getDefaultHandler());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; transformer.transform(src, res);
&lt;br&gt;&lt;br&gt;This is all i have done till now. I am trying to call the fop.xconf file from my java code.
&lt;br&gt;Still i am getting # for the Asian Character. 
&lt;br&gt;Definitly i am missing somethign or the whole process should not be done this way.
&lt;br&gt;Please some one help me out to resolve this. 
&lt;br&gt;Thankyou
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;Sumit
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-embed-Asian-font-while-genrating-PDF-using-FOP---tp24303593p24303593.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24055061</id>
	<title>match substrings between square brackets using regular expressions</title>
	<published>2009-06-16T07:03:10Z</published>
	<updated>2009-06-16T07:03:10Z</updated>
	<author>
		<name>wannasee</name>
	</author>
	<content type="html">Hello, 
&lt;br&gt;&lt;br&gt;I am new at Java and have a problem with regular expressions. Let me describe the issue in 3 steps:
&lt;br&gt;&lt;br&gt;1- I have an english sentence. Some words of the sentence stand between square brackets, for example &amp;quot;I &lt;b&gt;[&lt;/b&gt;eat&lt;b&gt;]&lt;/b&gt;&amp;nbsp;and &lt;b&gt;[&lt;/b&gt;sleep&lt;b&gt;]&lt;/b&gt;&amp;quot;
&lt;br&gt;2- I would like to match strings that are in square brackets using regular expressions and here is the code I have written for the task:
&lt;br&gt;&lt;br&gt;Pattern findStringinSquareBrackets = Pattern.compile(&amp;quot;\\[.\]&amp;quot;);
&lt;br&gt;Matcher matcherOfWordInSquareBrackets = findStringinSquareBrackets.matcher(&amp;quot;I [eat] and [sleep]&amp;quot;);
&lt;br&gt;//Iteration in the string
&lt;br&gt;while ( matcherOfWordInSquareBrackets.find() )
&lt;br&gt;{
&lt;br&gt;System.out.println(&amp;quot;Patter found! :&amp;quot; outputField.getText().substring(matcherOfWordInSquareBrackets.start(), matcherOfWordInSquareBrackets.end())&amp;quot;&amp;quot;);	
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;3- the result I have after running the code described in 2 is the following: &lt;i&gt;Patter found!: [eat] and [sleep]&lt;/i&gt;&lt;br&gt;That is to say that not only words between square brackets are found but also the substring &lt;i&gt;&amp;quot;and&amp;quot;&lt;/i&gt;. And this is not what I want.
&lt;br&gt;&lt;br&gt;4- What I would like to have as a result is:
&lt;br&gt;&lt;i&gt;Patter found!: [eat]&lt;/i&gt;&lt;br&gt;&lt;i&gt;Patter found!: [sleep]&lt;/i&gt;&lt;br&gt;That is to say I want to match only the words between the square brackets and nothing else.
&lt;br&gt;&lt;br&gt;Does somebody know how to do this? Any help would be great.
&lt;br&gt;Best regards,
&lt;br&gt;&lt;br&gt;Abou</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/match-substrings-between-square-brackets-using-regular-expressions-tp24055061p24055061.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24047716</id>
	<title>Run applet in browser using own policy</title>
	<published>2009-06-15T21:59:51Z</published>
	<updated>2009-06-15T21:59:51Z</updated>
	<author>
		<name>anycat</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;I have been trying to run an applet with file reading and writing permissions. For this I created my own policy file granting the permissions and I could run it using 'appletviewer' in the following manner
&lt;br&gt;&lt;br&gt;appletviewer -J-Djava.security.policy=mypolicy MyApplet.java
&lt;br&gt;&lt;br&gt;But I want to use it in a web application. Is it a way to run an applet using your own policy in a browser?
&lt;br&gt;I have tried changing the java.security file but it is not a feasible option as I can not do it on the client machine from the web server.
&lt;br&gt;Or Do I have to invoke a batch file with the above command? Is there an attribute for the HTML tag &amp;lt;applet&amp;gt; for specifying the policy? </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Run-applet-in-browser-using-own-policy-tp24047716p24047716.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23795042</id>
	<title>Java classpath problem when class is in jar file</title>
	<published>2009-05-30T09:33:04Z</published>
	<updated>2009-05-30T09:33:04Z</updated>
	<author>
		<name>gnixinfosoft</name>
	</author>
	<content type="html">Getting error when setting classpath if java file is in jar.
&lt;br&gt;&lt;br&gt;Unable to compile, it says could not find class definition
&lt;br&gt;&lt;br&gt;I tried executing java -classpath &amp;lt;&amp;lt;cpath&amp;gt;&amp;gt; &amp;lt;&amp;lt;file_name_containing_main_method&amp;gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Unable to find helper classes that are used inside &amp;lt;&amp;lt;file_name_containing_main_method&amp;gt;&amp;gt;
&lt;br&gt;&lt;br&gt;If i set the project in eclipse it works fine, but if i am running at command prompt, it returns error
&lt;br&gt;&lt;br&gt;I need to execute this using command prompt, as i have some use case where this has to be invoked using command line
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Java-classpath-problem-when-class-is-in-jar-file-tp23795042p23795042.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23741272</id>
	<title>Determine generics type alternative</title>
	<published>2009-05-27T05:11:41Z</published>
	<updated>2009-05-27T05:11:41Z</updated>
	<author>
		<name>Prodoc81</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I though I had a clever way of using java generics but this turned out not to be the case.
&lt;br&gt;&lt;br&gt;In the following class I'm using the class parameter type to create a List with items of the same type. This all works nice and well, except for the actual query bit. The table it should get its data from is now hard-coded (&amp;quot;Threat&amp;quot;). This should, however, be based on the parameter type. My plan was to determine the type and use that to create the query. Determining the type turns out not to be possible at all, with something like instanceof.
&lt;br&gt;&lt;br&gt;Now I'm looking for a clean alternative but I can't think of one. Do you have any idea's or suggestions?
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------
&lt;br&gt;public class AddDeviceTool&amp;lt;T extends GeneralDevice&amp;gt; implements DeviceTool, EventListener {
&lt;br&gt;&amp;nbsp; private DeviceManager deviceManager;
&lt;br&gt;&amp;nbsp; private EntityManager entityManager;
&lt;br&gt;&amp;nbsp; private Query deviceQuery;
&lt;br&gt;&amp;nbsp; private List&amp;lt;T&amp;gt; deviceList;
&lt;br&gt;&lt;br&gt;&amp;nbsp; public AddDeviceTool(DeviceManager deviceManager) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; this.svgCanvas = deviceManager.getCanvas();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; this.deviceManager = deviceManager;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; entityManager = java.beans.Beans.isDesignTime() ? null : javax.persistence.Persistence.createEntityManagerFactory(&amp;quot;MPSFPU&amp;quot;).createEntityManager();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; deviceQuery = java.beans.Beans.isDesignTime() ? null : entityManager.createQuery(&amp;quot;SELECT d FROM &amp;quot; + &amp;quot;Threat&amp;quot; + &amp;quot; D&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; @SuppressWarnings(&amp;quot;unchecked&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; List&amp;lt;T&amp;gt; list = (List&amp;lt;T&amp;gt;) (java.beans.Beans.isDesignTime() ? java.util.Collections.emptyList() : deviceQuery.getResultList()); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; deviceList = list;
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; public void handleEvent(final Event evt) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; deviceManager.addDevice(device, mousePosition);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; ....
&lt;br&gt;}
&lt;br&gt;------------------------------------------------------
&lt;br&gt;&lt;br&gt;Yours,
&lt;br&gt;&lt;br&gt;Age</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Determine-generics-type-alternative-tp23741272p23741272.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23273203</id>
	<title>NaviCoder version 2.0 is released</title>
	<published>2009-04-28T02:11:24Z</published>
	<updated>2009-04-28T02:11:24Z</updated>
	<author>
		<name>samnav</name>
	</author>
	<content type="html">April 27, 2009 — PremiumSoft CyberTech Limited today announced the release of NaviCoder 2.0, renamed from its ancestor, JCODER Pro. &amp;nbsp;The rename of JCODER to NaviCoder strengthens the whole Navi family product line and reinforce PremiumSoft’s devotion to build software which enhance productivity and maximize results for developers. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Inherited from its ancestor, NaviCoder is a lightweight and powerful JAVA Integrated Development Environment (IDE) for developers to create, navigate, debug and manage codes quickly and accurately. With NaviCoder Project Wizard, File Wizard, Class Viewer, Package Viewer, Ant Viewer, Tabbed Documents, JDK profiles, and a customizable user interface, it makes management of Java projects a lot easier. 
&lt;br&gt;&lt;br&gt;“With the change of product name, we hope to build the Navi product line, making NaviCoder, and our flagship database administration product, Navicat, tools which they cannot miss for all developer’s every day work” , said Ken Lin, Director of Software Development. “We understand the needs of programmers, it is written entirely in C++ and professionally designed for the best look and feel, this makes our software lightweight and fast, which we believe NaviCoder to be a perfect IDE for Java.”
&lt;br&gt;&lt;br&gt;NaviCoder version 2.0 supports tabbed view. Editing of multiple documents is made easy with multiple tabbed groups, split view, and cross-document search. NaviCoder also provides a set of easy-to-follow wizards to assist developer creating new projects, files, classes and packages. The comprehensive and intelligent Java Editor in NaviCoder delivers a wide range of compelling code editing capabilities including syntax highlighting, smart code completion, automatic indentation, and formatting, etc. 
&lt;br&gt;&lt;br&gt;With NaviCoder feature-rich Debugger, debugging process becomes less hassle. You can set breakpoints to segment your program and find out where your program went wrong or step into individual expressions within a statement to solve those tricky problems. NaviCoder also supports Remote Debugging in which programs running on remote machines can be debugged. 
&lt;br&gt;&lt;br&gt;Other features in NaviCoder include support of JDK Profiles, support of Apache Ant, ability to enter full screen mode for editing and to run program in Command Prompt. 
&lt;br&gt;Latest version improvements: 
&lt;br&gt;•	Enhanced Support on Web Development
&lt;br&gt;&amp;nbsp; provides fully support on syntax highlight, code folding and code completion on JSP and javascript files
&lt;br&gt;•	JPDA-compliant Debugger for web project
&lt;br&gt;&amp;nbsp; allows you to stepping across webpages and monitoring the residing memebers' values
&lt;br&gt;•	 Integrated Project Manager with instant outline and package view
&lt;br&gt;&amp;nbsp; provides easy access and monitoring though the project manager
&lt;br&gt;•	Project Dependency adds possibility on batch building projects under workspace
&lt;br&gt;•	 Enhanced Java Debugger for real time variable Lookup and Watch
&lt;br&gt;•	Export on projects and executables with all libraries and included classes
&lt;br&gt;&amp;nbsp; provides portability, easier backup and exchangeability
&lt;br&gt;•	External Tool, Enhanced Searching Dialog, Zooming... etc., tools that ease your programming!
&lt;br&gt;NaviCoder is selling at US$63 for commercial use and US$31 for non-commercial use. For more information please visit &lt;a href=&quot;http://www.NaviCoder.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.NaviCoder.com&lt;/a&gt;&amp;nbsp;, or download the free copy at &lt;a href=&quot;http://www.NaviCoder.com/download.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.NaviCoder.com/download.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;About PremiumSoft CyberTech Limited: PremiumSoft was founded in 1999 and is a fast growing company, aiming at accelerating application development and database management with software that enhance productivity and maximize results of our customers. With our customer-centric focus and best-of-breed products and services, PremiumSoft has been successful in making customers significantly more productive. 
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NaviCoder-version-2.0-is-released-tp23273203p23273203.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23056260</id>
	<title>Event Listeners</title>
	<published>2009-04-15T03:36:27Z</published>
	<updated>2009-04-15T03:36:27Z</updated>
	<author>
		<name>nutty</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;Can any body tell me what events are produced by hyperlink and textfield.
&lt;br&gt;&amp;nbsp;thanx</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Event-Listeners-tp23056260p23056260.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22987619</id>
	<title>Issue  on Applet loading with JRE 1.6.0_12 and JRE 1.6.0_13</title>
	<published>2009-04-10T05:58:49Z</published>
	<updated>2009-04-10T05:58:49Z</updated>
	<author>
		<name>SaravananD</name>
	</author>
	<content type="html">Applet loading is failing when java cache is enabled with these jre's. Also some times applet is not loading even with disabling cache. this is not seen with earlier jre versions.
&lt;br&gt;&lt;br&gt;Any suggestions..</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Issue--on-Applet-loading-with-JRE-1.6.0_12-and-JRE-1.6.0_13-tp22987619p22987619.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22327076</id>
	<title>JSON resposne from outside service</title>
	<published>2009-03-04T02:12:09Z</published>
	<updated>2009-03-04T02:12:09Z</updated>
	<author>
		<name>agatone</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I access some out service which returns me response in JSON format. To be able to read what it returned I guess I have to parse the JSON resposne into appropriate object. But there are quite many different types of objects that that service returns and it would be lots of work to write class for each possible response. Is there a way (some exisiting JSON lib) to parse complete response in to HashMap or smtin like that?
&lt;br&gt;&lt;br&gt;Thank you</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JSON-resposne-from-outside-service-tp22327076p22327076.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21938086</id>
	<title>Java versions - java.sql.SQLException: Out of memory (Needed 12002512 bytes)</title>
	<published>2009-02-10T09:05:30Z</published>
	<updated>2009-02-10T09:05:30Z</updated>
	<author>
		<name>rdblaha1</name>
	</author>
	<content type="html">This post is basically informative.
&lt;br&gt;&lt;br&gt;We had a situation where two zip files and some string information was being persisted to a MySQL database. &amp;nbsp;The interesting fact was that the processing would complete without problem on a Windows XP system, but then turning arouond and running the exact same code with the exact same zip files on our Solaris server system would indeed get the Subject 'Out of memory' exception.
&lt;br&gt;&lt;br&gt;In process of elimination we eliminated the MySQL as the problem (therefore this is not in a MySQL forum).
&lt;br&gt;&lt;br&gt;The only significant difference between the two systems was that the XP system had jdk1.6.0_10 and the Solaris system had jdk1.5.0_14. &amp;nbsp;When Solaris was updated to the Java 6 the processing worked as it did on the XP system.
&lt;br&gt;&lt;br&gt;More of the stack trace follows:
&lt;br&gt;&lt;br&gt;[Toplink Warning]: 2009.02.03 07:02:04.274--UnitOfWork(3022623)--Exception [TOPLINK-4002]
&lt;br&gt;oracle.toplink.essentials.exceptions.DatabaseException
&lt;br&gt;Internal Exception: java.sql.SQLException: Out of memory (Needed 12002512 bytes)
&lt;br&gt;Error Code:5
&lt;br&gt;Call: INSERT INTO ziptable (zip_filename, zip_file, zip_id, zip_filename2, zip_cmd, zip_file2, zip_crc, zip_type) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; bind =&amp;gt; [filename2, [B@fefe3f, id, filename, command, [B@e61a35, 2198567692, zipType]
&lt;br&gt;Query: InsertObjectQuery(com.company.mysql.persistence.Ziptable[zipId=null])
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hope this is helpful information to pass along.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Java-versions---java.sql.SQLException%3A-Out-of-memory-%28Needed-12002512-bytes%29-tp21938086p21938086.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21937233</id>
	<title>Re: JMS the way to go?</title>
	<published>2009-02-10T08:26:40Z</published>
	<updated>2009-02-10T08:26:40Z</updated>
	<author>
		<name>rdblaha1</name>
	</author>
	<content type="html">Sorry for this being so late. &amp;nbsp;This was one of my first times in this particular forum and happened to see your post.
&lt;br&gt;&lt;br&gt;You had a couple of key phrases that would lead me to encourage you to use JMS.
&lt;br&gt;&lt;br&gt;Because you have multiple locations, i.e. stores, using JMS would be very helpful for assuring data gets returned to the correct store with Point-to-Point and general messages to be broadcast to all stores via the Topic. &amp;nbsp;You are right, Why re-invent the wheel?
&lt;br&gt;&lt;br&gt;Secondly you mentioned starting out small at first - few transactions, etc. &amp;nbsp;I believe using JMS from the start will help work with scalability in the future. &amp;nbsp;You should not have to go back and re-write code to upgrade as I believe you will eventually need or be greatly benefitted using JMS as you grow.
&lt;br&gt;&lt;br&gt;rdb
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JMS-the-way-to-go--tp18910638p21937233.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21930819</id>
	<title>Database Access through service</title>
	<published>2009-02-10T02:17:11Z</published>
	<updated>2009-02-10T02:17:11Z</updated>
	<author>
		<name>agatone</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I need some advices, guidelines or opinion of people with more experience.
&lt;br&gt;&lt;br&gt;As I have application that is split into parts on various servers (servcies) and each of those parts might be communicating with the database on it own, I thought of creating a single Database Encapsulation Layer exposed as somekind service.
&lt;br&gt;&lt;br&gt;First thing is that I can't find any existing projects/software providing that kind of service - maybe someone knows it.
&lt;br&gt;Secod thing is abstraction of DB itself in Java - there are so many things around that and getting quite confused what to use ? ton's of ORMs (whichne to use) and should i use it at all? I'd like it to be fast so maybe avoiding ORM and having only DB abstraction is better?
&lt;br&gt;&lt;br&gt;I tryed Hibernate but it's so hard to have anything automaticaly generated in Eclipse or NetBeans using existing DB - I'd like a tool that can reverse engenire database (withouth rocket sience around it) and with ALL DB schemas at once (using pgsql with 10 or more schemas) so I can use it in my Java application. Is there easier way than writing ton of XML to map all db tables and fields ...
&lt;br&gt;&lt;br&gt;I'd be very thankful if anyone can provide me with some information about this &amp;quot;databse abstraction layer as a service&amp;quot;.
&lt;br&gt;&lt;br&gt;Thank you</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Database-Access-through-service-tp21930819p21930819.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21898759</id>
	<title>Re: JApplet - Not Loading</title>
	<published>2009-02-08T05:14:18Z</published>
	<updated>2009-02-08T05:14:18Z</updated>
	<author>
		<name>hinzsa</name>
	</author>
	<content type="html">After burning my fingers, adding and putting and extracting, re installing jres and jdks.
&lt;br&gt;&lt;br&gt;I started from the beggining deleting all the class files from the browser cache.
&lt;br&gt;and came back to this basic html applet tag code.
&lt;br&gt;&lt;br&gt;&amp;lt;applet code=&amp;quot;Testjapplet.class&amp;quot; archive=&amp;quot;testjapplet.jar&amp;quot; width=&amp;quot;500&amp;quot; height=&amp;quot;500&amp;quot;&amp;gt;&amp;lt;/applet&amp;gt;
&lt;br&gt;&lt;br&gt;the applet came to life. (thanks to this I could revive an old applet).
&lt;br&gt;&lt;br&gt;&lt;br&gt;This are the point to be considered when you want to run an applet.
&lt;br&gt;&lt;br&gt;One JVM. I deleted all of them and installed a brand new one.
&lt;br&gt;recompiled your application with the latest JDK. (consider refactoring your application)
&lt;br&gt;build into a jar file, (keep it neat)
&lt;br&gt;if you ftp to your server, make sure you use binary transfer
&lt;br&gt;make sure you clear you cache in your browser, Firefox for example, will keep loading the applets.
&lt;br&gt;&lt;br&gt;in this case, the applet class is in not in a package.
&lt;br&gt;&lt;br&gt;Sometimes we go around in circles with simple things, and we are embarrased to ask. 
&lt;br&gt;&lt;br&gt;I hope it helps.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JApplet---Not-Loading-tp21891300p21898759.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21891300</id>
	<title>JApplet - Not Loading</title>
	<published>2009-02-07T10:24:00Z</published>
	<updated>2009-02-07T10:24:00Z</updated>
	<author>
		<name>hinzsa</name>
	</author>
	<content type="html">Hi every one, I did this test applets
&lt;br&gt;&lt;br&gt;&lt;i&gt;import java.awt.BorderLayout;
&lt;br&gt;import javax.swing.JApplet;
&lt;br&gt;import javax.swing.JButton;
&lt;br&gt;public class TestJApplet extends JApplet {
&lt;br&gt;@Override
&lt;br&gt;public void init() {
&lt;br&gt;this.setLayout(new BorderLayout());
&lt;br&gt;JButton button = new JButton(&amp;quot;TEST THIS&amp;quot;);
&lt;br&gt;this.add(button);
&lt;br&gt;}
&lt;br&gt;}&lt;/i&gt;&lt;br&gt;&lt;br&gt;I build it using netbeans get the jar file: &amp;quot;TestApplet.jar&amp;quot;
&lt;br&gt;&lt;br&gt;I created the test hmtl file and add this code
&lt;br&gt;&lt;br&gt;&lt;i&gt;&lt;br&gt;&amp;lt;applet code=&amp;quot;TestJApplet.class&amp;quot; codebase=&amp;quot;.&amp;quot; archive=&amp;quot;TestApplet.jar&amp;quot; width=500
&lt;br&gt;height=500 alt=&amp;quot;test applet&amp;quot;&amp;gt;
&lt;br&gt;&lt;/a&gt;&lt;/i&gt;&lt;br&gt;&lt;br&gt;I also tryed this one
&lt;br&gt;&lt;i&gt;&lt;br&gt;&amp;lt; object classid=&amp;quot;clsid:CAFEEFAC-0016-0000-0000-ABCDEFFEDCBA&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt; param name=&amp;quot;archive&amp;quot; value=&amp;quot;TestApplet.jar&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt; param name=&amp;quot;code&amp;quot; value=&amp;quot;TestJApplet&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt; embed code=&amp;quot;TestJApplet&amp;quot; archive=&amp;quot;TestApplet.jar&amp;quot; type=&amp;quot;application/x-java-applet;jpi-version=1.6&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt; noembed&amp;gt;
&lt;br&gt;No Java Support.
&lt;br&gt;&amp;lt;/noembed &amp;gt;
&lt;br&gt;&lt;/embed&gt;&lt;br&gt;&lt;br&gt;&amp;lt; object&amp;gt;&lt;/i&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;I TEST IT IN MY LOCAL MACHINE AND IT WORKS FINE, BUT WHEN i DEPLOY IT ON LINE, THE JAVA CONSOLE THROW THIS EXCEPTION
&lt;br&gt;&lt;br&gt;&lt;i&gt;load: class TestJApplet not found.
&lt;br&gt;java.lang.ClassNotFoundException: TestJApplet
&lt;br&gt;at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
&lt;br&gt;at java.lang.ClassLoader.loadClass(Unknown Source)
&lt;br&gt;at java.lang.ClassLoader.loadClass(Unknown Source)
&lt;br&gt;at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
&lt;br&gt;at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
&lt;br&gt;at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
&lt;br&gt;at java.lang.Thread.run(Unknown Source)
&lt;br&gt;Caused by: java.net.SocketException: Connection reset
&lt;br&gt;at java.net.SocketInputStream.read(Unknown Source)
&lt;br&gt;at java.io.BufferedInputStream.fill(Unknown Source)
&lt;br&gt;at java.io.BufferedInputStream.read1(Unknown Source)
&lt;br&gt;at java.io.BufferedInputStream.read(Unknown Source)
&lt;br&gt;at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
&lt;br&gt;at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
&lt;br&gt;at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
&lt;br&gt;at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
&lt;br&gt;at java.net.HttpURLConnection.getResponseCode(Unknown Source)
&lt;br&gt;at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
&lt;br&gt;at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
&lt;br&gt;at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
&lt;br&gt;at java.security.AccessController.doPrivileged(Native Method)
&lt;br&gt;... 7 more
&lt;br&gt;Exception: java.lang.ClassNotFoundException: TestJApplet&lt;/i&gt;&lt;br&gt;&lt;br&gt;THIS USED BE VERY STRAIGHT FORWARDS AND IT WORKED FINE.
&lt;br&gt;&lt;br&gt;COULD ANYONE PLEASE, HAVE THE KINDNESS TO GO BACK TO OUR BELOVED APPLET TECHNOLOGY AND THROW SOME LIGHT ON THIS MATTER?
&lt;br&gt;&lt;br&gt;IT WOULD BE VERY MUCH APPRECIATED.
&lt;br&gt;&lt;br&gt;REGARDS
&lt;br&gt;&lt;br&gt;jinzsa </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JApplet---Not-Loading-tp21891300p21891300.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21494571</id>
	<title>Training &amp; Jobs</title>
	<published>2009-01-16T00:30:10Z</published>
	<updated>2009-01-16T00:30:10Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;[B]FOR OPT/F-1 STUDENTS[/B]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;[B]FOR L1/ L2/ H1/ H4/ EAD/ GC [/B]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;[B]Highly Competitive offers for New H1b Transfers[/B]
&lt;br&gt;[B]About Us:[/B]
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are of utmost importance. Our highly skilled and dedicated instructors train you explicitly in market-related technologies for today and tomorrow. We will work with you in developing marketing strategies and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting careers!!! 
&lt;br&gt;[B]What are we Looking for:[/B]
&lt;br&gt;[LIST]
&lt;br&gt;[*]Excellent communication skills. 
&lt;br&gt;[*] &amp;nbsp; Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;[*] &amp;nbsp; (EAD, GC). 
&lt;br&gt;[*] &amp;nbsp; Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;[*] &amp;nbsp; Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;[*] &amp;nbsp; Electronics or previous IT experience. 
&lt;br&gt;[*] &amp;nbsp; Willing to relocate anywhere in USA.
&lt;br&gt;[/LIST]
&lt;br&gt;[B]What’s The Deal: [/B]
&lt;br&gt;[LIST]
&lt;br&gt;[*]H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;[*]Transfer of H1 &amp; L1 visas. 
&lt;br&gt;[*]Green Card sponsorship through PERM 
&lt;br&gt;[*]Job focused professional training in
&lt;br&gt;[/LIST]
&lt;br&gt;[INDENT][LIST]
&lt;br&gt;[*]Java/ J2EE 
&lt;br&gt;[*].NET 
&lt;br&gt;[*]Documentum 
&lt;br&gt;[*]Share point 
&lt;br&gt;[*]Oracle 
&lt;br&gt;[*]Data Modeling
&lt;br&gt;[/LIST][/INDENT]
&lt;br&gt;[LIST]
&lt;br&gt;[*]Relocation assistance- airfare, hotel accommodation, car rental etc 
&lt;br&gt;[*]Guarantee lowest bench period. 
&lt;br&gt;[*]Employee referral program. 
&lt;br&gt;[*]Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;[*]Technical mock interviews. Preparation of In Person Interviews
&lt;br&gt;[/LIST]
&lt;br&gt;[B]100% Guaranteed placement [/B]
&lt;br&gt;[B]Get in Touch:[/B]
&lt;br&gt;Contact immediately to know more about the opportunities with us at:[B]609-843-0312 [/B]
&lt;br&gt;or 
&lt;br&gt;write mail at [B]jobs@v2techinc.com[/B]
&lt;br&gt;Contact person : John
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Training---Jobs-tp21494571p21494571.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21331395</id>
	<title>Training &amp; Jobs</title>
	<published>2009-01-07T05:34:14Z</published>
	<updated>2009-01-07T05:34:14Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are 
&lt;br&gt;of utmost importance. Our highly skilled and dedicated instructors 
&lt;br&gt;train you explicitly in market-related technologies for today and 
&lt;br&gt;tomorrow. We will work with you in developing marketing strategies 
&lt;br&gt;and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting 
&lt;br&gt;careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;Excellent communication skills. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;(EAD, GC). 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Electronics or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Willing to relocate anywhere in USA.
&lt;br&gt;&lt;br&gt;What’s The Deal: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Green Card sponsorship through PERM 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Job focused professional training in 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Java/ J2EE 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; .NET 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Documentum 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Share point 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Oracle 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Data Modeling 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Relocation assistance- airfare, hotel accommodation, car rental 
&lt;br&gt;&amp;nbsp; &amp;nbsp;etc 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Guarantee lowest bench period. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Employee referral program. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us 
&lt;br&gt;at:609-843-0312 
&lt;br&gt;or 
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Training---Jobs-tp21331395p21331395.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21307726</id>
	<title>JCODER PRO version 1.1 is now available</title>
	<published>2009-01-06T02:07:03Z</published>
	<updated>2009-01-06T02:07:03Z</updated>
	<author>
		<name>navicatgui</name>
	</author>
	<content type="html">By PremiumSoft. JCODER is a lightweight and powerful JAVA Integrated Development Environment (IDE) for developers to create, navigate, debug and manage codes quickly and accurately. With JCODER Project Wizard, File Wizard, Class Viewer, Package Viewer, Ant Viewer, Tabbed Documents, JDK profiles, and a customizable user interface, it makes management of Java projects a lot easier. 
&lt;br&gt;&lt;br&gt;JCODER is built to provide Java developers an intelligent and user-friendly tool which reduces their cumbersome workload on application development. It is written entirely in C++ and professionally designed for the best look and feel, this makes the software lightweight and fast. 
&lt;br&gt;&lt;br&gt;Major features: 
&lt;br&gt;• Intuitive User Interface with multi-document editing 
&lt;br&gt;• Project Wizard, New Class/ Interface Wizard 
&lt;br&gt;• Class and Package Viewer 
&lt;br&gt;• Advanced editor with code-folding 
&lt;br&gt;• Code Completion with Syntax checking and highlighting 
&lt;br&gt;• Feature rich Debugger 
&lt;br&gt;• Support of Apache Ant 
&lt;br&gt;Major Improvements: 
&lt;br&gt;• Support of Web Project Development 
&lt;br&gt;• Embbed Tomcat as user option 
&lt;br&gt;• Added code completion for html, xml, jsp, js document 
&lt;br&gt;• Added fully support on UTF8 document 
&lt;br&gt;For more information please visit &lt;a href=&quot;http://www.jcoder.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.jcoder.com&lt;/a&gt;&amp;nbsp;, or download the free copy at &lt;a href=&quot;http://www.jcoder.com/download.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.jcoder.com/download.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JCODER-PRO-version-1.1-is-now-available-tp21307726p21307726.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21267045</id>
	<title>How to create Word document programatically</title>
	<published>2009-01-03T09:21:07Z</published>
	<updated>2009-01-03T09:21:07Z</updated>
	<author>
		<name>pantichd</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I need to be able to generate a Word document in my servlet. I've looked around but haven't found much that seems to do what I need. The most promising one seemed to be Apache's POI (&lt;a href=&quot;http://poi.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://poi.apache.org/&lt;/a&gt;) but the Word part of it doesn't seem to be able to write Word documents the way I need it to.
&lt;br&gt;&lt;br&gt;Ideally, here's what I'd like to do: First I'd have a Word document that would act as a &amp;quot;template&amp;quot;. It would look like the paper form we're replacing but would have some unique strings in each field where user would normally have written something.
&lt;br&gt;&lt;br&gt;In my servlet I would read in the &amp;quot;template&amp;quot; file and use the request parameters to replace the unique strings in the fields. Then I would write out the modified Word document to another file.
&lt;br&gt;&lt;br&gt;Seems simple enough but I'm not able to find anything that can do this. I would greatly appreciate any hints/suggestions on how to do this. 
&lt;br&gt;&lt;br&gt;Actually, the final goal is to take the new Word file and generate a PDF out of it for future retention in our record retention software. That software only accepts PDFs. I chose Word as the intermediate format because it seemed to be the best way to generate a file that most closely resembled the paper form that's being replaced. If anyone has a better way to do this I'd love to hear it. 
&lt;br&gt;&lt;br&gt;The main thing is that I'd like to use open source software to accomplish this. I don't think I can get approval to buy more software at this point.
&lt;br&gt;&lt;br&gt;Thanks in advance for any help!
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-create-Word-document-programatically-tp21267045p21267045.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21231409</id>
	<title>Training &amp; jobs</title>
	<published>2008-12-31T05:25:09Z</published>
	<updated>2008-12-31T05:25:09Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are 
&lt;br&gt;of utmost importance. Our highly skilled and dedicated instructors 
&lt;br&gt;train you explicitly in market-related technologies for today and 
&lt;br&gt;tomorrow. We will work with you in developing marketing strategies 
&lt;br&gt;and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting 
&lt;br&gt;careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;Excellent communication skills. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;(EAD, GC). 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Electronics or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Willing to relocate anywhere in USA.
&lt;br&gt;&lt;br&gt;What’s The Deal: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Green Card sponsorship through PERM 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Job focused professional training in 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Java/ J2EE 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; .NET 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Documentum 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Share point 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Oracle 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Data Modeling 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Relocation assistance- airfare, hotel accommodation, car rental 
&lt;br&gt;&amp;nbsp; &amp;nbsp;etc 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Guarantee lowest bench period. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Employee referral program. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us 
&lt;br&gt;at:609-843-0312 
&lt;br&gt;or 
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Training---jobs-tp21231409p21231409.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21172366</id>
	<title>https is not working in WebServices</title>
	<published>2008-12-25T23:17:15Z</published>
	<updated>2008-12-25T23:17:15Z</updated>
	<author>
		<name>rajeshkarka</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I am implemented webservices for my application. And I need to use https for this. If I send request from the browser its working fine. And same I use from the PDF or Standalone client Its asking for valid certificate. Even though we have valid certificate. 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Is there any configuration required in WebServices.Please help me.
&lt;br&gt;&lt;br&gt;Thanks in Advance</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/https-is-not-working-in-WebServices-tp21172366p21172366.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20918819</id>
	<title>Training &amp; Jobs</title>
	<published>2008-12-09T09:01:17Z</published>
	<updated>2008-12-09T09:01:17Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;[B]FOR OPT/F-1 STUDENTS[/B]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;[B]FOR L1/ L2/ H1/ H4/ EAD/ GC [/B]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;[B]Highly Competitive offers for New H1b Transfers[/B]
&lt;br&gt;[B]About Us:[/B]
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are of utmost importance. Our highly skilled and dedicated instructors train you explicitly in market-related technologies for today and tomorrow. We will work with you in developing marketing strategies and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting careers!!! 
&lt;br&gt;[B]What are we Looking for:[/B]
&lt;br&gt;[LIST]
&lt;br&gt;[*]Excellent communication skills. 
&lt;br&gt;[*] &amp;nbsp; Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;[*] &amp;nbsp; (EAD, GC). 
&lt;br&gt;[*] &amp;nbsp; Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;[*] &amp;nbsp; Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;[*] &amp;nbsp; Electronics or previous IT experience. 
&lt;br&gt;[*] &amp;nbsp; Willing to relocate anywhere in USA.
&lt;br&gt;[/LIST]
&lt;br&gt;[B]What’s The Deal: [/B]
&lt;br&gt;[LIST]
&lt;br&gt;[*]H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;[*]Transfer of H1 &amp; L1 visas. 
&lt;br&gt;[*]Green Card sponsorship through PERM 
&lt;br&gt;[*]Job focused professional training in
&lt;br&gt;[/LIST]
&lt;br&gt;[INDENT][LIST]
&lt;br&gt;[*]Java/ J2EE 
&lt;br&gt;[*].NET 
&lt;br&gt;[*]Documentum 
&lt;br&gt;[*]Share point 
&lt;br&gt;[*]Oracle 
&lt;br&gt;[*]Data Modeling
&lt;br&gt;[/LIST][/INDENT]
&lt;br&gt;[LIST]
&lt;br&gt;[*]Relocation assistance- airfare, hotel accommodation, car rental etc 
&lt;br&gt;[*]Guarantee lowest bench period. 
&lt;br&gt;[*]Employee referral program. 
&lt;br&gt;[*]Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;[*]Technical mock interviews. Preparation of In Person Interviews
&lt;br&gt;[/LIST]
&lt;br&gt;[B]100% Guaranteed placement [/B]
&lt;br&gt;[B]Get in Touch:[/B]
&lt;br&gt;Contact immediately to know more about the opportunities with us at:[B]609-843-0312 [/B]
&lt;br&gt;or 
&lt;br&gt;write mail at [B]jobs@v2techinc.com[/B]
&lt;br&gt;Contact person : John
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Training---Jobs-tp20918819p20918819.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20810555</id>
	<title>Image path problem in war</title>
	<published>2008-12-03T02:44:55Z</published>
	<updated>2008-12-03T02:44:55Z</updated>
	<author>
		<name>anoop_pk</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;I want to insert one image into one pdf using itext. I used getRealPath() to
&lt;br&gt;get the url of the image and it was working perfectly in windows env. But
&lt;br&gt;when we deployed war file at Unix box its bombing saying that image can't be
&lt;br&gt;found. Then i found out that we cant do getRealPath() in war file. I am
&lt;br&gt;literally stuck up with this problem. Can anyone please help me how to take
&lt;br&gt;the path of an image from war file?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Anoop</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Image-path-problem-in-war-tp20810555p20810555.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20786012</id>
	<title>Training &amp; Jobs</title>
	<published>2008-12-01T20:36:55Z</published>
	<updated>2008-12-01T20:36:55Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;[B]FOR OPT/F-1 STUDENTS[/B]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [fuchsia]FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING[/fuchsia] 
&lt;br&gt;[B]FOR L1/ L2/ H1/ H4/ EAD/ GC [/B]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [fuchsia]EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT[/fuchsia] 
&lt;br&gt;[B]Highly Competitive offers for New H1b Transfers[/B]
&lt;br&gt;[B]About Us:[/B]
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are of utmost importance. Our highly skilled and dedicated instructors train you explicitly in market-related technologies for today and tomorrow. We will work with you in developing marketing strategies and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting careers!!! 
&lt;br&gt;[B]What are we Looking for:[/B]
&lt;br&gt;[fuchsia]
&lt;br&gt;[*]Excellent communication skills. 
&lt;br&gt;[*] &amp;nbsp; Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;[*] &amp;nbsp; (EAD, GC). 
&lt;br&gt;[*] &amp;nbsp; Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;[*] &amp;nbsp; Preferably (not mandatory) Master's Degree in Computers/ Electronics or previous IT experience. 
&lt;br&gt;[*] &amp;nbsp; Willing to relocate anywhere in USA.
&lt;br&gt;[/fuchsia]
&lt;br&gt;[B]What’s The Deal: [/B]
&lt;br&gt;[fuchsia]
&lt;br&gt;[*]H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;[*]Transfer of H1 &amp; L1 visas. 
&lt;br&gt;[*]Green Card sponsorship through PERM 
&lt;br&gt;[*]Job focused professional training in
&lt;br&gt;[/fuchsia]
&lt;br&gt;[green]
&lt;br&gt;[*]Java/ J2EE 
&lt;br&gt;[*].NET 
&lt;br&gt;[*]Documentum 
&lt;br&gt;[*]Share point 
&lt;br&gt;[*]Oracle 
&lt;br&gt;[*]Data Modeling
&lt;br&gt;[/green]
&lt;br&gt;[fuchsia]
&lt;br&gt;[*]Relocation assistance- airfare, hotel accommodation, car rental etc 
&lt;br&gt;[*]Guarantee lowest bench period. 
&lt;br&gt;[*]Employee referral program. 
&lt;br&gt;[*]Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;[*]Technical mock interviews. Preparation of In Person Interviews
&lt;br&gt;[/fuchsia]
&lt;br&gt;[B]100% Guaranteed placement [/B]
&lt;br&gt;[B]Get in Touch:[/B]
&lt;br&gt;Contact immediately to know more about the opportunities with us at:[B]609-843-0312 [/B]
&lt;br&gt;or 
&lt;br&gt;write mail at [B]jobs@v2techinc.com[/B]
&lt;br&gt;Contact person : John
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Training---Jobs-tp20786012p20786012.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20710710</id>
	<title>Java and Windows services (how to start / stop)</title>
	<published>2008-11-26T14:58:41Z</published>
	<updated>2008-11-26T14:58:41Z</updated>
	<author>
		<name>CheapLisa</name>
	</author>
	<content type="html">I can start/stop a windows service by
&lt;br&gt;DOS&amp;gt;net start &amp;quot;name of service&amp;quot;
&lt;br&gt;&lt;br&gt;or stop
&lt;br&gt;DOS&amp;gt;net start &amp;quot;name of service&amp;quot;
&lt;br&gt;&lt;br&gt;How do I do this programatically from a Java program?
&lt;br&gt;&lt;br&gt;I have google'd and nothing comes up. &amp;nbsp;I want to be able to start/stop services from windows. &amp;nbsp;I there a lib out there that does that?
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Lisa</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Java-and-Windows-services-%28how-to-start---stop%29-tp20710710p20710710.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20472108</id>
	<title>Suggestions of crufty or otherwise bad APIs</title>
	<published>2008-11-12T15:45:39Z</published>
	<updated>2008-11-12T15:45:39Z</updated>
	<author>
		<name>Eckythump</name>
	</author>
	<content type="html">Hi everyone!
&lt;br&gt;&lt;br&gt;I am working on a course project for a software engineering class that generally deals with &amp;quot;Usability of APIs&amp;quot;. I have created some metrics that I wish to run a few Java APIs through and see how they measure up.
&lt;br&gt;&lt;br&gt;To test out my metrics (for example, on average how many parameters are in each method call), I need to run some &amp;quot;good&amp;quot; and &amp;quot;bad&amp;quot; APIs through it. I'm sure everyone has some specific parts of the Java API (say, XML for example) that they think is either hard to use or just not done very well. I would be interested in hearing what everyone's pet peeves are about the Java API, but I am more interested in hearing complaints about third-party APIs that are really bad (for example, an imaging library that you've used in the past).
&lt;br&gt;&lt;br&gt;So, what is everyone's most hated Java API, as well as most hated third-party API? Also, if you could give some indication of why you think it is especially bad (&amp;quot;I can never remember if I should call delete or remove&amp;quot;), that would be a huge help for my project.
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;Andre</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Suggestions-of-crufty-or-otherwise-bad-APIs-tp20472108p20472108.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20455960</id>
	<title>Training &amp; jobs</title>
	<published>2008-11-12T00:20:13Z</published>
	<updated>2008-11-12T00:20:13Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are 
&lt;br&gt;of utmost importance. Our highly skilled and dedicated instructors 
&lt;br&gt;train you explicitly in market-related technologies for today and 
&lt;br&gt;tomorrow. We will work with you in developing marketing strategies 
&lt;br&gt;and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting 
&lt;br&gt;careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;Excellent communication skills. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;(EAD, GC). 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Electronics or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Willing to relocate anywhere in USA.
&lt;br&gt;&lt;br&gt;What’s The Deal: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Green Card sponsorship through PERM 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Job focused professional training in 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Java/ J2EE 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; .NET 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Documentum 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Share point 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Oracle 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Data Modeling 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Relocation assistance- airfare, hotel accommodation, car rental 
&lt;br&gt;&amp;nbsp; &amp;nbsp;etc 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Guarantee lowest bench period. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Employee referral program. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us 
&lt;br&gt;at:609-843-0312 
&lt;br&gt;or 
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Training---jobs-tp20455960p20455960.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20415805</id>
	<title>Sun Voucher 's for only Rs 4500</title>
	<published>2008-11-10T00:05:15Z</published>
	<updated>2008-11-10T00:05:15Z</updated>
	<author>
		<name>frnd</name>
	</author>
	<content type="html">Hi friends,
&lt;br&gt;&lt;br&gt;I have two discount sun vouchers.
&lt;br&gt;If any one is interested then he can mail me.
&lt;br&gt;&lt;br&gt;frnd_zone4u@yahoo.co.in with subject Sun Voucher with your contact details
&lt;br&gt;&lt;br&gt;The vouchers expire on Jan 2009.
&lt;br&gt;&lt;br&gt;My current location is Mumbai.
&lt;br&gt;So, preferrable Mumbai/Navi Mumbai candidate can get it only at cost
&lt;br&gt;of Rs 4500/-</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Sun-Voucher-%27s-for-only-Rs-4500-tp20415805p20415805.html" />
</entry>

</feed>
