<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: how can i make a DisplayFile or a RPG program like WRKOBJ to see the objects and choose with a option (6 or 5) to send that objects by a FTP ?</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/wrkobj/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/wrkobj/</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 19:19:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/wrkobj/#comment-76862</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Thu, 06 May 2010 05:21:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-76862</guid>
		<description><![CDATA[&lt;i&gt;Do You Know something about QUSLOBJ API’s ?, I can use this ?&lt;/i&gt;

The &lt;a href=&quot;http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/apis/quslobj.htm&quot;&gt;List Objects (QUSLOBJ) API&lt;/a&gt; is easy to use and is your best choice for a beginning point.

You would create a user space, call QUSLOBJ to build a list od objects in the user space, and then loop through the space to retrieve basic information about each object that you listed. (&lt;a href=&quot;http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/apis/obj5.htm&quot;&gt;User Space APIs&lt;/a&gt;)

You would have a display file with a subfile. Each object that you retrieved information about from the space would be written to your subfile. You would enter options in your subfile to choose which objects to send to the FTP server.

When you call QUSLOBJ, you pass in a library and object name parameter. You can request objects with a specific name or a generic* name or a special value such as *ALL to list all objects in the library. You also pass in an object type, which would probably be *FILE since this is for FTP.

The User Space APIs take a little practice, but you can ask questions to help with those.

As long as you are working with /QSYS.LIB file system objects, the QUSLOBJ API is the one you want first.

However, if you are thinking of listing streamfiles in a /root directory or other directory, then QUSLOBJ won&#039;t help you at all. For that, you&#039;ll need to work in some very different ways.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>Do You Know something about QUSLOBJ API’s ?, I can use this ?</i></p>
<p>The <a href="http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/apis/quslobj.htm">List Objects (QUSLOBJ) API</a> is easy to use and is your best choice for a beginning point.</p>
<p>You would create a user space, call QUSLOBJ to build a list od objects in the user space, and then loop through the space to retrieve basic information about each object that you listed. (<a href="http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/apis/obj5.htm">User Space APIs</a>)</p>
<p>You would have a display file with a subfile. Each object that you retrieved information about from the space would be written to your subfile. You would enter options in your subfile to choose which objects to send to the FTP server.</p>
<p>When you call QUSLOBJ, you pass in a library and object name parameter. You can request objects with a specific name or a generic* name or a special value such as *ALL to list all objects in the library. You also pass in an object type, which would probably be *FILE since this is for FTP.</p>
<p>The User Space APIs take a little practice, but you can ask questions to help with those.</p>
<p>As long as you are working with /QSYS.LIB file system objects, the QUSLOBJ API is the one you want first.</p>
<p>However, if you are thinking of listing streamfiles in a /root directory or other directory, then QUSLOBJ won&#8217;t help you at all. For that, you&#8217;ll need to work in some very different ways.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cwc</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/wrkobj/#comment-55024</link>
		<dc:creator>cwc</dc:creator>
		<pubDate>Thu, 24 Jul 2008 12:05:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-55024</guid>
		<description><![CDATA[APIs arent&#039; actually so difficult, once you understand how the parameters are defined and what they mean.  Once you have a working program that calls an API, it&#039;s easier to use as a template for other ones.  

Some APIs return the information to a user space, which does get more involved -- but again, once you&#039;ve blazed a trail, it&#039;s much easier from that point.]]></description>
		<content:encoded><![CDATA[<p>APIs arent&#8217; actually so difficult, once you understand how the parameters are defined and what they mean.  Once you have a working program that calls an API, it&#8217;s easier to use as a template for other ones.  </p>
<p>Some APIs return the information to a user space, which does get more involved &#8212; but again, once you&#8217;ve blazed a trail, it&#8217;s much easier from that point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gilly400</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/wrkobj/#comment-54966</link>
		<dc:creator>gilly400</dc:creator>
		<pubDate>Wed, 23 Jul 2008 10:00:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-54966</guid>
		<description><![CDATA[Hi,

You could use the API&#039;s to write your own WRKOBJ type program &amp; display file, but the API&#039;s can be quite difficult and time consuming to get working correctly.  If you just need something quickly, you&#039;re better off using the PDM method.  If you need something permanent that will be used by other people, then it&#039;s probably worth writing your own tool for this.

You could also use DSPOBJD to an output file instead of the API&#039;s, this would probably be quicker to get working and you could always replace it with the API&#039;s at a later date.

Regards,

Martin.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You could use the API&#8217;s to write your own WRKOBJ type program &amp; display file, but the API&#8217;s can be quite difficult and time consuming to get working correctly.  If you just need something quickly, you&#8217;re better off using the PDM method.  If you need something permanent that will be used by other people, then it&#8217;s probably worth writing your own tool for this.</p>
<p>You could also use DSPOBJD to an output file instead of the API&#8217;s, this would probably be quicker to get working and you could always replace it with the API&#8217;s at a later date.</p>
<p>Regards,</p>
<p>Martin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: silvarb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/wrkobj/#comment-54931</link>
		<dc:creator>silvarb</dc:creator>
		<pubDate>Tue, 22 Jul 2008 14:58:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-54931</guid>
		<description><![CDATA[Do You Know something about QUSLOBJ API&#039;s ?, I can use this ?]]></description>
		<content:encoded><![CDATA[<p>Do You Know something about QUSLOBJ API&#8217;s ?, I can use this ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.014 seconds using memcached
Object Caching 310/313 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 19:42:23 -->