<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DZone Forums</title>
		<link>http://forums.dzone.com</link>
		<description />
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 00:24:57 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.dzone.com/images/bluesaint/misc/rss.jpg</url>
			<title>DZone Forums</title>
			<link>http://forums.dzone.com</link>
		</image>
		<item>
			<title>Disposable Temporary E-Mail Address</title>
			<link>http://forums.dzone.com/showthread.php?t=1955&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 12:32:29 GMT</pubDate>
			<description>Deagot.com provides you with disposable e-mail addresses which expire after 10 Minutes. You can read and reply to e-mails that are sent to the...</description>
			<content:encoded><![CDATA[<div>Deagot.com provides you with disposable e-mail addresses which expire after 10 Minutes. You can read and reply to e-mails that are sent to the temporary e-mail address within the given time frame.</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=37">Eclipse</category>
			<dc:creator>kepolego</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1955</guid>
		</item>
		<item>
			<title>Not able to login with NTML Credentials</title>
			<link>http://forums.dzone.com/showthread.php?t=1953&amp;goto=newpost</link>
			<pubDate>Thu, 19 Nov 2009 16:33:27 GMT</pubDate>
			<description>I am trying to login to welcome page of sharepoint portal by below code. But I am not able to do that. Below is code what I am using. 
 
 
public...</description>
			<content:encoded><![CDATA[<div>I am trying to login to welcome page of sharepoint portal by below code. But I am not able to do that. Below is code what I am using.<br />
<br />
<br />
public class InteractiveAuthenticationExample { <br />
<br />
<br />
	public InteractiveAuthenticationExample() { <br />
		super(); <br />
	} <br />
<br />
	public static void main(String[] args) throws Exception { <br />
<br />
		InteractiveAuthenticationExample demo = new InteractiveAuthenticationExample(); <br />
		demo.doDemo(); <br />
	} <br />
<br />
	private void doDemo() throws IOException { <br />
<br />
		HttpClient client = new HttpClient();<br />
<br />
		client.getParams().setParameter(<br />
<br />
				CredentialsProvider.PROVIDER, new ConsoleAuthPrompter());<br />
<br />
		GetMethod httpget = new GetMethod(&quot;http://somesite/Page/Welcome.aspx&quot;);<br />
<br />
		httpget.setDoAuthentication(true);<br />
<br />
		try {<br />
<br />
			// execute the GET<br />
<br />
			int status = client.executeMethod(httpget);<br />
<br />
			// print the status and response<br />
<br />
			System.out.println(httpget.getStatusLine().toStrin  g());<br />
<br />
			System.out.println(httpget.getResponseBodyAsString  ());<br />
<br />
		} finally {<br />
<br />
			// release any connection resources used by the method<br />
<br />
			httpget.releaseConnection();<br />
<br />
		}<br />
<br />
<br />
	} <br />
<br />
	public class ConsoleAuthPrompter implements CredentialsProvider { <br />
<br />
		private BufferedReader in = null;  <br />
		public ConsoleAuthPrompter() { <br />
			super(); <br />
			this.in = new BufferedReader(new InputStreamReader(System.in)); <br />
		} <br />
<br />
		private String readConsole() throws IOException { <br />
			return this.in.readLine(); <br />
		} <br />
<br />
		public Credentials getCredentials( <br />
				final AuthScheme authscheme,  <br />
				final String host,  <br />
				int port,  <br />
				boolean proxy) <br />
		throws CredentialsNotAvailableException  <br />
		{ <br />
			if (authscheme == null) { <br />
				return null; <br />
			} <br />
			try{ <br />
<br />
				if (authscheme instanceof NTLMScheme) { <br />
					System.out.println(host + &quot;:&quot; + port + &quot; requires Windows authentication&quot;); <br />
					System.out.print(&quot;Enter domain: &quot;); <br />
					String domain = readConsole();    <br />
					System.out.print(&quot;Enter username: &quot;); <br />
					String user = readConsole();    <br />
					System.out.print(&quot;Enter password: &quot;); <br />
					String password = readConsole(); <br />
					return new NTCredentials(user, password, host, domain);     <br />
				} else <br />
					if (authscheme instanceof RFC2617Scheme) { <br />
						System.out.println(host + &quot;:&quot; + port + &quot; requires authentication with the realm '&quot;  <br />
								+ authscheme.getRealm() + &quot;'&quot;); <br />
						System.out.print(&quot;Enter username: &quot;); <br />
						String user = readConsole();    <br />
						System.out.print(&quot;Enter password: &quot;); <br />
						String password = readConsole(); <br />
						return new UsernamePasswordCredentials(user, password);     <br />
					} else { <br />
						throw new CredentialsNotAvailableException(&quot;Unsupported authentication scheme: &quot; + <br />
								authscheme.getSchemeName()); <br />
					} <br />
			} catch (IOException e) { <br />
				throw new CredentialsNotAvailableException(e.getMessage(), e); <br />
			} <br />
		} <br />
	} <br />
}</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=15">Java</category>
			<dc:creator>singhkanhaiya</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1953</guid>
		</item>
		<item>
			<title>How to create themes in liferay 5.2</title>
			<link>http://forums.dzone.com/showthread.php?t=1951&amp;goto=newpost</link>
			<pubDate>Wed, 18 Nov 2009 09:20:21 GMT</pubDate>
			<description>Hi,  
 I am new to netbeans6.7 on Mac OSX... I am using Liferay5.2.3 with Jboss+Tomcat server. 
Kindly help me out how to create themes in netbeans...</description>
			<content:encoded><![CDATA[<div>Hi, <br />
 I am new to netbeans6.7 on Mac OSX... I am using Liferay5.2.3 with Jboss+Tomcat server.<br />
Kindly help me out how to create themes in netbeans using velocity files.</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=41">NetBeans</category>
			<dc:creator>sonikagupta_19</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1951</guid>
		</item>
		<item>
			<title>Contact US - webinars</title>
			<link>http://forums.dzone.com/showthread.php?t=1949&amp;goto=newpost</link>
			<pubDate>Wed, 18 Nov 2009 05:26:15 GMT</pubDate>
			<description>Hi All 
 
I am a developer and member of java lobby for past five years. I use to go through webinars hosted by Javalobby. But these days I am unable...</description>
			<content:encoded><![CDATA[<div>Hi All<br />
<br />
I am a developer and member of java lobby for past five years. I use to go through webinars hosted by Javalobby. But these days I am unable to view the webinars. <br />
<br />
Let also me if any of the community user need to contact, please provide the email id to contact.<br />
<br />
Please pass the information to <a href="mailto:srinivasarao.gurram@gmail.com">srinivasarao.gurram@gmail.com</a></div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=5">Feedback</category>
			<dc:creator>gurram_s</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1949</guid>
		</item>
		<item>
			<title>Register a Context Menu from a Dialog</title>
			<link>http://forums.dzone.com/showthread.php?t=1947&amp;goto=newpost</link>
			<pubDate>Tue, 17 Nov 2009 21:08:53 GMT</pubDate>
			<description>I currently have a wizard page that summarizes the actions that the wizard is about to perform in a table.  I would like to add my Copy command to...</description>
			<content:encoded><![CDATA[<div>I currently have a wizard page that summarizes the actions that the wizard is about to perform in a table.  I would like to add my Copy command to the context menu for this table.<br />
<br />
I know how to register context menus when those menus exist in a view or editor <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">viewPart.getSite().registerContextMenu(menuManger, viewer)</code><hr />
</div> and then associate Commands with that those menus.<br />
<br />
However, a wizard page is not a view or editor part and therefore does not have a Site associated with it.  Because of this I cannot register the context menu for the wizard page.<br />
<br />
Is it possible to register this context menu so that I can contribute Commands to the menu via the Command, Menu and Handler extension points in the plugin.xml file?<br />
<br />
If this is not possible, is the next best solution, to create an Action that invokes a Command via <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">handlerService.executeCommand()</code><hr />
</div> and manually add the Action to the context menu in the wizard page?\<br />
<br />
Any help would be greatly appreciated.<br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=37">Eclipse</category>
			<dc:creator>WhoDat</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1947</guid>
		</item>
		<item>
			<title><![CDATA["install" java version in other folder]]></title>
			<link>http://forums.dzone.com/showthread.php?t=1945&amp;goto=newpost</link>
			<pubDate>Tue, 17 Nov 2009 20:39:30 GMT</pubDate>
			<description><![CDATA[:) Hi - this is my first post -  
I understand how to download Java JRE.  It runs very automatically.  However, as I am on a "protected" workstation...]]></description>
			<content:encoded><![CDATA[<div>:) Hi - this is my first post - <br />
I understand how to download Java JRE.  It runs very automatically.  However, as I am on a &quot;protected&quot; workstation and do not have admin rights to write to the &quot;Program Files/Java&quot; directory, I can not download and install Java versions there.  I do have permissions to write to other directories, like my &quot;My Documents&quot; and directories sub to this.  <br />
I would like to download different Java versions, in order to test each version with the combination of different software packages.  We have found that some software does not play nice with various Java versions, and I have the noble and novel assigment to test each of our software packs with each of the Java versions, from 5.1 thru 6.17 inclusive.  I can activate a Java version from the My Documents using Java Control Panel. (BTW, we have over 16,000 users that I am testing for, so it is not a wasted effort.)<br />
Is there a way to do this (download Java JREs and load into a directory other than &quot;Program Files/Java&quot;?   :)</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=15">Java</category>
			<dc:creator>baruchatta</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1945</guid>
		</item>
		<item>
			<title>BIRT Chart scaling issue</title>
			<link>http://forums.dzone.com/showthread.php?t=1943&amp;goto=newpost</link>
			<pubDate>Mon, 16 Nov 2009 22:40:34 GMT</pubDate>
			<description>I use scripteddatasource and in my rptdesign, the scale for y axis is set to AUTO. It works most of the time, but I have this special case, when all...</description>
			<content:encoded><![CDATA[<div>I use scripteddatasource and in my rptdesign, the scale for y axis is set to AUTO. It works most of the time, but I have this special case, when all of my values in y axis are between 0 and -1.2%. In this case, the y axis scale ranges from 0 to -100% making the actual chart squeezed and so unusable. <br />
<br />
I think this is related to all values being less than or equal to zero. I have another chart where the values range from -0.3 to +0.3% and it works fine. <br />
<br />
Is there any workaround for this? Any help is greatly appreicated.<br />
<br />
Thanks,<br />
<br />
- Raja.</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=37">Eclipse</category>
			<dc:creator>rkannappan</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1943</guid>
		</item>
		<item>
			<title>Make Table fill entire composite</title>
			<link>http://forums.dzone.com/showthread.php?t=1941&amp;goto=newpost</link>
			<pubDate>Mon, 16 Nov 2009 16:57:22 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm new to SWT and JFace and I'm having a problem with TableViewer and Table. 
 
I want my table to fill it's parent composite horizontally,...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm new to SWT and JFace and I'm having a problem with TableViewer and Table.<br />
<br />
I want my table to fill it's parent composite horizontally, but I can't get it to work. See code below:<br />
<br />
<font color="Red">Composite composite = new Composite(parent, SWT.NONE);<br />
GridLayout gl = new GridLayout();<br />
int ncol = 1;<br />
gl.numColumns = ncol;<br />
composite.setLayout(gl);<br />
<br />
TableViewer myTableViewer = new TableViewer( composite, SWT.MULTI | SWT.FULL_SELECTION | SWT.V_SCROLL | SWT.H_SCROLL | SWT.TOP);<br />
	<br />
            // Set up the table	<br />
             GridData gd;<br />
	gd = new GridData(GridData.FILL_BOTH);<br />
    	gd.horizontalSpan = 1;<br />
     	gd.verticalAlignment = GridData.FILL_BOTH;<br />
     	gd.horizontalAlignment = GridData.BEGINNING;<br />
     	gd.grabExcessHorizontalSpace = true;<br />
     	gd.grabExcessVerticalSpace = true;        <br />
     	<br />
     	Table table = myTableViewer.getTable();     	<br />
     	table.setLayoutData(gd);<br />
     	table.setLinesVisible(true);<br />
     	table.setHeaderVisible(true);  <br />
     	<br />
             // Add columns     	<br />
     	for(int i=0; i&lt;myHeaders.length; i++){<br />
               TableColumn tc = new TableColumn(table, SWT.LEFT);<br />
               tc.setText(myHeaders[i]);               <br />
            }     	<br />
<br />
     	myTableViewer.getControl().setLayoutData(new GridData(GridData.FILL_BOTH, GridData.FILL_BOTH, true, true));<br />
        <br />
     	// Pack the columns<br />
     	for (int i = 0, n = table.getColumnCount(); i &lt; n; i++) {<br />
               table.getColumn(i).pack();<br />
            }<br />
        fillTable();</font><br />
The table does not fill the composite horizontally and if I remove <i>table.getColumn(i).pack();</i> I dont see any columns.<br />
<br />
Please assist!</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=37">Eclipse</category>
			<dc:creator>matwe</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1941</guid>
		</item>
		<item>
			<title>JD Edwards Data Archiving Solution</title>
			<link>http://forums.dzone.com/showthread.php?t=1939&amp;goto=newpost</link>
			<pubDate>Mon, 16 Nov 2009 08:20:29 GMT</pubDate>
			<description>Organizations can mitigate the impact of data growth by running batch reports during downtimes, purchasing faster hardware or purge data from the...</description>
			<content:encoded><![CDATA[<div>Organizations can mitigate the impact of data growth by running batch reports during downtimes, purchasing faster hardware or purge data from the application. <br />
<br />
None of these strategies fully address the reality of application growth coupled with the need for long term data retention. To maintain performance of JD Edwards database, while ensuring compliance, organizations must Analyze JD Edwards data for a given module or the sum total of the Application database.</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=22">Oracle</category>
			<dc:creator>debrah.h48</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1939</guid>
		</item>
		<item>
			<title>Need help in Building Tree in eclipse RCP</title>
			<link>http://forums.dzone.com/showthread.php?t=1937&amp;goto=newpost</link>
			<pubDate>Sun, 15 Nov 2009 19:27:18 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I am trying to use eclipse RCP to build a "tree" which takes in the content (Parent, Child) from user using a SWT controls like Text field,...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am trying to use eclipse RCP to build a &quot;tree&quot; which takes in the content (Parent, Child) from user using a SWT controls like Text field, combo etc. The controls will enable the user to enter the names of parents, child and sub-child etc. <br />
<br />
What is the best way to do this? I have tried researching about taking dynamic input to build the tree and also tried the famous treeviewer plugin &quot;MovingBox&quot;. I have not had much success.<br />
<br />
I just have the code of the view and using the treeviewer content and label providers. But I am lost as to how to start editing the sample code. <br />
<br />
I am new to eclipse RCP platform. Kindly assist me in building this tree.</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=37">Eclipse</category>
			<dc:creator>shafali</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1937</guid>
		</item>
		<item>
			<title>how to create a tablespace that consist a fix number of extents?</title>
			<link>http://forums.dzone.com/showthread.php?t=1935&amp;goto=newpost</link>
			<pubDate>Sun, 15 Nov 2009 16:53:34 GMT</pubDate>
			<description>i wanted to create a locally managed tablespace with uniform allocation of extents. And also want my tablespace to consist only let say 5 extents. It...</description>
			<content:encoded><![CDATA[<div>i wanted to create a locally managed tablespace with uniform allocation of extents. And also want my tablespace to consist only let say 5 extents. It will use only one data file.<br />
<br />
here is what i know:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><br />
CREATE TABLESPACE TABLE1<br />
EXTENT MANAGEMENT LOCAL<br />
UNIFORM SIZE 64K<br />
DATAFILE 'C:\ORACLE\ORADATA\MYDB\TABLE1.DBF'<br />
SIZE 5M<br />
AUTOEXTEND AUTO;</code><hr />
</div>I tried maxextents but error. I seriously have no idea whether is it possible to have a fix number of extents?</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=22">Oracle</category>
			<dc:creator>flaskvacuum</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1935</guid>
		</item>
		<item>
			<title>Opportunity for Java Developers</title>
			<link>http://forums.dzone.com/showthread.php?t=1933&amp;goto=newpost</link>
			<pubDate>Sun, 15 Nov 2009 15:44:58 GMT</pubDate>
			<description>Greetings. 
 
We are an Indian Startup focussed on UI design looking for Java Developers to strengthen our technical support to our client Make a...</description>
			<content:encoded><![CDATA[<div>Greetings.<br />
<br />
We are an Indian Startup focussed on UI design looking for Java Developers to strengthen our technical support to our client <a href="http://www.rangde.org" target="_blank">Make a difference today</a>. Anyone interested is requested to forward your profile to <a href="mailto:careers@cheesecare.com">careers@cheesecare.com</a>. To know more about us please visit <a href="http://www.cheesecare.com" target="_blank">C h e e s e C o r p o r a t e C a r e</a>.<br />
<br />
Regards,<br />
<br />
Ayush</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=15">Java</category>
			<dc:creator>ayush39</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1933</guid>
		</item>
		<item>
			<title>running crystal reports</title>
			<link>http://forums.dzone.com/showthread.php?t=1931&amp;goto=newpost</link>
			<pubDate>Sun, 15 Nov 2009 10:03:12 GMT</pubDate>
			<description>i have developed a swing project using eclipse 3.2.1 .it uses crystal reports for reporting.everything is working fine within eclipse. 
             ...</description>
			<content:encoded><![CDATA[<div>i have developed a swing project using eclipse 3.2.1 .it uses crystal reports for reporting.everything is working fine within eclipse.<br />
              i want to run this project from command prompt. when i run this project from cmd prompt,forms with &quot;import com.crystaldecisions.reports.sdk.*; statements&quot; are not displayed.should i change my classpath settings? please help</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=37">Eclipse</category>
			<dc:creator>renjini</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1931</guid>
		</item>
		<item>
			<title>build.xml, classpath and Sphinx4</title>
			<link>http://forums.dzone.com/showthread.php?t=1927&amp;goto=newpost</link>
			<pubDate>Fri, 13 Nov 2009 22:23:31 GMT</pubDate>
			<description>Hello :-)! 
 
I downloaded CMU Sphinx files (Sphinx4 speech recognition system written in Java). There are two directories, sphinx4-1.0beta3-bin and...</description>
			<content:encoded><![CDATA[<div>Hello :-)!<br />
<br />
I downloaded CMU Sphinx files (Sphinx4 speech recognition system written in Java). There are two directories, sphinx4-1.0beta3-bin and sphinx4-1.0beta3-src. In bin directory I've got working jar files and in src java files with code of those applications. I'd like to create jar files from java files by my own. I'd like to make some changes in the code and see whether it works. I tried to do it with NetBeans but I had many difficulties with doing that so I decided to download Eclipse and now it's much easier! However there are still some problems.<br />
<br />
If you're interested in my attempts to solve this issue in NetBeans: <a href="https://sourceforge.net/projects/cmusphinx/forums/forum/382337/topic/3453042" target="_blank">https://sourceforge.net/projects/cmu.../topic/3453042</a> . The procedure of what I need to do in Eclipse/NetBeans is here and now I try to follow it in Eclipse: <a href="http://cmusphinx.sourceforge.net/sphinx4/#setupide" target="_blank">Sphinx-4 - A speech recognizer written entirely in the Java(TM) programming language</a> . I followed first and second step and I don't know how to do what is later. You can download Sphinx4 for free in order to see what is inside it here: <a href="https://sourceforge.net/projects/cmusphinx/files/sphinx4/" target="_blank">https://sourceforge.net/projects/cmu...files/sphinx4/</a> .<br />
<br />
I would be greatful if you can tell me how to add this build.xml as project ant file and add the src/apps folder to my classpath. The last step of the instruction is as follows: &quot;To perform common tasks (like deployment of  the sphinx4.jar, the models or the demo-jars) directly from within your IDE you might also want to add the bundled build.xml as project ant file. This can be done in most cases by just right-clicking the build.xml in the file navigator pane of your IDE and selecting &quot;Add as project ant file&quot;. To debug the demo applications you also need to add the src/apps folder and the acoustic model jars (that can be deployed to the lib-directory with a simple ant all) to your classpath&quot;.<br />
<br />
Thanks in advance for your help!<br />
Greetings :-)!<br />
<br />
PS I also founds <a href="http://www.tm.tfh-wildau.de/~omayer/Mustererkennung/SphinxWebDokumente/Sphinx-4%20Setup%20on%20Eclipse.pdf" target="_blank">http://www.tm.tfh-wildau.de/~omayer/...%20Eclipse.pdf</a> but for me it looks like it is about building the whole Sphinx4 in Eclipse. What I'd like to do is to build application which uses Sphinx4, e.g. HelloWorld.java or HelloDigits.java. (Download Sphinx4 to see it).</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=37">Eclipse</category>
			<dc:creator>johnyjj2</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1927</guid>
		</item>
		<item>
			<title>App Runs in eclipse, wish to run from command line now(With dependencies)</title>
			<link>http://forums.dzone.com/showthread.php?t=1925&amp;goto=newpost</link>
			<pubDate>Fri, 13 Nov 2009 18:38:05 GMT</pubDate>
			<description><![CDATA[Hello, I have an application that is 8 projects large and has many jar dependencies for each project.  
 
I'm trying to create a batch file on my...]]></description>
			<content:encoded><![CDATA[<div>Hello, I have an application that is 8 projects large and has many jar dependencies for each project. <br />
<br />
I'm trying to create a batch file on my second computer that will <br />
<br />
1.XCopy my workspace to the second computer.(I have this part down)<br />
2.Run JFCUnit Tests on my second computer.<br />
<br />
I'm wondering if there is an easy way that I can run an application that is developed in eclipse from the command line that includes all dependencies(such as maybe using an external program, possibly such as one that is what eclipse uses to run this program with all dependencies from the .classpath files).<br />
<br />
Mostly I guess I'm wondering if eclipse has an external program(Hopefully one that's already in my eclipse folder). that can be called from the command line along with a class(Or maybe it needs to point to wherever run configurations are stored inside a workspace and run one of them).<br />
<br />
Any help is appreciated thank you.</div>

]]></content:encoded>
			<category domain="http://forums.dzone.com/forumdisplay.php?f=37">Eclipse</category>
			<dc:creator>boneless1213</dc:creator>
			<guid isPermaLink="true">http://forums.dzone.com/showthread.php?t=1925</guid>
		</item>
	</channel>
</rss>
