<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>webMethods Learner</title>
	<atom:link href="http://wmlearner.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wmlearner.wordpress.com</link>
	<description>Reading, understanding, and trying to write it down</description>
	<lastBuildDate>Wed, 28 Jan 2009 08:01:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='wmlearner.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>webMethods Learner</title>
		<link>http://wmlearner.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://wmlearner.wordpress.com/osd.xml" title="webMethods Learner" />
	<atom:link rel='hub' href='http://wmlearner.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Accessing dblink using Dynamic SQL</title>
		<link>http://wmlearner.wordpress.com/2009/01/26/accessing-dblink-using-dynamic-sql/</link>
		<comments>http://wmlearner.wordpress.com/2009/01/26/accessing-dblink-using-dynamic-sql/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 06:05:15 +0000</pubDate>
		<dc:creator>nie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wmlearner.wordpress.com/?p=23</guid>
		<description><![CDATA[As I had mentioned in my previous post. After I install oracle 8i machine on my XP Professional succesfully, I should create database link in my 8i and create store procedure using dynamic SQL. I need dynamic SQL because I need to build a database gateway that collect data from many resource of database machine. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=23&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As I had mentioned in my previous post. After I install oracle 8i machine on my XP Professional succesfully, I should create database link in my 8i and create store procedure using dynamic SQL. I need dynamic SQL because I need to build a database gateway that collect data from many resource of database machine. So, technically the database link is represented as variable i/o in the store procedure.</p>
<p>Here, the example code that contain dynamic sql to query specific data from table x in database link name y:<br />
<code><br />
ds_numrows    NUMBER; --as global variable<br />
ds_cursor_id    NUMBER;  --as global variable<br />
queryString := 'SELECT x.attr1, x.attr2 from x@y';<br />
ds_cursor_id := DBMS_SQL.open_cursor;<br />
DBMS_SQL.parse (ds_cursor_id, queryString, DBMS_SQL.v7);<br />
DBMS_SQL.define_column (ds_cursor_id, 1, queryString, 1024);<br />
ds_numrows := DBMS_SQL.EXECUTE (ds_cursor_id);<br />
LOOP<br />
IF DBMS_SQL.fetch_rows (ds_cursor_id) = 0<br />
THEN<br />
EXIT;<br />
END IF;<br />
DBMS_SQL.column_value (ds_cursor_id, 1, queryString );<br />
END LOOP;<br />
DBMS_SQL.close_cursor (ds_cursor_id);<br />
COMMIT;<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wmlearner.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wmlearner.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wmlearner.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wmlearner.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wmlearner.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wmlearner.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wmlearner.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wmlearner.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wmlearner.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wmlearner.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wmlearner.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wmlearner.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wmlearner.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wmlearner.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=23&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wmlearner.wordpress.com/2009/01/26/accessing-dblink-using-dynamic-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d77d5ed6045855ac559edb96c792d5d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nie</media:title>
		</media:content>
	</item>
		<item>
		<title>install Oracle 8i in Windows XP</title>
		<link>http://wmlearner.wordpress.com/2009/01/24/install-oracle-8i-in-windows-xp/</link>
		<comments>http://wmlearner.wordpress.com/2009/01/24/install-oracle-8i-in-windows-xp/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 04:35:47 +0000</pubDate>
		<dc:creator>nie</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle 8i]]></category>

		<guid isPermaLink="false">http://wmlearner.wordpress.com/?p=17</guid>
		<description><![CDATA[Finally, They believe me to develop a project. yattaaaa.. It&#8217;s really amazing for me. I&#8217;ll do my best..  YOSSSHHH.. hehehe&#8230; I should create a dblink and store procedure that contain dynamic sql to query some data from oracle 8i to oracle 7i. Due to oracle 7i only can be access successfully using dblink that created [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=17&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally, They believe me to develop a project. yattaaaa..<br />
It&#8217;s really amazing for me. I&#8217;ll do my best..  YOSSSHHH.. hehehe&#8230;<br />
I should create a dblink and store procedure that contain dynamic sql to query some data from oracle 8i to oracle 7i. Due to oracle 7i only can be access successfully using dblink that created in oracle 8i so I should install oracle 8i first at my XP Professional OS. It can be accessed using dblink from 9i, but the connection&#8217;s too slow.</p>
<p>First step, I should <strong>install Oracle 8i in Windows XP</strong> before create the dblink. So many times I tried but the 8i setup was still not working. Then, as usual, I&#8217;m googling and.. tam.. ra.. ram&#8230;<br />
just do this:</p>
<blockquote>
<ol>
<li>Copy the content of your Oracle CD into hard disk in your machine. For example Copy from oracle8i CD into D:\Oracle\ &#8230;</li>
<li>Search the file Symcjit.dll on the D drive (where you have copied Oracle8i. You can found it in:
<ul>
<li>For Oracle8i 1.7:</li>
<p>D:\Oracle\stage\Components\oracle.swd.jre\1.1.7.30\1\<br />
DataFiles\Expanded\jre\win32\bin\symcjit.dll</ul>
<ul>
<li>For Oracle8i 1.6:</li>
<p>D:\Oracle\stage\Components\oracle.swd.jre\1.1.7.24\1\<br />
DataFiles\Expanded\jre\win32\bin\symcjit.dll</ul>
</li>
<li>Rename those file (Example): symcjit_back.dll</li>
<li>Execute the Oracle setup.exe from D:\Oracle\setup.exe</li>
</ol>
</blockquote>
<p>Yatta, it&#8217;s really works Friend..<br />
Ok, lets go to the next step.. ^o^</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wmlearner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wmlearner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wmlearner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wmlearner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wmlearner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wmlearner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wmlearner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wmlearner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wmlearner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wmlearner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wmlearner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wmlearner.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wmlearner.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wmlearner.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=17&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wmlearner.wordpress.com/2009/01/24/install-oracle-8i-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d77d5ed6045855ac559edb96c792d5d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nie</media:title>
		</media:content>
	</item>
		<item>
		<title>Sending mail with PHP using SMTP-auth (PEAR package)</title>
		<link>http://wmlearner.wordpress.com/2008/12/16/sending-mail-with-php-using-smtp-auth/</link>
		<comments>http://wmlearner.wordpress.com/2008/12/16/sending-mail-with-php-using-smtp-auth/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 03:25:26 +0000</pubDate>
		<dc:creator>nie</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PEAR::MAIL]]></category>

		<guid isPermaLink="false">http://wmlearner.wordpress.com/?p=11</guid>
		<description><![CDATA[To protect essentials network, servers, and customers from spamming, it requires the use of SMTP-auth for all methods of sending email. The basic PHP Mail function does not support SMTP-auth, therefore cannot be used. To write your own PHP code to send email using SMTP-auth, there are PHP PEAR Mail package available for usage (which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=11&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To protect essentials network, servers, and customers from spamming, it requires the use of SMTP-auth for all methods of sending email.  The basic PHP Mail function does not support SMTP-auth, therefore cannot be used.</p>
<p>To write your own PHP code to send email using SMTP-auth, there are PHP PEAR Mail package available for usage (which supports smtp-auth). PHP code sample below shows how to use this feature to send an email:</p>
<p><code><br />
require_once "Mail.php";</code></p>
<p><code>/**************************************************<br />
EDIT the following variables for your own use<br />
***************************************************/<br />
$from = "user@domain";<br />
$to = "user2@domain2";</code></p>
<p><code>$subject = "Hi!"; //type in subject here</code></p>
<p><code>$host = "host_ip"; // Your domain<br />
$username = "user"; // Your user / full email address<br />
$password = "password"; // Password to your email address</p>
<p>/**************************************************<br />
***************************************************/</p>
<p>$body = "Test";</p>
<p>foreach($_POST as $a =&gt; $b)<br />
{<br />
$body .= $a .": ". $b . "\n";<br />
}<br />
$headers = array ('From' =&gt; $from,<br />
'To' =&gt; $to,<br />
'Subject' =&gt; $subject);<br />
$smtp = Mail::factory('smtp',<br />
array ('host' =&gt; $host,<br />
'auth' =&gt; true,<br />
'username' =&gt; $username,<br />
'password' =&gt; $password));</p>
<p>$mail = $smtp-&gt;send($to, $headers, $body);</p>
<p>if (PEAR::isError($mail)) {<br />
/**************************************************<br />
ERROR MESSAGE<br />
***************************************************/<br />
?&gt;</p>
<p>getMessage(); ?&gt;<br />
/**************************************************/<br />
} else {<br />
/**************************************************<br />
SUCCESS MESSAGE<br />
***************************************************/<br />
?&gt;<br />
Message successfully sent!<br />
/**************************************************/<br />
}</p>
<p></code><br />
<code>?&gt;<br />
</code></p>
<p>grabbed from <a href="http://knowledge.3essentials.com/index.asp?menu=a1_2&amp;go=article&amp;id=394">here</a> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wmlearner.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wmlearner.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wmlearner.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wmlearner.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wmlearner.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wmlearner.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wmlearner.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wmlearner.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wmlearner.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wmlearner.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wmlearner.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wmlearner.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wmlearner.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wmlearner.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=11&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wmlearner.wordpress.com/2008/12/16/sending-mail-with-php-using-smtp-auth/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d77d5ed6045855ac559edb96c792d5d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nie</media:title>
		</media:content>
	</item>
		<item>
		<title>How to export and import Oracle Database using command prompt?</title>
		<link>http://wmlearner.wordpress.com/2008/12/11/how-to-export-and-import-oracle-database-using-command-prompt/</link>
		<comments>http://wmlearner.wordpress.com/2008/12/11/how-to-export-and-import-oracle-database-using-command-prompt/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 09:35:59 +0000</pubDate>
		<dc:creator>nie</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Export and Import Oracle Database]]></category>

		<guid isPermaLink="false">http://wmlearner.wordpress.com/?p=8</guid>
		<description><![CDATA[First thing you should do is change the tnsnames.ora files with the code below. This .ora file is under directory \client_1\NETWORK\ADMIN\ conn1 = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = IP_Address)(PORT = 1521)) ) (CONNECT_DATA = (SID = XE) or (SERVICE_NAME = conn1) ) ) then save the file and open the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=8&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First thing you should do is change the tnsnames.ora files with the code below. This .ora file is under directory \client_1\NETWORK\ADMIN\</p>
<p><code><br />
conn1 =<br />
(DESCRIPTION =<br />
(ADDRESS_LIST =<br />
(ADDRESS = (PROTOCOL = TCP)(HOST = IP_Address)(PORT = 1521))<br />
)<br />
(CONNECT_DATA =<br />
(SID = XE)<br />
<del>or (SERVICE_NAME = conn1)</del><br />
)<br />
)<br />
</code></p>
<p>then save the file and open the command prompt (windows key + R, type cmd).</p>
<p><strong>Export:</strong></p>
<blockquote><p>To export, type this command in cmd:<br />
<code>&gt;&gt; exp user/password@instant</code><br />
It will show many questions, leave it with default answer using hit enter. But, there are the important question, such as:<br />
- (<code>2)U(sers), or (3)T(ables): (2)U &gt;</code><br />
<em>2 : to export all database under user that mentioned above</em><br />
<em>3 : to export selected tables only. If 3 choosed, it will appear question what tables that will be exported</em><br />
- <code>Export grants (yes/no): yes &gt;</code> (type Y or N)<br />
- <code>Export table data (yes/no): yes &gt;</code> (type Y or N)<br />
- <code>Compress extents (yes/no): yes &gt;</code> (type Y or N)</p></blockquote>
<p>In the rest, make sure that appear message <em><strong>Export terminated successfully without warnings</strong></em>.</p>
<p><strong>Import:</strong></p>
<blockquote><p>To import full dmp file type this command in cmd:<br />
<code>&gt;&gt; imp user/password@instant file=emp.dmp log=imp.log full=yes</code></p>
<p>To import dept table alone type this command in cmd:<br />
<code>&gt;&gt; imp user/password@instant file=emp.dmp log=imp.log fromuser=user touser=user tables=dept</code></p>
<p>FROMUSER and TOUSER clause are optional. But in case if used, then create a user in the destination database that is mentioned in TOUSER clause then try importing the dmp file.</p></blockquote>
<p>In the rest, make sure that appear message <em><strong>Export terminated successfully without warnings</strong></em>.<br />
If there are still warnings, please check the dblink connection. If it has a problem connection with dblink, drop the current dblink (result of importing) and create new dblink with simple new name.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wmlearner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wmlearner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wmlearner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wmlearner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wmlearner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wmlearner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wmlearner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wmlearner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wmlearner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wmlearner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wmlearner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wmlearner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wmlearner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wmlearner.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=8&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wmlearner.wordpress.com/2008/12/11/how-to-export-and-import-oracle-database-using-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d77d5ed6045855ac559edb96c792d5d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nie</media:title>
		</media:content>
	</item>
		<item>
		<title>Integration Server didn&#8217;t started</title>
		<link>http://wmlearner.wordpress.com/2008/12/10/integration-server-didnt-started/</link>
		<comments>http://wmlearner.wordpress.com/2008/12/10/integration-server-didnt-started/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 04:28:55 +0000</pubDate>
		<dc:creator>nie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wmlearner.wordpress.com/?p=6</guid>
		<description><![CDATA[If you have some problem with starting a webMethods Integration Server. You should search file LOCK under folder [root installation]/../Integration Server/bin/ If these file already there, and the IS machine still doesn&#8217;t start. So delete this file (LOCK file), and start again the IS machine. &#8211; solved - This LOCK file still there, because the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=6&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you have some problem with starting a webMethods Integration Server. You should search file LOCK under folder [root installation]/../Integration Server/bin/<br />
If these file already there, and the IS machine still doesn&#8217;t start. So delete this file (LOCK file), and start again the IS machine. &#8211; solved -</p>
<p>This LOCK file still there, because the IS machine stopped incorrectly. While system stopped, the LOCK file hadn&#8217;t deleted.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wmlearner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wmlearner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wmlearner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wmlearner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wmlearner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wmlearner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wmlearner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wmlearner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wmlearner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wmlearner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wmlearner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wmlearner.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wmlearner.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wmlearner.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=6&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wmlearner.wordpress.com/2008/12/10/integration-server-didnt-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d77d5ed6045855ac559edb96c792d5d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nie</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://wmlearner.wordpress.com/2008/12/09/hello-world/</link>
		<comments>http://wmlearner.wordpress.com/2008/12/09/hello-world/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 01:39:42 +0000</pubDate>
		<dc:creator>nie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello everyone!! This weblog will contain all about webMethods technology. webMethods is one of integration system that used in my company. This writing dedicated to everyone who want to learn about webMethods.  OK, this is the start. I&#8217;m still learning too..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=1&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello everyone!!<br />
This weblog will contain all about webMethods technology. webMethods is one of integration system that used in my company. This writing dedicated to everyone who want to learn about webMethods. </p>
<p>OK, this is the start. I&#8217;m still learning too..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wmlearner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wmlearner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wmlearner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wmlearner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wmlearner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wmlearner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wmlearner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wmlearner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wmlearner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wmlearner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wmlearner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wmlearner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wmlearner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wmlearner.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wmlearner.wordpress.com&amp;blog=5787933&amp;post=1&amp;subd=wmlearner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wmlearner.wordpress.com/2008/12/09/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d77d5ed6045855ac559edb96c792d5d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nie</media:title>
		</media:content>
	</item>
	</channel>
</rss>
