<?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>Terry's Worklog &#187; OCLC</title>
	<atom:link href="http://people.oregonstate.edu/~reeset/blog/groups/oclc/feed" rel="self" type="application/rss+xml" />
	<link>http://people.oregonstate.edu/~reeset/blog</link>
	<description>On my work (programming, digital libraries, cataloging) and other stuff that perks my interest (family, cycling, etc)</description>
	<lastBuildDate>Sat, 21 Nov 2009 10:07:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WorldCat API gem moved to rubyforge</title>
		<link>http://people.oregonstate.edu/~reeset/blog/archives/628</link>
		<comments>http://people.oregonstate.edu/~reeset/blog/archives/628#comments</comments>
		<pubDate>Fri, 13 Mar 2009 16:19:47 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[OCLC]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[worldcat api]]></category>

		<guid isPermaLink="false">http://oregonstate.edu/~reeset/blog/archives/628</guid>
		<description><![CDATA[I had mentioned that I’d quickly developed a helper gem for simplifying using the WorldCat API in ruby (at least, it greatly simplifies using the API for my needs).&#160; This was created in part for C4L and partly because I’m moving access from Z39.50 to the API when working with LF and I basically wanted [...]]]></description>
			<content:encoded><![CDATA[<p>I had mentioned that I’d quickly developed a helper gem for simplifying using the WorldCat API in ruby (at least, it greatly simplifies using the API for my needs).&#160; This was created in part for C4L and partly because I’m moving access from Z39.50 to the API when working with LF and I basically wanted a be able to do the search and interact with the results as a set of objects (rather and XML).&#160; </p>
<p>Anyway, the first version of the gem (which is slightly different from the code first posted prior to C4L) can be found at the project page, here: <a title="http://rubyforge.org/projects/wcapi/" href="http://rubyforge.org/projects/wcapi/">http://rubyforge.org/projects/wcapi/</a></p>
<p>&#8211;TR</p>
]]></content:encoded>
			<wfw:commentRss>http://people.oregonstate.edu/~reeset/blog/archives/628/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WorldCat API: draft ruby gem</title>
		<link>http://people.oregonstate.edu/~reeset/blog/archives/618</link>
		<comments>http://people.oregonstate.edu/~reeset/blog/archives/618#comments</comments>
		<pubDate>Mon, 23 Feb 2009 06:13:43 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[OCLC]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[worldcat api]]></category>

		<guid isPermaLink="false">http://oregonstate.edu/~reeset/blog/archives/618</guid>
		<description><![CDATA[Since the WorldCat Grid API became available, I’ve spent odd periods of time playing with the services to see what kinds of things I could do and not do with the information being made available.&#160; This was partly due to a desire to create an open source version of WorldCat Local.&#160; It wouldn’t have been [...]]]></description>
			<content:encoded><![CDATA[<p>Since the WorldCat Grid API became available, I’ve spent odd periods of time playing with the services to see what kinds of things I could do and not do with the information being made available.&#160; This was partly due to a desire to create an open source version of WorldCat Local.&#160; It wouldn’t have been functionally complete (lacking facets, some data, etc), but it would be good enough, most likely, for folks wanting to switch to a catalog interface that utilized WorldCat as their source database, rather than their local ILS dbs.&#160; And while the project was pretty much completed, the present service terms the are attached to the API make this type of work out of bounds at present (though, I knew that when I started – it was more experimental with the hope that by the time I was finished, the API would be more open).&#160; </p>
<p>Anyway…as part of the process, I started working on some rudimentary components for ruby to make processing the OCLC provided data easier.&#160; Essentially, creating a handful of convenience functions that would make it much easier to call and utilize that data the grid services provided – my initial component was called wcapi.&#160; </p>
<p>Tomorrow (or this morning if you are in Providence), a few folks from OCLC will be putting on a preconference related to the OCLC API at Code4Lib.&#160; There, folks from OCLC will be giving some background and insight into the development of API, as well as looking at how the API works and some sample code snippets.&#160; I’d hoped to be there (I’m signed up), but an airline snafu has me stranded in transit until tomorrow – so by the time I get to Providence, all of, or most of the pre-conference will be over.&#160; Too bad, I know.&#160; Fortunately, there will be someone else from Oregon State in the audience, so I should be able to get some notes.</p>
<p>However, there’s no reason why I can’t participate, even while I”m jetting towards Providence – and so I submit my wcapi gem/code to the preconference folks to use however they see fit.&#160; It doesn’t have a rakefile or docs, but once you install the gem, there is a test.rb file in the wcapi folder that demonstrates how to use all the functions.&#160; The wrapper functions accept the same values as the API – and like the API, you need to have your OCLC developer’s key to make it work.&#160; The wcapi gem will utilize libxml for most xml processing (if it’s on your machine, otherwise it will downgrade to rexml), save for a handful of functions that done use named namespaces within the resultset (this confuses libxml for some reason – though their is a way around it, I just didn’t have the time to add it).&#160; </p>
<p>So, the gem/code can be found at: <a href="http://oregonstate.edu/~reeset/ruby_gems/wcapi.tar.gz">wcapi.tar.gz</a>.&#160; Since I’ll likely make use of this in the future, I’ll likely move this to source forge in the near future.</p>
<p>*******Example OpenSearch Call*******</p>
<p>require &#8216;rubygems&#8217;   <br />require &#8216;wcapi&#8217; </p>
<p>client = WCAPI::Client.new :wskey =&gt; &#8216;[insert_your_own_key_here' </p>
<p>response = client.OpenSearch(:q=&gt;'civil war', :format=&gt;'atom', :start =&gt; '1', :count =&gt; '25', :cformat =&gt; 'mla') </p>
<p>puts &quot;Total Results: &quot; + response.header[&quot;totalResults&quot;]   <br />response.records.each {|rec|    <br />&#160; puts &quot;Title: &quot; + rec[:title] + &quot;\n&quot;    <br />&#160; puts &quot;URL: &quot; + rec[:link] + &quot;\n&quot;    <br />&#160; puts &quot;OCLC #: &quot; + rec[:id] + &quot;\n&quot;    <br />&#160; puts &quot;Description: &quot; + rec[:summary] + &quot;\n&quot;    <br />&#160; puts &quot;citation: &quot; + rec[:citation] + &quot;\n&quot; </p>
<p>} </p>
<p>********End Sample Call****************</p>
<p>And that’s it.&#160; Pretty straightforward.&#160; So, I hope that everyone has a great pre-conference.&#160; I wish that I was there (and with some luck, I may catch the 2nd half) – but if not, I’ll see everyone in Providence Monday evening.</p>
<p>&#8211;TR</p>
]]></content:encoded>
			<wfw:commentRss>http://people.oregonstate.edu/~reeset/blog/archives/618/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OCLC to convene a Review Board of Shared Data Creation and Stewardship</title>
		<link>http://people.oregonstate.edu/~reeset/blog/archives/612</link>
		<comments>http://people.oregonstate.edu/~reeset/blog/archives/612#comments</comments>
		<pubDate>Tue, 13 Jan 2009 23:43:09 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[OCLC]]></category>

		<guid isPermaLink="false">http://oregonstate.edu/~reeset/blog/archives/612</guid>
		<description><![CDATA[From the OCLC news release: http://www.oclc.org/us/en/news/releases/20092.htm
First off, I think that this is a good thing for a couple of reasons.

I take this development as a sign that OCLC has heard the membership, heard some of their concerns and has agreed to take some additional time to have further discussion with the membership.&#160; For that, thank [...]]]></description>
			<content:encoded><![CDATA[<p>From the OCLC news release: <a title="http://www.oclc.org/us/en/news/releases/20092.htm" href="http://www.oclc.org/us/en/news/releases/20092.htm">http://www.oclc.org/us/en/news/releases/20092.htm</a></p>
<p>First off, I think that this is a good thing for a couple of reasons.</p>
<ol>
<li>I take this development as a sign that OCLC has heard the membership, heard some of their concerns and has agreed to take some additional time to have further discussion with the membership.&nbsp; For that, thank you.</li>
<li>It gives the OCLC membership time to look at the presently proposed policy and consider if this policy reflects the direction that the membership wishes to take the library profession.</li>
</ol>
<p>So, where do we go from here.&nbsp; Looking over the news release, it appears that the proposed policy will be the base-line for discussion &#8212; the starting point.&nbsp; So it will be up to the member council and identified library experts to look at this policy and consider how it can best be modified to meet the stated goals of modernizing the record use and transfer policy.&nbsp; While I very much doubt (though, personally would like to) I will be one of the folks asked to the table, I still have hopes that this process could yield a much more open and friendly record transfer policy.&nbsp; I&#8217;ve discussed this with some folks from the members council, but I honestly believe that OCLC and WorldCat would see the greatest benefit if it simply let WorldCat go &#8212; releasing the data through an Open Data license.&nbsp; I realize that for some, there is a fear that this might devalue OCLC in some way &#8212; but I personally doubt it.&nbsp; As a membership organization, OCLC is able to leverage is large repository of holdings information &#8212; which will continue to allow them to build new and interesting services for libraries &#8212; whether WorldCat is available for download or not.&nbsp; I.E. for OCLC members, WorldCat likely isn&#8217;t the primary reason why they are members &#8212; so I have a difficult time seeing how loosening the reins on WorldCat could be problematic.</p>
<p>Anyway, the announcement is good news in that it will buy the OCLC membership (and library community) time to more fully consider what the current proposed transfer policy would mean to libraries and hopefully help shape a document that is much more in line with the library community&#8217;s core values related to the access and sharing of information.&nbsp; And hopefully, as this policy is considered, the membership council does keep the library community (not just membership) in mind when considering this decision so that any provisions placed on the transfer of records from WorldCat doesn&#8217;t poison the transfer of records downstream for other members (both commercial and non-commercial) of the library community.</p>
<p>&#8211;TR</p>
]]></content:encoded>
			<wfw:commentRss>http://people.oregonstate.edu/~reeset/blog/archives/612/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A look at the Policy for Use and Transfer of WorldCat Records revision</title>
		<link>http://people.oregonstate.edu/~reeset/blog/archives/582</link>
		<comments>http://people.oregonstate.edu/~reeset/blog/archives/582#comments</comments>
		<pubDate>Wed, 05 Nov 2008 20:34:56 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[OCLC]]></category>

		<guid isPermaLink="false">http://oregonstate.edu/~reeset/blog/archives/582</guid>
		<description><![CDATA[OCLC has posted a revised version of it&#8217;s new policy for use and transfer of WorldCat Records.&#160; This is a revision of the short-lived version of this document posted Nov. 2nd and taken down early Nov. 3rd.&#160; Additionally, OCLC has significantly revised the FAQ&#8217;s for this document (which is important, since this is what most [...]]]></description>
			<content:encoded><![CDATA[<p>OCLC has posted a revised version of it&#8217;s new policy for use and transfer of WorldCat Records.&nbsp; This is a revision of the short-lived version of this document posted Nov. 2nd and taken down early Nov. 3rd.&nbsp; Additionally, OCLC has significantly revised the FAQ&#8217;s for this document (which is important, since this is what most people will use to interpret this agreement).&nbsp; </p>
<p><strong>Links:</strong></p>
<ul>
<li>New Policy: <a title="http://www.oclc.org/worldcat/catalog/policy/policy.htm" href="http://www.oclc.org/worldcat/catalog/policy/policy.htm">http://www.oclc.org/worldcat/catalog/policy/policy.htm</a></li>
<li>FAQs: <a title="http://www.oclc.org/worldcat/catalog/policy/questions/default.htm" href="http://www.oclc.org/worldcat/catalog/policy/questions/default.htm">http://www.oclc.org/worldcat/catalog/policy/questions/default.htm</a></li>
<li>A side by side comparison of the Nov. 2 and Nov. 5 revisions to the policy (thanks to Tim Spalding): <a title="http://www.librarything.com/wiki/index.php?title=OCLC_Policy_Changes&amp;diff=11748&amp;oldid=11747" href="http://www.librarything.com/wiki/index.php?title=OCLC_Policy_Changes&amp;diff=11748&amp;oldid=11747">http://www.librarything.com/wiki/index.php?title=OCLC_Policy_Changes&amp;diff=11748&amp;oldid=11747</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>Background:</strong></p>
<p>When OCLC released their initial revision of this policy (Nov. 2), a number of concerns were raised by myself and the library community.&nbsp; However, of all the concerns, there were two <strong>really, really</strong> big concerns that I consider to be deal breakers with the policy as proposed on Nov. 2.&nbsp; These were:</p>
<ol>
<li>The embedding of this policy into the OCLC record in the form of a 996 field essentially placing a license within the library&#8217;s bibliographic records.&nbsp; While I know that OCLC didn&#8217;t feel that this was a big deal &#8212; it was.&nbsp; It&#8217;s a tremendously big deal because it takes ownership of metadata away from the library, and gives it to OCLC.&nbsp; And it&#8217;s dangerous &#8212; as a link to a policy, terms and rights can be changed (as we have seen between the Nov. 2 and the Nov. 5th revisions).&nbsp; This is one of the reasons why licenses have versions&#8230;so rights granted to users at one period of time won&#8217;t change if a license undergoes revision.</li>
<li>The non-compete clause that essentially barred use of the WorldCat data for the creation of services that competed against OCLC.&nbsp; And while this was meant primarily to discourage Commercial development, it could very easily have applied to non-commercial research projects &#8212; if such a project began to encroach upon the size or function of the WorldCat database.</li>
</ol>
<p>So those were my big concerns.&nbsp; With that in mind, I want to look at the revised policy specifically to see how these two issues have been addressed.</p>
<p><em>The 996 field:</em></p>
<p>While OCLC&#8217;s policy and FAQ&#8217;s have been significantly revised, there are few places where this is as evident as in the areas of attribution.&nbsp; In the Nov. 2nd version of the policy, OCLC&#8217;s policy stated that transferred records &#8220;must be clearly identified&#8221; and that the OCLC record number, if available, &#8220;may not be removed from any WorldCat Record&#8221;.&nbsp;&nbsp; The Nov. 5th revision is significantly different in this area &#8212; changing &#8220;must&#8221; and &#8220;will&#8221; to &#8220;OCLC encourages&#8221;.&nbsp; In essence, this part of the agreement has been made optional.&nbsp; The revised FAQ&#8217;s further spell this out by saying: <em>&#8220;It is optional for OCLC members and nonmember libraries, archives and museums to implement or retain the 996 field for attributing WorldCat as the source of WorldCat-derived records.&#8221;&nbsp; </em></p>
<p>For this change, I&#8217;m definitely pleased.&nbsp; Though, now that this has been fixed, I&#8217;m going to be honest, I want to see OCLC to push this even further.&nbsp; In the FAQ, OCLC makes a case for attribution.&nbsp; That&#8217;s fair.&nbsp; However, there is still a fundamental problem with the approach being used:&nbsp; that being that this license is unversioned.&nbsp; This policy will change again at some point and it&#8217;s likely that some previously legal uses of the metadata records may fall outside of the boundaries of the new conditions.&nbsp; By having a versioned license, previous uses of the metadata would be grandfathered.&nbsp; So, if OCLC continues to want to move down this path of attribution and linking to it&#8217;s policy, then I would like to see the 996 field revised to something like the following:</p>
<p>Field: 996&nbsp; WorldCat Record Use Policy Link<br />1st indicator: undefined<br />2nd indicator: undefined</p>
<p>Subfields:<br />$a: Function identifier<br />$i: Display Text<br />$v: Version Number<br />$u URI</p>
<p>By versioning the license, it would at least close this future ambiguity.&nbsp; Were the versioning component added to this field, I&#8217;d feel a little bit better about it.&nbsp; Good enough to let this licensing info into my library&#8217;s catalog &#8212; probably not, but at least I&#8217;d feel better about it.</p>
<p><em>The non-compete clause:</em></p>
<p>Well, this is still pretty much in the policy &#8212; though, the policy has been modified to reflect that this is primarily geared towards commercial (or third party) use.&nbsp; Of course, there still remains the clause that defines &#8220;Reasonable Use&#8221; as uses (commercial or non-commercial) that:</p>
<p>1) discourages the contribution of bibliographic and holdings data to WorldCat, thus damaging OCLC Members’ investment in WorldCat, and/or</p>
<p>2) substantially replicates the function, purpose, and/or size of WorldCat. Please see the FAQ for a discussion of Z39.50 for cataloging using WorldCat-derived bibliographic records.</p>
<p>While OCLC may argue that this would allow libraries to participate in projects like the Open Library, I have a feeling that that&#8217;s not the case, for two reasons.&nbsp; First, Open Library does substantially replicate function, purpose and size &#8212; but more importantly, Open Library couldn&#8217;t accept metadata records that include the OCLC policy of transfer (the licensing terms of currently incompatible with those that Open Library uses last I checked).&nbsp; But more importantly, I believe that this non-compete clause likely makes projects like the one being undertaken by some ILS vendors to create a type of cooperative catalog for users of it&#8217;s ILS systems (since here, we are not talking about Z39.50, but an actual creation of a network based service that would provide like a Napster-like functionality allowing users to select records from their ILS network) or stop the creation of a like-minded service by a group of open source developers that may wish to create or build a cataloging service from records from other libraries (say, from the records on Open Library for example).&nbsp; Of course, if that&#8217;s not the case, it would be nice if OCLC would provide examples of this type of use within it&#8217;s FAQ documentation.</p>
<p>Of course, in many respects, the problem that I have with the OCLC non-compete clause is in many ways philosophical.&nbsp; Libraries have always been about unfettered access, including access to our metadata, so I have a very difficult time believing that we need to somehow quickly move to protect our metadata from unscrupulous commercial uses.&nbsp; I&#8217;ve said it a number of times, if the library community (and OCLC) want to view WorldCat as the Library Commons then it should be open, to anyone, for any reason&#8230;period.&nbsp; These types of non-compete clauses are difficult for me because they are contrary to many of our core library values.&nbsp;&nbsp; But I won&#8217;t rehash this since I did write an earlier thought piece on the subject (<a title="http://oregonstate.edu/~reeset/blog/archives/579" href="http://oregonstate.edu/~reeset/blog/archives/579">http://oregonstate.edu/~reeset/blog/archives/579</a>) a few days ago.</p>
<p>Anyway &#8212; as far as the policy goes.&nbsp; I think that OCLC has done a good job working to answer some of the initial criticisms that I know that I personally had with the new policy.&nbsp; Would I like to see them make additional changes&#8230;yes.&nbsp; If OCLC is determined to add a license to the Commons (I guess I&#8217;ll have to stop calling it the Commons then), then they need to version the license to reduce potential future ambiguity.&nbsp; Do I like that OCLC wants to make themselves a not so silent partner in my library&#8217;s 3rd party dealings&#8230;no.&nbsp; Would I recommend that my library (or any other library) remove the 996 licensing when downloading data from OCLC&#8230;at this point, you bet.&nbsp; OCLC can certainly make this available in the WorldCat database, but I still don&#8217;t want it in mine&#8230;but I guess there&#8217;s those darn philosophical differences again.</p>
<p>&nbsp;</p>
<p>&#8211;TR</p>
]]></content:encoded>
			<wfw:commentRss>http://people.oregonstate.edu/~reeset/blog/archives/582/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>What would it look like if OCLC was broken up?</title>
		<link>http://people.oregonstate.edu/~reeset/blog/archives/579</link>
		<comments>http://people.oregonstate.edu/~reeset/blog/archives/579#comments</comments>
		<pubDate>Tue, 04 Nov 2008 05:49:04 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Digital Libraries]]></category>
		<category><![CDATA[OCLC]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://oregonstate.edu/~reeset/blog/archives/579</guid>
		<description><![CDATA[The other day, I posted what I seen as some very big concerns with OCLC&#8217;s revised policy (currently being reconsidered) on the transfer of records (two of which, I would consider deal breakers).&#160; In this post, I made the argument that maybe it was time to consider breaking OCLC up to reflect what it has [...]]]></description>
			<content:encoded><![CDATA[<p>The other day, I <a title="http://oregonstate.edu/~reeset/blog/archives/574" href="http://oregonstate.edu/~reeset/blog/archives/574" target="_blank">posted</a> what I seen as some very big concerns with OCLC&#8217;s revised policy (currently being reconsidered) on the transfer of records (two of which, I would consider deal breakers).&nbsp; In this post, I made the argument that maybe it was time to consider breaking OCLC up to reflect what it has become &#8212; an organization with two distinct facets: a membership component and a vendor component.&nbsp; This comment led to a conversation from someone at OCLC who questioned whether I honestly believed that the library community would be better off if OCLC was broken up and it was obvious from our conversation that on this point, we would simply need to agree to disagree.&nbsp; As a side note, I think that these types of disagreements and conversations are actually really important to have.&nbsp; I&#8217;m always nervous of communities or groups in which everyone agrees since it usually means that people either are not thinking critically or no really cares.&nbsp; Secondly, I think that we all (OCLC and myself for that matter) want what&#8217;s best for the library community &#8212; we just have different visions of what that might be.&nbsp; </p>
<p>Anyway, back to my topic.&nbsp; Now, I&#8217;m going to preface this discussion by saying that this is obviously my own opinion and one that may not be shared by many people within the library community (I really have no idea).&nbsp; Even within the library open source community, where I&#8217;m sure this opinion would be more prevalent (or at least entertained), I&#8217;m pretty sure I&#8217;m still in the minority.&nbsp; But as I say, I think that these conversations are important to consider &#8212; specifically as we move down a path where OCLC is very quickly positioning themselves to become the library community&#8217;s default service provider for all things library (in terms of ILL, ILS interface, cataloging, etc.).</p>
<p>So when I talk about breaking up OCLC, exactly what am I&#8217;m talking about?&nbsp; Well, in order to follow me down the path that I am going to take you, we have to talk about OCLC as I currently see them.&nbsp; Watching OCLC during the 10 years (I can&#8217;t believe it&#8217;s actually been 10 years) that I have been in libraries, I have seen a quickening evolution of OCLC from strictly a member driven organization to more of a hybrid organization.&nbsp; On the one hand, there is what many would consider the membership side of OCLC, that being WorldCat, ILL and their research and development office.&nbsp; On the other hand, there is OCLC&#8217;s vendor arm&#8230;a good example of this would be WorldCat Local and WorldCat Navigator.&nbsp; So how do I make these distinctions &#8212; membership services are those that I would consider core services.&nbsp; These are services that OCLC has developed to add value to what OCLC likes to refer to as the Library Commons (WorldCat).&nbsp; OCLC&#8217;s vendor services are those tools or programs that OCLC sells on top of the Library Commons, of which, I think WorldCat Local/Navigator is a good example.&nbsp; Now I think that at this point, I know that folks at OCLC (and likely in the membership) would argue that both WorldCat Local/Navigator do provide services that the OCLC membership is currently requesting.&nbsp; I won&#8217;t deny that &#8212; however, I would answer that the fact that OCLC treats the Library Commons (WorldCat) as it&#8217;s own closed personal community has the unintended affect of limiting the library community&#8217;s (and I include both commercial and non-commercial entities in my definition of community) ability to develop new service models.&nbsp; In effect, we become much more dependent on how OCLC envisions the future of libraries.&nbsp; Let me try and tease this out a little bit more&#8230;</p>
<p>Philosophically, the biggest problem that I have with the current situation is the commingling of OCLC&#8217;s treatment of the Commons (WorldCat) and their current strategy of being the sole commercial entity with the ability to interact with the Commons.&nbsp; I&#8217;m a firm believer that the more diverse the landscape or ecology, the more likely that innovation will take place.&nbsp; We&#8217;ve seen this time and time again both inside (Evergreen and Koha certainly have shaken up the traditional ILS market) and outside (web browsers are a good example of how competition breeds innovation) the library community.&nbsp; However, by isolating the Commons, OCLC is threatening this diversity of thought.&nbsp; Now, I have a whole set of different issues with the current library ILS community, but in this case, I think that OCLC&#8217;s treatment of the Commons, and their ability to leverage that service unfairly skews the ability for both commercial and non-commercial entities to provide innovative services on top of those Commons (and before anyone jumps on me for non-commercial use, let me finish my thoughts here).&nbsp; Commercially, I&#8217;m fairly certain that the current crop of ILS vendors would very much like to provide their own WorldCat Local/Navigator interfaces to their customers, and I&#8217;m sure, would be able to tie these interfaces closely with services already provided by the users ILS.&nbsp; I could envision things like ERM (electronic resource management), simplified requesting, etc. all being possible if the likes of ExLibris or Innovative Interfaces were allowed to build tools upon the Library Commons (WorldCat).&nbsp; Maybe I would like to develop my own version of WorldCat Local/Navigator that interacts with the Commons and sell it as a product (kind of the same way ezproxy was sold prior to being acquired by OCLC) or a group of researchers would like to do the same.&nbsp; As a commercial entity, I&#8217;m fairly certain that this type of development model wouldn&#8217;t be kosher with OCLC unless I licensed access to WorldCat (and I&#8217;m not certain that they would given that this would compete against one of their services).&nbsp; Likewise, open source folks like LibLime or Equinox may like to create an open source version of the WorldCat Local interface.&nbsp; Under the current guidelines, I understand that an open source implementation of WorldCat Local can exist &#8212; but as I understand that agreement, I&#8217;m not certain that groups like LibLime or Equinox (or another entity) could not take that project and then sell support-based services around it (I&#8217;m unclear on that one though).&nbsp; However, it&#8217;s very unlikely that the library world will see any of these types of developments (well, maybe the open source WorldCat Local since I have a group that could use this and a number of people interested in developing it) because OCLC has come to treat what it calls the Commons (WorldCat), as it&#8217;s own personal data store.&nbsp; There&#8217;s that commingling again.&nbsp; </p>
<p>So if it was up to me, how would I resolve this situation?&nbsp; Well, I see two possible scenarios.&nbsp; </p>
<ol>
<li>Open up WorldCat.&nbsp; OCLC likes to refer to WorldCat as the Library Commons &#8212; well, let&#8217;s treat it as such.&nbsp; Remove the barriers for access and allow anyone and everyone the ability to essentially have their own copy of the Library Commons and it&#8217;s data.&nbsp; Now, rather than specifying terms of transfer and telling libraries under what conditions they can and cannot make their metadata available to other groups, the membership could consider what type of Open Data license that the Commons could be made available under.&nbsp; Something like the creative commons share alike license which allows for both commercial and non-commercial usage, but requires all parties to contribute all changes to the data back to the community (in essence, this is kind of what Open Library is doing with their metadata) may be appropriate.&nbsp; OCLC would be free to develop their own products, but the rest of the library community (both library and vendor community) would have equal opportunity to develop new services and ways of visualizing the data found in the Commons.&nbsp; Does this devalue the Commons (WorldCat)?&nbsp; I don&#8217;t think so &#8212; look at Wikipedia.&nbsp; It uses this model of distribution, yet I&#8217;ve never heard anyone say that this devalues it&#8217;s content.&nbsp; Would there be challenges?&nbsp; For sure.&nbsp; Probably one of the biggest would be the way that it would change what it means to be a member of OCLC.&nbsp; If each person could download their own personal copy of the Commons, would libraries stay members.&nbsp; I&#8217;m certain that they would &#8212; but I&#8217;m sure that what it means to be a member would certainly change.</li>
<li>Split OCLC&#8217;s membership services from OCLC&#8217;s vendor services.&nbsp; Under this example, WorldCat Local/Navigator development would be spun away from OCLC as a separate business (this happens in academia all the time).&nbsp; Were this to happen, OCLC would be able to develop terms for license that could then be leverage by all members of the commercial library community removing the artificial advantage OCLC is currently able to leverage (both in terms of data and deciding who is allowed to work with the Commons).&nbsp; In all likelihood, I think that this model likely represents the smallest change for the membership and would continue to allow OCLC to make the Commons more available to non-commercial development without artificially limiting other groups interested in building new services.&nbsp; </li>
</ol>
<p>One last thought.&nbsp; In talking to people today, I heard a number of times that OCLC restricting access to the Commons was in fact good thing, in part, because it finally allowed the library community the ability to leverage resources not available to the vendor communities.&nbsp; In some way, we could finally stick it to them.&nbsp; That&#8217;s fine, I&#8217;m all for developing tools and services, but this particular type of thinking I find worrisome.&nbsp; If we, as a community, feel that we are unable to develop compelling tools and services that are able to compete with other vendor offerings without an artificial advantage &#8212; well that&#8217;s just sad and says a little something about how we see ourselves as a community.&nbsp; And this too is something that I&#8217;d like to see change because if you look around, you will see that there are a myriad of projects (Koha, Evergreen, VuFind, Fedora, DSpace, LibraryFind, XC Catalog, Zotero, etc.) where developers (some library developers, some not) are re-envisioning how they see many of the services within the library and putting their time and effort into realizing those visions.&nbsp; </p>
<p>&nbsp;</p>
<p>&#8211;TR</p>
]]></content:encoded>
			<wfw:commentRss>http://people.oregonstate.edu/~reeset/blog/archives/579/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>OCLC&#8217;s proposed new guidelines for the transfer of bibliographic records</title>
		<link>http://people.oregonstate.edu/~reeset/blog/archives/574</link>
		<comments>http://people.oregonstate.edu/~reeset/blog/archives/574#comments</comments>
		<pubDate>Sun, 02 Nov 2008 16:33:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Monopolist]]></category>

		<guid isPermaLink="false">http://oregonstate.edu/~reeset/blog/archives/574</guid>
		<description><![CDATA[OCLC, today has made available their proposed new policy for the transfer of bibliographic records.&#160; You can read the documents for yourself:

Policy (general): http://www.oclc.org/worldcat/catalog/policy/
Policy Statement (1987): http://www.oclc.org/support/documentation/ worldcat/records/guidelines/default.htm
New proposed policy (2008):http://www.oclc.org/worldcat/catalog/policy/policy.htm
FAQ: http://www.oclc.org/worldcat/catalog/policy/questions/default.htm

&#160;
I took a sometime this morning to read through the proposed changes as well as the FAQs, and essentially OCLC is looking for a [...]]]></description>
			<content:encoded><![CDATA[<p>OCLC, today has made available their proposed new policy for the transfer of bibliographic records.&nbsp; You can read the documents for yourself:</p>
<ul>
<li>Policy (general): <a title="http://www.oclc.org/worldcat/catalog/policy/" href="http://www.oclc.org/worldcat/catalog/policy/">http://www.oclc.org/worldcat/catalog/policy/</a></li>
<li>Policy Statement (1987): <a title="http://www.oclc.org/support/documentation/worldcat/records/guidelines/default.htm" href="http://www.oclc.org/support/documentation/worldcat/records/guidelines/default.htm">http://www.oclc.org/support/documentation/ worldcat/records/guidelines/default.htm</a></li>
<li>New proposed policy (2008):<a title="http://www.oclc.org/worldcat/catalog/policy/policy.htm" href="http://www.oclc.org/worldcat/catalog/policy/policy.htm">http://www.oclc.org/worldcat/catalog/policy/policy.htm</a>
<li>FAQ: <a title="http://www.oclc.org/worldcat/catalog/policy/questions/default.htm" href="http://www.oclc.org/worldcat/catalog/policy/questions/default.htm">http://www.oclc.org/worldcat/catalog/policy/questions/default.htm</a></li>
</ul>
<p>&nbsp;</p>
<p>I took a sometime this morning to read through the proposed changes as well as the FAQs, and essentially OCLC is looking for a way to tell libraries that they don&#8217;t own the data that&#8217;s in their own catalogs.&nbsp; In essence &#8212; this is what this policy comes down to.&nbsp; The policy wraps some very nice changes for non-members into the statement in order to hide some really sucky changes that I don&#8217;t believe that they have the ability to ask for or enforce.&nbsp; And OCLC has some real balls here, because starting in Feb., records downloaded from OCLC will potentially include a license statement.&nbsp; Per the FAQ:</p>
<blockquote><li><strong>Prospectively.</strong> As of the effective date of the Policy, every record downloaded from WorldCat will automatically contain field 996 populated with the following:<br />MARC:</p>
<pre>996 $aOCLCWCRUP $iUse and transfer of this record is governed by
the OCLC® Policy for Use and Transfer of WorldCat® Records.
$uhttp://purl.org/oclc/wcrup</pre>
<p>There is no need to add the 996 field to records by hand. OCLC systems will do this for you. </p>
<li><strong>Retrospectively.</strong> For records that already exist in your local system, we encourage you to use the 996 field, which should have an explicit note like the examples below:<br />MARC:
<pre>996 $aOCLCWCRUP $iUse and transfer of this record is governed by
the OCLC® Policy for Use and Transfer of WorldCat® Records.
$uhttp://purl.org/oclc/wcrup</pre>
</li>
<p>&nbsp;</p>
</blockquote>
<p>You have got to be kidding me.&nbsp; By adding this statement to the records in your catalog &#8212; you are essentially giving away your institutions ownership rights to your records (at least, this is how I read it).&nbsp; This has wide implications &#8212; as how you use the data within your catalog would no longer be at your discretion.&nbsp; And how does this affect the Library of Congress &#8212; because this license statement applies to all records with an OCLC number.&nbsp; If LC puts an OCLC number in their records &#8212; well, by this agreement &#8212; they too will have to ensure that records made available from their catalog will only be used for non-commercial purposes.&nbsp; And I wonder what happens to member libraries and remove this field after February, 2009.&nbsp; I ask because I&#8217;d recommend any library that downloads records from OCLC to remove this statement from their records.&nbsp; </p>
<p>So what&#8217;s at stake long term here &#8212; the ability to develop network level discovery services (or in OCLC&#8217;s case, make sure that they are the only game in town).&nbsp; Libraries need to remember that OCLC is both a company that created and supports a cooperative catalog as well as a burgeoning vendor trying to corner the library network discovery landscape.&nbsp; And what OCLC has going for them is the WorldCat database that has been created by publicly funded institutions (like the Library of Congress, universities and public libraries).&nbsp; In the past two years, OCLC has seen LibraryThing and the OpenLibrary begin to develop competing network-based services by having libraries contribute their own data back to these efforts.&nbsp; By claiming exclusive rights to this community created metadata, OCLC is essentially monopolizing the network discovery landscape.</p>
<p>In many ways, I see similarities to what OCLC is doing here to AT&amp;T and Microsoft of the 90s.&nbsp; AT&amp;T was sued as a monopolist by the government because they essentially owned all the telephone lines and were able to squeeze out competition because of that ownership (even though, much of the infrastructure was created with public money on public land).&nbsp; Likewise, Microsoft was sued as a monopolist because they were illegally stifling competition by utilizing API&#8217;s within the Windows operating system to create a competitive advantage for their software.&nbsp; MS Office worked better on Windows than competing products because Microsoft wrote the OS &#8212; so they knew how to get the greatest level of performance.&nbsp; This is what&#8217;s happening here &#8212; but at the metadata level.&nbsp; OCLC has a large database of information that it has been entrusted by member organizations &#8212; and essentially OCLC is building a business unit around it.</p>
<p>At this point, I see a lot of similarities between what Microsoft was doing in the 90&#8217;s and what OCLC is attempting to do now.&nbsp; OCLC&#8217;s policy here is all about giving OCLC an unfair competitive advantage when it comes to creating the next generation cloud services &#8212; and anything that they say differently is a bunch of BS.&nbsp; OCLC wants to claim that it owns the metadata created, in large part, by public funds by member institutions around the world.&nbsp; And at this point, OCLC is very much becoming a predatory monopolistic organization, and I think as members, it might be time to tell OCLC that they need to be broken up.&nbsp; This was done during the AT&amp;T trial and was considered during the Microsoft Monopoly trial &#8212; but in order to level the playing field here &#8212; membership should consider insisting that OCLC decouple it&#8217;s work with WorldCat with the networked based services that it&#8217;s looking to build.&nbsp; When AT&amp;T was broken up, a number of new companies were born.&nbsp; This is what needs to happen here.&nbsp; And it&#8217;s something that needs to happen soon as the library community&#8217;s ability to develop the next generation of networked based services depends on it in my own opinion.</p>
<p>&#8211;TR</p>
<p><i>Updated: </i>OCLC did post a revision to this document on Nov. 5th.  There were some significant changes to the document.  I&#8217;ve added my comments regarding this revision here: <a href="http://oregonstate.edu/~reeset/blog/archives/582">http://oregonstate.edu/~reeset/blog/ archives/582</a></p>
]]></content:encoded>
			<wfw:commentRss>http://people.oregonstate.edu/~reeset/blog/archives/574/feed</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>Reading between the lines</title>
		<link>http://people.oregonstate.edu/~reeset/blog/archives/503</link>
		<comments>http://people.oregonstate.edu/~reeset/blog/archives/503#comments</comments>
		<pubDate>Sat, 23 Feb 2008 10:23:51 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Digital Libraries]]></category>
		<category><![CDATA[OCLC]]></category>

		<guid isPermaLink="false">http://oregonstate.edu/~reeset/blog/archives/503</guid>
		<description><![CDATA[Like a number of people, I found the following piece (http://chronicle.com/weekly/v54/i24/24a01101.htm) from the Chronicle of Higher Education on the Open Library fairly interesting &#8212; in part, because of the topics that the author chose to highlight.  I tend to categorizes pieces such as this as fluff, in that one rarely gets any content of substance [...]]]></description>
			<content:encoded><![CDATA[<p>Like a number of people, I found the following piece (<a href="http://chronicle.com/weekly/v54/i24/24a01101.htm" title="http://chronicle.com/weekly/v54/i24/24a01101.htm">http://chronicle.com/weekly/v54/i24/24a01101.htm</a>) from the Chronicle of Higher Education on the Open Library fairly interesting &#8212; in part, because of the topics that the author chose to highlight.  I tend to categorizes pieces such as this as fluff, in that one rarely gets any content of substance from them.  However, in a short article about the Internet Archive&#8217;s Open Library initiative, I found it interesting that so much of the article centered around OCLC, or, should I say, the silence coming from OCLC as members seek to clarify OCLC&#8217;s position in regards to the Open Library and it&#8217;s members potential participation in this project.  Two things that jump out:</p>
<ol>
<li><em>&#8220;Librarians are not just uneasy having nonlibrarians edit catalogs; they are also afraid of offending OCLC.&#8221;<br />
</em><br />
An exceptional understatement, though one that doesn&#8217;t extend just to the Open Library.  As a general rule, I find that librarians are way to concerned with offending OCLC, with many having a feeling that should an offense be taken, that it could have long running repercussions for the institution.  Are these concerns valid &#8212; for OCLC &#8212; I think not.  While I firmly believe that OCLC occupies the same vendor space as other entities like EBSCOhost, Elseiver and Serial Solutions, I think that they are much more responsive to their <strike>members</strike> customers &#8212; due in part to the organization&#8217;s roots as a large co-opt.  Of course, librarians and libraries have been conditioned to believing that consequences will follow if one rocks the boat or steps on their partner&#8217;s toes.  And unfortunately (and much to my chagrin), I&#8217;ve had occasion myself to say or post opinions that have cause push back from content/software providers currently serving Oregon State.  Fortunately, my director doesn&#8217;t mind when the pot periodically gets stirred, but not everyone is as lucky.  So, I can certainly understand where the nervousness is coming from.At the same time, I think that OCLC is contributing to this sense of uncertainty.  OCLC hasn&#8217;t been caught by surprise by the Open Library&#8217;s development work and certainly hasn&#8217;t been surprised by the Open Library asking OCLC members to contribute data to the project.  For close to a year, OCLC has had the opportunity to provide some form of guidance or position, as it relates to the Open Library project.  Instead, they have been silent.  This leaves librarians and libraries to consult their local OCLC representatives who have been given widely varying information regarding the legality of participating in this project.  While I&#8217;ve yet to hear of anyone being told that a library could not participate in the project, it has been quietly discouraged by OCLC&#8217;s deafening silence. </li>
<li><em>&#8220;But one OCLC official, speaking on the condition that he not be identified, said Open Library was a waste of time and resources, and predicted it would fail.&#8221;</em>Again, it&#8217;s interesting that in a piece like this, that this comment would make it&#8217;s way into the article.  Whether or not this reflect&#8217;s OCLC&#8217;s current position on this particular project, I think that a number of good things may come out of the Open Library project, even if indirectly.  First, OCLC&#8217;s grid services.  While likely not a direct result of the Open Library&#8217;s project, I&#8217;d guess that the current desire to accelerate their availability is in response to the growing number of projects currently looking to move into the space the OCLC has traditionally monopolized.  Yes, let&#8217;s call it what it is, in this space, OCLC functions as a monopoly, because OCLC has essentially been allowed to rely on it&#8217;s position to squeeze out competing projects (RLG) and leverage their data to create services that would be otherwise impossible to create without the metadata that OCLC currently possess.  I think to some degree, projects like the Open Library give OCLC pause in the sense that at present, they see their bibliographic and holdings content, WorldCat, as their crown jewel.  It represents a body of work that exists no where else in the world and gives them a potential advantage over any cloud-based service being developed within the library community.  At the same time, as OCLC goes forward and libraries become more interested in building some of their own tools (either individually or as part of a consortia), I think that WorldCat, and the data beneath it will actually become less important for OCLC &#8212; rather, it will be the services that they develop on top of it that will hold the most value.  And I think that projects like the Open Library have accelerated this development.  As Martha Stewart would say, it&#8217;s a good thing. 
<p>Secondly, I think that this quote is interesting in a larger sense as to how it relates to OCLC as a whole.  They are undergoing big changes &#8212; business changes, philosophical changes and I think that this represents that to some degree.  As the piece notes, OCLC&#8217;s public face see cooperation as a good thing, while maybe privately, that&#8217;s not the case.  But honestly, I think that this is healthy.  OCLC is hiring a lot of bright people and has traditionally had a lot of bright people on staff and what we see is that they are thinking about these issues and how they relate within the larger community (even beyond OCLC).  Now, whether or not OCLC is particularly happy that these disagreements are being aired publicly (something that hasn&#8217;t traditionally happen), well, that would be something to keep an eye on as well.</li>
</ol>
<p>&#8211;TR</p>
<p><em>[update: Spell check fails me again, sorry Martha]</em></p>
<p style="display: inline; margin: 0px; padding: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c16a75b7-6bd9-420b-be3c-d9b82abc0541" class="wlWriterSmartContent">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/open%20library">open library</a>,<a rel="tag" href="http://technorati.com/tags/oclc">oclc</a></p>
]]></content:encoded>
			<wfw:commentRss>http://people.oregonstate.edu/~reeset/blog/archives/503/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
