<?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>takie tam dyrdymały</title>
	<atom:link href="http://starmacco.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://starmacco.wordpress.com</link>
	<description>jeszcze jeden ekshibicjonista piszacy na sieci</description>
	<lastBuildDate>Tue, 05 Apr 2011 16:20:09 +0000</lastBuildDate>
	<language>pl</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='starmacco.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>takie tam dyrdymały</title>
		<link>http://starmacco.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://starmacco.wordpress.com/osd.xml" title="takie tam dyrdymały" />
	<atom:link rel='hub' href='http://starmacco.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Setting DataSources in Weblogic 10 with WLST (setEncrypt)</title>
		<link>http://starmacco.wordpress.com/2011/03/31/setting-datasources-in-weblogic-10-with-wlst-setencrypt/</link>
		<comments>http://starmacco.wordpress.com/2011/03/31/setting-datasources-in-weblogic-10-with-wlst-setencrypt/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 10:35:59 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[weblogic]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/?p=105</guid>
		<description><![CDATA[﻿﻿# This script creates DataSources in Weblogic configuration using Defined Dictionary of DS and already stored encrypted password # What is interesting here that setEncrypted wlst command is not documented on Oracle pages # DS Dictionary with DataSource:JNDIName Entries, coma separated # We assume that we have already one DS created from the console an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=105&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>﻿﻿# This script creates DataSources in Weblogic configuration using Defined Dictionary of DS and already stored encrypted password<br />
# What is interesting here that setEncrypted wlst command is not documented on Oracle pages<br />
# DS Dictionary with DataSource:JNDIName Entries, coma separated<br />
# We assume that we have already one DS created from the console an Password has been stored in<br />
#   setEncrypted(&#8216;Password&#8217;, &#8216;Password_1301559772904&#8242;, &#8216;/opt/wls/weblogic/10.3/user_projects/cbd2Domain/WLSTScript-Recording-logConfig&#8217;, &#8216;/opt/wls/weblogic/10.3/user_projects/cbd2Domain/WLSTScript-Recording-logSecret&#8217;)<br />
#<br />
# start this script with execfile(&#8216;/path/to/this/script.py&#8217;)<br />
#<br />
<span style="color:#808080;">startEdit()</span><br />
<span style="color:#000000;"># Dictionary definition </span><br />
<span style="color:#808080;">DS={&#8216;DSN1&#8242;:&#8217;JNDI1&#8242;,&#8217;DS2&#8242;:&#8217;JNDI2&#8242;,&#8217;DS3&#8242;:&#8217;JNDI3&#8242;} </span></p>
<p><span style="color:#808080;">for DSName, JNDI in DS.items(): </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> print &#8222;DSName = &#8221; + DSName </span><br />
<span style="color:#808080;"> print &#8222;JNDI = &#8221; + JNDI </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/&#8217;) </span><br />
<span style="color:#808080;"> cmo.createJDBCSystemResource(DSName) </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/JDBCSystemResources/&#8217;+DSName+&#8217;/JDBCResource/&#8217;+DSName) </span><br />
<span style="color:#808080;"> cmo.setName(DSName) </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/JDBCSystemResources/&#8217;+DSName+&#8217;/JDBCResource/&#8217;+DSName+&#8217;/JDBCDataSourceParams/&#8217;+DSName) </span><br />
<span style="color:#808080;"> set(&#8216;JNDINames&#8217;,jarray.array([String(JNDI)], String)) </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/JDBCSystemResources/&#8217;+DSName+&#8217;/JDBCResource/&#8217;+DSName+&#8217;/JDBCDriverParams/&#8217;+DSName) </span><br />
<span style="color:#808080;"> cmo.setUrl(&#8216;jdbc:oracle:thin:@fdcicgcbdad01u.eur.nsroot.net:1541:UELCCBD2&#8242;) </span><br />
<span style="color:#808080;"> cmo.setDriverName(&#8216;oracle.jdbc.OracleDriver&#8217;) </span><br />
<span style="color:#ff0000;"> setEncrypted(&#8216;Password&#8217;, <strong>&#8216;Password_1301559772904&#8242;, &#8216;/opt/wls/weblogic/10.3/user_projects/cbd2Domain/WLSTScript-Recording-logConfig&#8217;, &#8216;/opt/wls/weblogic/10.3/user_projects/cbd2Domain/WLSTScript-Recording-logSecret&#8217;</strong>)</span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/JDBCSystemResources/&#8217;+DSName+&#8217;/JDBCResource/&#8217;+DSName+&#8217;/JDBCConnectionPoolParams/&#8217;+DSName) </span><br />
<span style="color:#808080;"> cmo.setTestTableName(&#8216;SQL SELECT 1 FROM DUAL\r\n\r\n\r\n&#8217;) </span><br />
<span style="color:#808080;"> cmo.setTestConnectionsOnReserve(true) </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/JDBCSystemResources/&#8217;+DSName+&#8217;/JDBCResource/&#8217;+DSName+&#8217;/JDBCDriverParams/&#8217;+DSName+&#8217;/Properties/&#8217;+DSName) </span><br />
<span style="color:#808080;"> cmo.createProperty(&#8216;user&#8217;) </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/JDBCSystemResources/&#8217;+DSName+&#8217;/JDBCResource/&#8217;+DSName+&#8217;/JDBCDriverParams/&#8217;+DSName+&#8217;/Properties/&#8217;+DSName+&#8217;/Properties/user&#8217;) </span><br />
<span style="color:#808080;"> cmo.setValue(&#8216;uelccbd&#8217;) </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/JDBCSystemResources/&#8217;+DSName+&#8217;/JDBCResource/&#8217;+DSName+&#8217;/JDBCDataSourceParams/&#8217;+DSName) </span><br />
<span style="color:#808080;"> cmo.setGlobalTransactionsProtocol(&#8216;OnePhaseCommit&#8217;) </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> cd(&#8216;/SystemResources/&#8217;+DSName) </span><br />
<span style="color:#808080;"> set(&#8216;Targets&#8217;,jarray.array([], ObjectName)) </span></p>
<p style="padding-left:30px;"><span style="color:#808080;"> set(&#8216;Targets&#8217;,jarray.array([ObjectName('com.bea:Name=cbd2Cluster,Type=Cluster')], ObjectName)) </span></p>
<p><span style="color:#808080;">save() </span><br />
<span style="color:#808080;">activate()</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=105&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2011/03/31/setting-datasources-in-weblogic-10-with-wlst-setencrypt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>Eclipse and remote file editing</title>
		<link>http://starmacco.wordpress.com/2011/01/17/eclipse-and-remote-file-editing/</link>
		<comments>http://starmacco.wordpress.com/2011/01/17/eclipse-and-remote-file-editing/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 15:29:14 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[komputer]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2011/01/17/eclipse-and-remote-file-editing/</guid>
		<description><![CDATA[Remote System Explorer &#8211; first hit in google and that it! It allows: * remote files editing via SSH/FTP.. * terminal on remote server &#160; Help-&#62;Install New Software Add Site: Work with: http://download.eclipse.org/tm/updates/3.2 Select + Remote System Explorer End-User Runtime Select from TM and RSE Uncategorized +RSE SSH Services Window-&#62;Open Perspective-&#62;Remote System Explorer In &#8216;Remote [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=101&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Remote System Explorer &#8211; first hit in google and that it!</p>
<p>It allows:</p>
<p>* remote files editing via SSH/FTP..</p>
<p>* terminal on remote server</p>
<p>&nbsp;</p>
<p>Help-&gt;Install New Software</p>
<p>Add Site:</p>
<p>Work with: http://download.eclipse.org/tm/updates/3.2</p>
<p>Select<br />
+ Remote System Explorer End-User Runtime<br />
Select from TM and RSE Uncategorized<br />
+RSE SSH Services</p>
<p>Window-&gt;Open Perspective-&gt;Remote System Explorer</p>
<p>In &#8216;Remote System&#8217; Tab &#8211; &#8216;Define a connection to remote system&#8217; (icon a side to tab name)</p>
<p>or from Main menu:</p>
<p>New-&gt;Other-&gt;Remote System Explorer-&gt;Connection</p>
<p>Plugin SITE:</p>
<p>http://www.eclipse.org/tm/tutorial/index.php</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=101&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2011/01/17/eclipse-and-remote-file-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>customizing Sun One Web Server 6.1 logs</title>
		<link>http://starmacco.wordpress.com/2010/11/11/customizing-sun-one-web-server-6-1-logs/</link>
		<comments>http://starmacco.wordpress.com/2010/11/11/customizing-sun-one-web-server-6-1-logs/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 10:47:55 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2010/11/11/customizing-sun-one-web-server-6-1-logs/</guid>
		<description><![CDATA[Adding request header to access log in magnus.conf add/change line Init fn=flex-init access=&#8221;$accesslog&#8221; format.access=&#8221;%Ses-&#62;client.ip% &#8211; %Req-&#62;vars.auth-user% [%SYSDATE%] \&#8221;%Req-&#62;reqpb.clf-request%\&#8221; %Req-&#62;srvhdrs.clf-status% %Req-&#62;srvhdrs.content-length%&#160;%Req-&#62;headers.originatingip% %Req-&#62;headers.host%&#8221;&#160; Custom header pattern is &#160; %Req-&#62;headers.&#60;HEADERNAME&#62;% IMPORTANT add &#60;HEADERNAME&#62; lowercase letters.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=96&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>      <!--        p { margin-top: 0 }        body { font-family: SansSerif; color: #000000; font-size: 12pt }      -->
<p>      <strong>Adding request header to access log </strong>    </p>
</p>
<p>      in magnus.conf add/change line    </p>
<p>      <em>Init fn=flex-init access=&#8221;$accesslog&#8221; format.access=&#8221;%Ses-&gt;client.ip%      &#8211; %Req-&gt;vars.auth-user% [%SYSDATE%] \&#8221;%Req-&gt;reqpb.clf-request%\&#8221;      %Req-&gt;srvhdrs.clf-status% %Req-&gt;srvhdrs.content-length%&nbsp;<font color="#0000cc">%Req-&gt;headers.originatingip%      %Req-&gt;headers.host%&#8221;</font>&nbsp;</em>    </p>
</p>
<p>Custom header pattern is
</p>
<p>&nbsp;      %Req-&gt;headers.&lt;HEADERNAME&gt;%    </p>
</p>
<p>      <strong>IMPORTANT </strong>    </p>
</p>
<p>add &lt;HEADERNAME&gt; lowercase letters.    </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=96&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2010/11/11/customizing-sun-one-web-server-6-1-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>Customer Care Department &#8211; connected minds employment</title>
		<link>http://starmacco.wordpress.com/2010/09/30/customer-care-department-connected-minds-employment/</link>
		<comments>http://starmacco.wordpress.com/2010/09/30/customer-care-department-connected-minds-employment/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 14:13:55 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[luźne]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2010/09/30/customer-care-department-connected-minds-employment/</guid>
		<description><![CDATA[* Employees of CCD minds connected together into one big&#160; CCD (ARtificial?)Inteligence * On input customers * On output once CCD mind * After working hours, no employees, mind is disintegrated * During hours &#8211; mind is integrated<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=95&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>* Employees of CCD minds connected together into one big&nbsp; CCD (ARtificial?)Inteligence<br />
* On input customers<br />
* On output once CCD mind <br />
* After working hours, no employees, mind is disintegrated<br />
* During hours &#8211; mind is integrated</p>
<p></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=95&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2010/09/30/customer-care-department-connected-minds-employment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>This is example how to iterate over CSV file in python</title>
		<link>http://starmacco.wordpress.com/2010/09/06/this-is-example-how-to-iterate-over-csv-file-in-python/</link>
		<comments>http://starmacco.wordpress.com/2010/09/06/this-is-example-how-to-iterate-over-csv-file-in-python/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 09:27:55 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2010/09/06/this-is-example-how-to-iterate-over-csv-file-in-python/</guid>
		<description><![CDATA[This simple&#160; example does not use csv module. IT could be used for example to set DB connections &#60;code&#62; import sys CSVFile=&#8217;/var/tmp/your_file.csv&#8217; def processRow(row): &#160;&#160;&#160; args=row.split(&#8216;,&#8217;) &#160;&#160;&#160; (DatabaseName,DatabaseUserName,HostName,DatasourceName,Port,MaxConn)=args[4:10] &#160;&#160;&#160; print row &#160;&#160;&#160; print &#8221; DBName = &#8221; + DatabaseName +\ &#8222;\n DatabaseUserName = &#8221; + DatabaseUserName +\ &#8222;\n Hostname = &#8221; + HostName +\ &#8222;\n [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=94&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This simple&nbsp; example does not use csv module.<br />
IT could be used for example to set DB connections</p>
<p>&lt;code&gt;<br />
import sys</p>
<p>CSVFile=&#8217;/var/tmp/your_file.csv&#8217;</p>
<p>def processRow(row):<br />
&nbsp;&nbsp;&nbsp; args=row.split(&#8216;,&#8217;)<br />
&nbsp;&nbsp;&nbsp; (DatabaseName,DatabaseUserName,HostName,DatasourceName,Port,MaxConn)=args[4:10]</p>
<p>&nbsp;&nbsp;&nbsp; print row<br />
&nbsp;&nbsp;&nbsp; print &#8221; DBName = &#8221; + DatabaseName +\<br />
&#8222;\n DatabaseUserName = &#8221; + DatabaseUserName +\<br />
&#8222;\n Hostname = &#8221; + HostName +\<br />
&#8222;\n DSName = &#8221; +&nbsp; DatasourceName +\<br />
&#8222;\n Port = &#8221; + Port +\<br />
&#8222;\n MaxConn = &#8221; +&nbsp; MaxConn</p>
<p>&nbsp;&nbsp;&nbsp; # PUT YOUR CODE HERE<br />
&nbsp;&nbsp;&nbsp; <br />
&nbsp;&nbsp;&nbsp; # END OF CODE</p>
<p># END OF PROCEDURE</p>
<p>
print &#8216;Reading &#8216;+CSVFile<br />
f=open(CSVFile,&#8217;r')<br />
print f<br />
firstrow=f.readline()<br />
row=firstrow</p>
<p>print &#8222;First Row is [" + firstrow + "]&#8222;</p>
<p>#<br />
# MAIN LOOP<br />
#<br />
while 1:<br />
&nbsp;&nbsp;&nbsp; row=f.readline()<br />
&nbsp;&nbsp;&nbsp; if row==&#8221;":<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break<br />
&nbsp;&nbsp;&nbsp; processRow(row)<br />
f.close<br />
&lt;/code&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=94&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2010/09/06/this-is-example-how-to-iterate-over-csv-file-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting CustomProperty for HTTP channels in Websphere using wsadmin and jython</title>
		<link>http://starmacco.wordpress.com/2010/07/15/setting-customproperty-for-http-channels-in-websphere-using-wsadmin-and-jython/</link>
		<comments>http://starmacco.wordpress.com/2010/07/15/setting-customproperty-for-http-channels-in-websphere-using-wsadmin-and-jython/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 16:15:12 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[komputer]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2010/07/15/setting-customproperty-for-http-channels-in-websphere-using-wsadmin-and-jython/</guid>
		<description><![CDATA[This is not smart enough yet. HTTP_4 and HTTP_2&#160; channels are harcoded Need to be run from Deployment &#60;anager bin folder ================================ PropertyName=&#8217;CookiesConfigureNoCache&#8217; PropertyValue=&#8217;false&#8217; PropertyDesc=&#8217;Requsted by App Team to fix IE6 bug&#8217; serverlist=AdminTask.listServers(&#8216;[-serverType APPLICATION_SERVER ]&#8216;) for server in serverlist.split(): &#160;&#160;&#160;&#160;&#160;&#160;&#160; services=ac.list(&#8216;TransportChannelService&#8217;,server) &#160;&#160;&#160;&#160;&#160;&#160;&#160; channels=ac.list(&#8216;HTTPInboundChannel&#8217;,services) &#160;&#160;&#160;&#160;&#160;&#160;&#160; for http in channels.split(&#8216;\n&#8217;): &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;hname=ac.showAttribute(http, &#8216;name&#8217;) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if&#160; hname==&#8217;HTTP_2&#8242; or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=93&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]&gt;   Normal  0      false  false  false                     MicrosoftInternetExplorer4  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]--> <!-- /* Font Definitions */ @font-face 	{font-family:Tahoma; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-alt:Arial; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:1627421319 -2147483648 8 0 66047 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} p.MsoPlainText, li.MsoPlainText, div.MsoPlainText 	{margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:Tahoma; 	mso-fareast-font-family:"Times New Roman"; 	mso-bidi-font-family:"Courier New";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --> <!--[if gte mso 10]&gt;  /* Style Definitions */ table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;}  &lt;![endif]-->
<p class="MsoPlainText">This is not smart enough yet. </p>
<p class="MsoPlainText">HTTP_4 and HTTP_2<span>&nbsp; </span>channels are harcoded</p>
<p class="MsoPlainText">Need to be run from Deployment &lt;anager bin folder</p>
<p class="MsoPlainText">================================</p>
<p class="MsoPlainText"><b>PropertyName=&#8217;CookiesConfigureNoCache&#8217;</b></p>
<p class="MsoPlainText"><b>PropertyValue=&#8217;false&#8217;</b></p>
<p class="MsoPlainText"><b>PropertyDesc=&#8217;Requsted by App Team to fix IE6 bug&#8217;</b></p>
<p class="MsoPlainText">serverlist=AdminTask.listServers(&#8216;[-serverType APPLICATION_SERVER ]&#8216;)</p>
<p class="MsoPlainText">for server in serverlist.split():</p>
<p class="MsoPlainText"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>services=ac.list(&#8216;TransportChannelService&#8217;,server)</p>
<p class="MsoPlainText"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>channels=ac.list(&#8216;HTTPInboundChannel&#8217;,services)</p>
<p class="MsoPlainText"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>for http in channels.split(&#8216;\n&#8217;):</p>
<p class="MsoPlainText"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span>&nbsp;&nbsp;&nbsp;&nbsp;</span>hname=ac.showAttribute(http, &#8216;name&#8217;)</p>
<p class="MsoPlainText"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>if<span>&nbsp; </span>hname==&#8217;HTTP_2&#8242; or hname==&#8217;HTTP_4&#8242;:</p>
<p class="MsoPlainText"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>print http</p>
<p class="MsoPlainText"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>print &#8216;[[validationExpression ""] [name "'+PropertyName+'"] [description "'+PropertyDesc+'"] [value "'+PropertyValue+'"] [required "false"]]&#8217;</p>
<p class="MsoPlainText"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>ac.create(&#8216;Property&#8217;,http,&#8217;[[validationExpression ""] [name "'+PropertyName+'"] [description "'+PropertyDesc+'"] [value "'+PropertyValue+'"] [required "false"]]&#8217;)</p>
<p class="MsoPlainText">ac.save()</p>
<p class="MsoPlainText">============================================</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=93&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2010/07/15/setting-customproperty-for-http-channels-in-websphere-using-wsadmin-and-jython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>Checking JDBC Oracle Driver Version</title>
		<link>http://starmacco.wordpress.com/2010/04/15/checking-jdbc-oracle-driver-version/</link>
		<comments>http://starmacco.wordpress.com/2010/04/15/checking-jdbc-oracle-driver-version/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 16:00:33 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[weblogic]]></category>
		<category><![CDATA[jdbc java code]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2010/04/15/checking-jdbc-oracle-driver-version/</guid>
		<description><![CDATA[/** &#160;* It requires to ojdbc6.jar be on classpath&#160;*/ public class CheckJDBCVersion { &#160;&#160;&#160; /**&#160;&#160;&#160; &#160;* @param args&#160;&#160;&#160; &#160;*/&#160;&#160;&#160; public static void main(String[] args) {&#160;&#160;&#160; &#160;&#160;&#160; System.out.println(&#8222;JDBCVersion: &#8221; + oracle.jdbc.OracleDriver.getJDBCVersion());&#160;&#160;&#160; &#160;&#160;&#160; System.out.println(&#8222;JDBCDriverVersion: &#8221; + oracle.jdbc.OracleDriver.getDriverVersion());&#160;&#160;&#160; } }<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=91&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>/** <br />&nbsp;* It requires to ojdbc6.jar be on classpath<br />&nbsp;*/</p>
<p>public class CheckJDBCVersion {</p>
<p>&nbsp;&nbsp;&nbsp; /**<br />&nbsp;&nbsp;&nbsp; &nbsp;* @param args<br />&nbsp;&nbsp;&nbsp; &nbsp;*/<br />&nbsp;&nbsp;&nbsp; public static void main(String[] args) {<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.out.println(&#8222;JDBCVersion: &#8221; + oracle.jdbc.OracleDriver.getJDBCVersion());<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; System.out.println(&#8222;JDBCDriverVersion: &#8221; + oracle.jdbc.OracleDriver.getDriverVersion());<br />&nbsp;&nbsp;&nbsp; }</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=91&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2010/04/15/checking-jdbc-oracle-driver-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>start in weblogic object definition in Sun One Webserver</title>
		<link>http://starmacco.wordpress.com/2010/03/26/start-in-weblogic-object-definition-in-sun-one-webserver/</link>
		<comments>http://starmacco.wordpress.com/2010/03/26/start-in-weblogic-object-definition-in-sun-one-webserver/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 11:15:25 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2010/03/26/start-in-weblogic-object-definition-in-sun-one-webserver/</guid>
		<description><![CDATA[If in weblogic object of sun one you have ppath=&#8217;*&#8217; definition you can easily access weblogic backend connecting directly sun one instance. weblogic.Admin class is enough all administration mbeans are exposed to frontend. What you only need is Weblogic user which allow authentication. Anyway this is security breach as most of attacks on company infrastructure [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=88&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If in weblogic object of sun one you have ppath=&#8217;*&#8217; definition you can easily access weblogic backend connecting directly sun one instance.</p>
<p>weblogic.Admin class is enough all administration mbeans are exposed to frontend.<br />
What you only need is Weblogic user which allow authentication.</p>
<p>Anyway this is security breach as most of attacks on company infrastructure is being done by unhappy former employees.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=88&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2010/03/26/start-in-weblogic-object-definition-in-sun-one-webserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>SunOne WebServer (iplanet) 61sp9 umask error</title>
		<link>http://starmacco.wordpress.com/2010/03/19/sunone-webserver-iplanet-61sp9-umask-error/</link>
		<comments>http://starmacco.wordpress.com/2010/03/19/sunone-webserver-iplanet-61sp9-umask-error/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 11:56:31 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2010/03/19/sunone-webserver-iplanet-61sp9-umask-error/</guid>
		<description><![CDATA[If you specify in magnus.conf &#8216;Umask 027&#8242; directive that error log will be create with no permissions. So it will be unacessible and next start of instance will fail. Solution. Remove Umask directive from magnus.conf and set umask for unix user.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=87&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you specify in magnus.conf &#8216;Umask 027&#8242; directive that error log will be create with no permissions.<br />
So it will be unacessible and next start of instance will fail. </p>
<p>Solution.</p>
<p>Remove Umask directive from magnus.conf and set umask for unix user.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=87&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2010/03/19/sunone-webserver-iplanet-61sp9-umask-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
		<item>
		<title>Enabling the Administration Console via wlst (weblogic)</title>
		<link>http://starmacco.wordpress.com/2010/03/17/enabling-the-administration-console-via-wlst-weblogic/</link>
		<comments>http://starmacco.wordpress.com/2010/03/17/enabling-the-administration-console-via-wlst-weblogic/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 11:12:14 +0000</pubDate>
		<dc:creator>robertstarmach</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://starmacco.wordpress.com/2010/03/17/enabling-the-administration-console-via-wlst-weblogic/</guid>
		<description><![CDATA[WLST method of enabling Administration Console. connect("username","password") edit() startEdit() cmo.setConsoleEnabled(true) save() activate() The following attribute(s) have been changed on MBeans which require server re-start. MBean Changed : com.bea:Name=mydomain,Type=Domain Attributes changed : ConsoleEnabled Activation completed disconnect() exit()<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=86&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="pPreformatted">
<pre>WLST method of enabling Administration Console.

connect("<code class="cCodeEmphasis">username</code>","<code class="cCodeEmphasis">password</code>")
edit()
startEdit()
cmo.setConsoleEnabled(true)
save()
activate()
The following attribute(s) have been changed on MBeans which require server re-start.</pre>
</div>
<p><a name="wp1123287"> </a>
<div class="pPreformatted">
<pre>MBean Changed : com.bea:Name=mydomain,Type=Domain Attributes changed : 
ConsoleEnabled
Activation completed</pre>
</div>
<p><a name="wp1123291"> </a>
<pre>disconnect()
exit()</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starmacco.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starmacco.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starmacco.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starmacco.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starmacco.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starmacco.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starmacco.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starmacco.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starmacco.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starmacco.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starmacco.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starmacco.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starmacco.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starmacco.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starmacco.wordpress.com&amp;blog=1096750&amp;post=86&amp;subd=starmacco&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starmacco.wordpress.com/2010/03/17/enabling-the-administration-console-via-wlst-weblogic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0564c62e56a2390b7bf5c17318b2473f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertstarmach</media:title>
		</media:content>
	</item>
	</channel>
</rss>
