//----------------------------------------------------------------------------
//
//   rainer eschen web.solutions
//                 _      __    __       __  _            ____  _
//                | | /| / /__ / /  ___ / /_(_)__ ___ ____ | |\/|
//                | |/ |/ / -_) _ \/ -_) __/ (_-</ -_) __/
//                |__/|__/\__/_.__/\__/\__/_/___/\__/_/
//
//                                            More sex appeal for the Web.
//
//
//
//   Copyright (c) 1997-2003 by rainer eschen web.solutions
//                 All rights reserved.
//
//   Version 7.0 (02/27/2002)
//
//   Code can be changed. But it is not recommended - to be compatible 
//   with future releases. Use searchDefinitions.js for new or overwriting of
//   existing definitions instead.
//
//   You are not allowed to change the mechanism to create the copyright 
//   line at the end of the hitlist (variables "lastupdate", 
//   "lastUpdateString", "copyrightString", function "footer()" - although, 
//   translation is allowed).
// 
//----------------------------------------------------------------------------
//
// indexHTML: consts
var index_max = 695;
var glossaryMode = false;
var lastupdate = "12/1/2004, 1:35:16 PM";  // Created by Webetiser(tm) indexHTML 3.0 (Wine, Fast-hack 5), Sys-Con Media, Inc.

// Hitlist output
var textColor                 = "#000000";          // <Body> definition
var linkColor                 = "#000000";
var vLinkColor                = "#8080FF";
var aLinkColor                = "#BFE0FF";
var backgroundColor           = "#FFFFFF";
var backgroundImage           = "background.gif";
var tableWidth                = "640";              // Table
var tableColor                = "#8080FF";
var tableOuterColor           = "#BFE0FF";
var charset                   = "Verdana,geneva,ARIAL,HELVETICA,Helv,Swiss";
var charNormal                = "2";                // Size of chars
var charSmaller               = "1";

// Localization strings
var orNotExpectedString       = "OR, NOT, search term or '(' expected";
var ParenthesisExpectedString = "')' expected";
var keywordExpectedString     = "Keyword expected";
var wrongInputString          = "Wrong input: ";
var lookString                = " (look <).";
var beginCaseString           = "Begin of word, Case-sensitive";
var caseString                = "Case-sensitive";
var beginString               = "Begin of word";
var hitlistTitleString        = "Hitlist client-side search engine";
var perCentString             = "Hits per cent";
var keywordString             = "Keyword";
var descriptionString         = "Description";
var noEntriesString           = "No entries found.";
var enterKeywordString        = "Please, enter a keyword first.";
var lastUpdateString          = "Last updated: ";
var copyrightString           = '.<br>Powered by <A HREF="http://www.Webetiser.com" TARGET="_blank">Webetiser&trade;</A>: Copyright &copy; 1997-2003 by Rainer Eschen.';

// Token Strings (These strings can't be keywords. Adapt your stopword list, first.)
var orTokenString             = "OR"
var andTokenString            = "AND"
var notTokenString            = "NOT"

// Index definition  
var entry                     = new arrayCreate();  // Database
var g;                                              // Glossary database

// Input frame
var cInputRef                 = null;               // Reference to edit field
var cInput                    = "";                 // Input string
var cBeginOfWord              = true;               // true == compare with begin 
var cCaseSensitive            = false;              // true == case-sensitive comparison 

// Scanner variables
var cLiteral                  = "";                 // Keyword in input string
var input                     = "";                 // Rest of input string
var token                     = "";                 // Last found token

// Scanner tokens
var tEOF                      = 0; 
var tOr                       = 1; 
var tAnd                      = 2; 
var tNot                      = 3; 
var tParenthesisOpen          = 4; 
var tParenthesisClose         = 5;
var tLiteral                  = 6;

// Parser variables
var error                     = false;             // Error found, stop analysis

// Converting umlaute
var charsSmall                = "\u00E0\u00E1\u00E2\u00E3\u00E4\u00E5\u00E6\u00E7\u00E8\u00E9\u00EA\u00EB\u00EC\u00ED\u00EE\u00EF\u00F0\u00F1\u00F2\u00F3\u00F4\u00F5\u00F6\u00F8\u00F9\u00FA\u00FB\u00FC\u00FD\u00FE";
var charsLarge                = "\u00C0\u00C1\u00C2\u00C3\u00C4\u00C5\u00C6\u00C7\u00C8\u00C9\u00CA\u00CB\u00CC\u00CD\u00CE\u00CF\u00D0\u00D1\u00D2\u00D3\u00D4\u00D5\u00D6\u00D8\u00D9\u00DA\u00DB\u00DC\u00DD\u00DE";

//----------------------------------------------------------- Array handling -

function arrayCreate() {
// ***************************************************************************
// * Function...: arrayCreate
// * Description: Array object for entries
// ***************************************************************************

  this.item     = new Array();
  this.length   = aLength;    // Return length
  this.add      = aAdd;       // Add element
  this.concat   = aConcat;    // Concatenate two arrays and add the
                              // argument array to yourmyName 			 
  this.sort     = aSort;      // Sort array
}

function aLength() {
// ***************************************************************************
// * Function...: arrayCreate.length
// * Description: Return number of entries
// ***************************************************************************

  return this.item.length;
}

function aAdd(entry) {
// ***************************************************************************
// * Function...: arrayCreate.add
// * Description: Add entry to array
// ***************************************************************************

  this.item[this.item.length] = entry;
}

function aConcat(array) {
// ***************************************************************************
// * Function...: arrayCreate.concat
// * Description: Concatenate the array with yourmyName and return the
// *              myName reference
// ***************************************************************************

  if (array != this) {
    for (var i = 0; i < array.length(); i++) {
      this.item[this.item.length] = array.item[i];
    }
  }
  return this;
}

function aSort(inFunction) {
// ***************************************************************************
// * Function...: arrayCreate.sort
// * Description: Set sort function
// ***************************************************************************

  this.item.sort(inFunction);
}

//----------------------------------------------------------- Array elements -

function entryCreate() {
// ***************************************************************************
// * Function...: entryCreate
// * Description: Database constructor
// ***************************************************************************

  this.keywords;            // All keywords
  this.page;                // URL of page
  this.description;         // Content description of the page
}

function foundCreate() {
// ***************************************************************************
// * Function...: foundCreate
// * Description: "Keywords found" constructor
// ***************************************************************************

  this.position;                 // Corresponding position in database
  this.perCent    = 100;         // Percent of equal characters
  this.keywords   = "Klick";     // Found keywords (equal characters 
                                 // marked)
  this.exists     = false;       // true == entry already exists in array
  this.addPerCent = gAddPerCent; // Calculate percentage
  this.addKeyword = gAddKeyword; // Add keyword to list
}

function gAddPerCent(perCent) {
// ***************************************************************************
// * Function...: foundCreate.addPercent
// * Description: Calculate percentage (new keyword concatenation)
// ***************************************************************************

  this.perCent = Math.round((this.perCent + perCent) / 2);
}

function gAddKeyword(keyword) {
// ***************************************************************************
// * Function...: foundCreate.addKeyword
// * Description: Add new keyword
// ***************************************************************************

  if (this.keywords == "Klick") {
    this.keywords = keyword; 
  }
  else {
    if ((keyword == "Klick") && (this.keywords != "")) {
      // ignorieren
    }
    else { 
      if (this.keywords != keyword) {
        this.keywords = this.keywords + "<br>" + keyword;
      }
    }
  }
}

function sortPerCent(x,y) {
// ***************************************************************************
// * Function...: sortPercent
// * Description: Sort function for foundCreate.sort (according to
//                percentage)
// ***************************************************************************

  if (x.perCent < y.perCent) {return -1};
  if (x.perCent > y.perCent) {return 1};
  return 0;
}

//----------------------------------------------------------------- Database -

function init() {
// ***************************************************************************
// * Function...: init
// * Description: Init database
// ***************************************************************************

  for (var i = 0; i <= index_max; i++) {
    entry.add(new entryCreate());
  }
// indexHTML: glossary

// indexHTML: array
entry.item[0].keywords = "$100,accessible,accomplished,achieved,advantage," +
                         "allow,allowing,application,applications," +
                         "appropriate,apps,architecture,architectures,aren," +
                         "Ariba,AS/400,assembled,assembly,assume,aunt," +
                         "Author,authorization,back,basic,basically,BEA," +
                         "bean,Begin,behind,benefit,Benfield,big,Bio," +
                         "BowStreet,brochureware,building,built,business," +
                         "businesses,call,calls,change,changes,CICS," +
                         "client/server,coarse-grained,com,companies," +
                         "complete,complex,computing,cool,Copyright,core," +
                         "corporate,countries,create,created,Creating,data," +
                         "databases,dBase,DCOM,departmental,deployed," +
                         "deployment,description,developer,development," +
                         "didn,different,differentiates,director,Discrete," +
                         "documentation,Don,easily,easy-to-use,e-business," +
                         "EJB,EJBs,e-mail,encapsulated,engines,environment," +
                         "etc,evolution,evolved,evolving,except,exists," +
                         "expecting,eyes,file,fold,fooled,fourth,fulfill," +
                         "function,functionality,get,gets,getting,good," +
                         "great,groundbreaking,happening,happens,having," +
                         "hear,heavier,higher-level,Hmm,HTTP,humans,hype," +
                         "hyping,IBM,implementation,implemented,implies," +
                         "Inc,includes,independent,individual," +
                         "industry-specific,info@sys-con,integrate," +
                         "interacts,internal,Internet,interoperate," +
                         "involved,isn,J2EE,Java,Java-based,JMS,job,Judy," +
                         "keep,know,language,lately,least,led,let,level," +
                         "likely,location,look,luckily,made,Magic,make," +
                         "manipulating,marks,means,Media,messaging,meter," +
                         "Microsoft,Microsystems,much,mutilate,need," +
                         "networked,never,new,next,normal,now,object," +
                         "object/component,Odds,Okay,open,opportunity," +
                         "organization,own,packaged,parameter,parses," +
                         "partners,passed,passing,PCs,pegged,perfect,phone," +
                         "piece,pieces,platform,position,practically," +
                         "Pretty,private,process,processing,productive," +
                         "proliferation,promise,proper,protocol,provides," +
                         "public,Publications,publish,pure-Java,puts,Quit," +
                         "reading,real,recognize,regard,registered," +
                         "registries,registry,relational,reliance," +
                         "remarshals,remember,require,required,Reserved," +
                         "return,returned,revolution,revved,Rights,robust," +
                         "row,rules,running,sbenfield@silverstream,sea," +
                         "send,sends,separate,servers,service," +
                         "Service-based,service-oriented,services,servlet," +
                         "session,shop,shopping,SilverStream,simple,SMTP," +
                         "snap,Snicker,SOAP,software,soon,sort,spans," +
                         "specific,spindle,stand-alone,standard,States," +
                         "steamroller,step,Steve,still,strategy,string," +
                         "stuff,subset,Sun,supersedes,SYS-CON,system," +
                         "system-based,systems,take,technical,technology," +
                         "thing,things,think,thinking,too,took,trademarks," +
                         "true,turns,UDDI,underlying,United,URL,use,useful," +
                         "uses,using,value,way,Web,webMethods,webservices," +
                         "work,workflow,world,wrapper,write,writing," +
                         "written,WSDL,XML,XML-in,XML-out,year";
entry.item[0].page = "archives/0100/benfield/index.html";
entry.item[0].description = "Web Services: The Power to Change the World";
entry.item[1].keywords = "ability,abstraction,access,accessible,accessing," +
                         "account,act,add,added,adding,addition,additional," +
                         "adoption,advanced,advantage,affecting,Allaire," +
                         "allow,AlterEgo,APIs,apparent,applicable," +
                         "application,applications,appropriate," +
                         "architecture,architectures,argue,arrival,ASP," +
                         "ASP/JSP,aspect,ASPs,assume,Author,automatically," +
                         "back-end,bad,balance,balancing,base,baseline," +
                         "Basic,believe,benefit,benefits,biggest,Bio,book," +
                         "both,broad,broader,broadest,brokering,browser," +
                         "browsers,browsing,build,building,built,built-in," +
                         "burden,business,businesses,capabilities,carry," +
                         "cars,case,cases,casually,categories,CFML," +
                         "challenge,change,changed,changes,check,checks," +
                         "cHTML,clean,client,clients,closely,code," +
                         "ColdFusion,com,COM/COM,coming,communicate," +
                         "community,companies,compete,complexity,component," +
                         "components,computer,computing,conform," +
                         "connectivity,construction,consumable,consumed," +
                         "consumer,container,content,contextual,contrast," +
                         "convenience,converging,convert,convinced,cookies," +
                         "Copyright,CORBA,Corporation,cost,Costa,countries," +
                         "created,creates,creation,custom,customers,daily," +
                         "data,database,DCOM,defines,Demands,departure," +
                         "design,desk,desks,detect,developed,developer," +
                         "Developers,development,device,devices,DHTML," +
                         "differences,different,difficult,direct," +
                         "directions,discuss,discussed,discussion,display," +
                         "displayed,displaying,distance,distributed," +
                         "diversity,division,doesn,don,downplay,dozens," +
                         "dramatically,early,ease,easier,easily,economical," +
                         "Edition,effects,efficiency,EJB,EJBs,E-mail," +
                         "emerged,emergence,employees,enable,enables," +
                         "enabling,encapsulating,enjoy,ensure,Enterprise," +
                         "entirely,environment,equally,especially," +
                         "estimated,evolution,example,exchanging,exciting," +
                         "existing,Expedia,experiment,expose,exposed,fact," +
                         "factor,fall,falling,faster,favor,feature,few," +
                         "Figure,Finally,First,five,flight,flights,follow," +
                         "force,forced,forcing,form,format,formatting," +
                         "forms,Fortunately,forward,framework,frameworks," +
                         "free,full,function,functionality,fundamental," +
                         "further,future,gain,general,generate,Given,good," +
                         "great,greater,greatest,grows,handle,handler," +
                         "handling,happy,headed,hearts,help,home,hopefully," +
                         "hotel,HTML,HTTP,huge,IBM,iceberg,iConverse," +
                         "idiosyncrasies,immature,i-mode,impact,implement," +
                         "implementation,implementations,implemented," +
                         "implementing,importance,important,Inc,include," +
                         "includes,increasing,independent,industrial," +
                         "info@sys-con,information,infrastructure,instance," +
                         "Instead,integrated,integration,intercompany," +
                         "interface,interfaces,Internet,Internet-centric," +
                         "interoperability,intra,intracompany,introduce," +
                         "introduced,investments,invoked,involve,involves," +
                         "J2EE,Java,Java-based,JSP,JSPs,keep,kind,known," +
                         "languages,large,last,layer,layers,layout,let," +
                         "level,lies,life,likelihood,likely,little,load," +
                         "location,logic,long-term,look,looking,low,made," +
                         "main,mainstream,major,make,making,management," +
                         "manager,managing,map,mappings,market,marketing," +
                         "marks,markup,maturity,means,mechanism,Media," +
                         "mention,menus,method,Microsoft,Microsystems," +
                         "minds,mirrors,mistake,mobile,model,models," +
                         "monitor,Moreover,move,much,multiclient,multiple," +
                         "mysite,necessary,need,needed,NET,NetMorph," +
                         "network-based,networked,Networks,never,new,news," +
                         "next,nonstandard,Now,number,object,offer,often," +
                         "online,open,opens,order,outsourcing," +
                         "overwhelmingly,page,page-based,pages,paid,Palm," +
                         "part,partners,partnerships,parts,passed,past," +
                         "pcosta@allaire,PDA,PDAs,people,percentage," +
                         "perhaps,Perl,persistence,perspective,Phil,phone," +
                         "phones,PHP,physical,piece,pieces,place,Platform," +
                         "point,popular,popularly,possibilities,power," +
                         "powerful,practical,presentation,prevalent," +
                         "primary,principle,principles,problem,productive," +
                         "programming,promise,Protocol,protocols,provide," +
                         "provided,provides,providing,Publications," +
                         "purchase,pursuing,quickly,range,rapidly,reach," +
                         "real,reality,reason,reasons,receive,referred," +
                         "registered,reliability,reliable,remember," +
                         "represent,request,requests,required,requires," +
                         "research,resell,Reserved,response," +
                         "responsibilities,responsibility,restricted," +
                         "result,resulting,revenue,revolution,richer," +
                         "Rights,RMI,runtime,scalability,scalable,screen," +
                         "scripting,second,section,security,seen,senior," +
                         "sent,separate,separation,served,server,servers," +
                         "server-side,service,services,serving,sets,should," +
                         "shoulder,Similarly,site,sites,smooth,SOAP," +
                         "software,specific,specification,Spectra,standard," +
                         "standards,start-ups,state,States,still,storing," +
                         "strategic,strategy,streams,stub,stylesheet," +
                         "sufficient,Sun,support,supported,Supporting," +
                         "surprise,survey,synchronization,syndicated," +
                         "SYS-CON,tables,tags,take,team,technologies," +
                         "technology,templates,things,third,thousands,Thus," +
                         "tickets,time,times,tip,tool,Toolkit,tools," +
                         "trademarks,transactional,transition,travel," +
                         "travelers,Travelocity,turmoil,two,type,types," +
                         "unfold,United,unlike,unlikely,unmanageable," +
                         "unnecessary,URLs,use,used,useful,users,uses," +
                         "using,vendor,vendors,versions,versus,viewed," +
                         "visions,visiting,visual,vital,W3C,WAP,wave,way," +
                         "ways,WDDX,Web,webservices,Web-services," +
                         "well-architected,well-designed,whether,Windows," +
                         "wireless,WML,words,work,world,worlds,wrap,write," +
                         "writing,www,XML,years";
entry.item[1].page = "archives/0100/costa/index.html";
entry.item[1].description = "From Web Sites to Web Services and Wireless&gt;";
entry.item[2].keywords = "Access,accesses,ActiveX,address,Advanced,allow," +
                         "allows,Ann,application,aren,argument,article,ASP," +
                         "attempt,Author,back,Basic,basically,Beginning," +
                         "beta,Binaries,binding,Bio,Body,book,books," +
                         "bookstore,bookstores,BookStoreSystem," +
                         "BookStoreSystemBinding,BookStoreSystemObject," +
                         "BookStoreSystemPortType,both,bottom,Browser," +
                         "build,Building,built,burden,button,cachable,call," +
                         "callIndex,calls,carefully,case,changes," +
                         "characters,check,child,childnodes,choose,class," +
                         "click,client,client-side,Close,co-author,Code," +
                         "coded,COM,com/tcptrace/default,com/xml," +
                         "com/xml/default,command,compile,compiled," +
                         "Complete,component,components,computing," +
                         "Conclusion,conference,configure,Configuring,conn," +
                         "Connection,connStr,Consumer,consumes,consuming," +
                         "contacted,contained,containing,contains,contents," +
                         "ContentType,contract,cool,copy,Copyright," +
                         "countries,create,created,CreateObject,creating," +
                         "customer,Data,database,define,definitions,Demo," +
                         "demo/BookStoreSystem,democscript,deploy,deployed," +
                         "described,Description,detail,detailed,developer," +
                         "developers,developing,Development,Dim,directory," +
                         "discount,Discovery,dispID,display,displayed," +
                         "distributed,distributor,DLL,DLLs,document," +
                         "Documentation,documentElement,DOM,DOM--," +
                         "DOMDocument,download,downloadable,drastic," +
                         "Dynamic,earlier,easiest,easy,echo,EJB,element," +
                         "elementName,elements,E-mail,encapsulates,encoded," +
                         "encoding,encodingStyle,encounter,End,Engine," +
                         "enter,entire,entities,entries,entry,Envelope," +
                         "environment,EOF,error,especially,example," +
                         "examples,excitement,execute,executes,execution," +
                         "exploring,expose,exposed,exposes,exposing," +
                         "extract,False,familiar,faultcode,Figure,Figures," +
                         "file,files,first,folder,following,format,found," +
                         "full,function,functionality,Generate,generated," +
                         "generator,GET,gives,going,Gold,good,Guide,hand," +
                         "Having,help,here,holds,HTML,http,IIS,iisadmin," +
                         "illustrate,Immediately,implementation,Inc," +
                         "Inclusion,incoming,independent,indicated," +
                         "indicates,inetpub,Info,info@sys-con,information," +
                         "init,Initialise,input,installation,Installing," +
                         "instantiates,instructions,Integer,Integration," +
                         "interface,Internet,interpret,invoke,involved," +
                         "involves,ISBN,isbn0201710986,isbn0735710201," +
                         "isbn1861003625,Issue,Java,Java-based,JavaServer," +
                         "JDBC,Jet,JNDI,job,JSP,keys,know,Language,later," +
                         "launched,lecturer,Lee,Let,life,limited,listen," +
                         "Listener,Listing,little,load,loads,loadxml," +
                         "localhost,localhost/Demo/BookStoreSystem,located," +
                         "location,look,looks,machine,maintains,make," +
                         "Manning,manpower,manually,map,MapPath,mapped," +
                         "marked,marks,mdb,meaning,Media,Memory,Meng," +
                         "message,messages,Meta,method,methods,Microsoft," +
                         "Microsystems,minor,modified,modify,modifying," +
                         "module,moment,monitor,monitored,months,MoveNext," +
                         "msdn,MSSOAP,mssoapinit,mssoapSDK,MSXML2,much," +
                         "Name,namespace,need,needed,net,new,newly,Next," +
                         "Ngee,non-Windows,Note,Nothing,Notice,Now,number," +
                         "Object,objects,obtained,Obtaining,offer,OLEDB," +
                         "Open,operation,options,order,org/1999/XMLSchema," +
                         "org/soap/encoding,org/soap/envelope," +
                         "org/soap/http,org/wsdl,org/wsdl/soap,output," +
                         "outputs,overall,overview,overwritten,own,owner," +
                         "owners,packages,Packets,page,Pages,parameter," +
                         "parameterOrder,part,performs,Persist,places," +
                         "platform,pleasant,pocketsoap,Polytechnic,port," +
                         "portType,press,pretty,price,price19,price49," +
                         "price59,prices,pricing,print,problem,process," +
                         "processes,productive,Professional,PROGID,program," +
                         "project,prompt,provide,provided,provider," +
                         "provides,providing,Proxy,Public,Publications," +
                         "publisher,publisherNewRiders,publisherPeachPit," +
                         "publisherWrox,Query,querying,QuickStart,Read," +
                         "real,rebooting,received,recompile,Recordset," +
                         "re-create,redirected,refer,refers,registered," +
                         "release,released,relevant,Remote,replace,request," +
                         "requests,requires,reserved,respective,responding," +
                         "responds,Response,Restart,restrict,Result," +
                         "results,Resume,Retained,return,returned,returns," +
                         "retval,right,right-bottom,Rights,right-top,root," +
                         "ROPE,rough,routine,run,running,safe,Samples,Save," +
                         "saved,say,schema,schemas,script,scripting,SDK," +
                         "search,searchBook,searchBookInOut1," +
                         "searchBookResponse,searchStr,searchStrXML,second," +
                         "Security,select,send,sending,sends,sent,Server," +
                         "Service,servicemapping,services,Servlets,setting," +
                         "settings,should,shown,shows,side,simple," +
                         "simplicity,simplify,Singapore,single,sits,SOAP," +
                         "soapAction,soapclient,SOAP-ENV,SoapInvoke," +
                         "soapserver,soaptoolkit,solve,Source,specializing," +
                         "specific,Specifically,Specification,spoke,spots," +
                         "sql,standalone,standard,start,States,steps,still," +
                         "stop,str1,straightforward,string,structure," +
                         "Studio,style,sub-folders,summarize,Sun,support," +
                         "supports,SYS-CON,System,table,take,takes," +
                         "targetNamespace,tasks,TCP,tcpTrace,technologies," +
                         "technology,test,tested,text,text/xml,thing," +
                         "things,three,time,title,titleInside," +
                         "titleProfessional,titles,titleXML,tns,Toolkit," +
                         "touched,toying,trace,Tracing,trademarks,traffic," +
                         "trainer,transport,Trim,try,trying,two,type,types," +
                         "typing,UDDI,Unattended,Unicode,United,Universal," +
                         "URL,use,used,useless,user,uses,Using,UTF-16," +
                         "UTF-8,utility,vbs,VBScript,version,virtual," +
                         "Visual,Vol,w3svc,wants,WAP,way,Web,webservices," +
                         "Wei,wei_meng_lee@hotmail,Wend,Wide,window," +
                         "Windows,Wireless,WirelessDevCon,WML,WMLScript," +
                         "won,workable,works,world,writer,Wrox,wscript," +
                         "WSDL,wsdlgen,WSJ,WSML,www,XML,xmldoc,xmlns," +
                         "xmlsoap,xmlStr,xsd,xsd1,XSLT";
entry.item[2].page = "archives/0100/lee/index.html";
entry.item[2].description = "Creating Web Services with the Microsoft SOAP " +
                            "Toolkit";
entry.item[3].keywords = "$30,acceptance,achieved,acquiring,acquisition," +
                         "Acquisitions,Action,added,advanced,advantage," +
                         "afford,agreement,Airlines,Allaire,all-Java,allow," +
                         "alphaWorks,American,amounts,amusing,analysts," +
                         "announced,announcement,API,APIs,app,apparent," +
                         "apples,application,applications,approximately," +
                         "area,arena,Arms,article,asked,ATG,August,Author," +
                         "automation,B2B,B2B-enabling,B2C,back,background," +
                         "base,based,battle,BEA,began,behind,believe," +
                         "believes,best,best-case,billion,Bio,BizTalk," +
                         "Blaze,bleeding,Bluestone,book,Borland,boxes," +
                         "bring,Brokat,brought,Brown,budgets,build,built," +
                         "built-in,bundled,business,businesses,buying,came," +
                         "campaign,capitalize,catching,certify," +
                         "cess/workflow,champion,chance,changes,cheap," +
                         "check,choose,claim,clear,client,client-side," +
                         "close,clustering,coding,ColdFusion,com,combined," +
                         "combines,commerce,commercial,commodities," +
                         "commoditization,commoditize,community,companies," +
                         "company,competition,competitive,competitor," +
                         "competitors,complement,complementary,complete," +
                         "complex,compliance,compliancy,compliant," +
                         "component,composed,comprehensive,comprising," +
                         "Conclusion,considered,consistent,consists," +
                         "consulting,Contrary,controlled,controversial," +
                         "Copyright,Corporation,couldn,countries,critical," +
                         "CRM,CTO,custom,customer,database,database-based," +
                         "databases,Dave,days,Debate,December,deciding," +
                         "deep,depending,deployed,deployment,describes," +
                         "design,designed,developer,developers,developing," +
                         "development,devices,Dietsen,Dietzen," +
                         "differentiate,difficult,director,disadvantage," +
                         "disappear,document,documentation,doesn,dominant," +
                         "dominated,don,down,Dreamweaver,driving,due,EAI," +
                         "early,earn,ebXML,educator,effects,EJB,E-mail," +
                         "emergence,end,engaged,engine,engines,entered," +
                         "enterprise,enterprise-scale,environments," +
                         "essentially,established,European,events,eWave," +
                         "example,examples,exchange,exciting,execute," +
                         "existing,expanded,explosion,expose,extensive," +
                         "extra,factors,far,faster,favorite,features," +
                         "February,felt,Field,figures,final,finally," +
                         "financial,first,first-to-market,flared,Flash," +
                         "Floyd,floyd@middleware-company,focus,followed," +
                         "force,forced,formats,fought,frameworks,full," +
                         "fully,fundamental,future,gaining,game,gateways," +
                         "gauge,gave,gears,GemStone,Gemstone/J,generic,get," +
                         "gets,giant,giants,Giga,Given,Great,greatest," +
                         "grocery,Group,hadn,handling,hard,hardware," +
                         "heavily,help,heterogeneous,Hewlett-Packard," +
                         "high-speed,home-based,honor,hooks,hopefully," +
                         "HP/Bluestone,HTML,IBM,identical,implement," +
                         "implementation,implementations,implemented,Inc," +
                         "incentives,including,independent,industry," +
                         "industry-specific,info@sys-con,Information," +
                         "Infosystems/Gemstone,initial,initiatives," +
                         "integrate,integrated,integration,interchange," +
                         "Internet,intimately,invest,invested,investments," +
                         "involved,Iona,IPlanet,isn,issuing,ISV,ISVs,J2EE," +
                         "J2EE-Compliant,January,Java,Java-based,jBoss,JCA," +
                         "job,JRun,JSP,July,June,keep,keeping,key,kind," +
                         "landscape,last,latest,launch,layer,lead,leader," +
                         "leading,league,learned,leaving,Level,leverage," +
                         "leveraging,licensee,likely,list,listed,longtime," +
                         "loss,low-cost,Macromedia,Macromedia/Allaire,made," +
                         "magazines,maintained,major,maker,management," +
                         "manager,managers,maps,margin,Marinescu,market," +
                         "marketing,markets,market-share,marks,marriage," +
                         "mass,massive,matter,mature,media,merger," +
                         "message-oriented,Microsoft,Microsystems,mid-2001," +
                         "middleware,migrating,million,mobilize,MOM,money," +
                         "move,moving,MQSeries,much,multi-VM,mushrooms,Net," +
                         "new,niche,nine,November,Now,nutshell,object," +
                         "October,offering,offerings,often,one-stop,online," +
                         "open-source,opinion,options,Oracle,Orion,Outlook," +
                         "out-of-the-box,outside,overnight,own,owner,owns," +
                         "pass,passed,patterns,pay,pegged,perhaps," +
                         "personalization,perspective,place,placing,plans," +
                         "platform,platforms,players,Playing,pockets,point," +
                         "points,popular,port,portable,position,possible," +
                         "powerful,powerhouse,predecessor,predicted," +
                         "predictions,presentation,presentations,press,pro," +
                         "probably,problems,process,process/workflow," +
                         "produce,product,products,programmatically," +
                         "programmers,project,projects,properly," +
                         "proprietary,protocols,proven,provide,provided," +
                         "provider,providers,providing,Publications," +
                         "published,purchased,purely,quality,Race,radar," +
                         "rapid,Rather,reach,readily,real,realm," +
                         "recognition,recognized,reference,reflective," +
                         "regarding,registered,relationship,release," +
                         "releases,remain,remembered,report,required," +
                         "requirement,Reserved,reshape,resources,resulting," +
                         "retain,revenue,rich,ride,Rights,rules," +
                         "rules-based,run,running,Sabre,sales," +
                         "sales/marketing,Sapphire/Web,saw,says," +
                         "scalability,scenario,Scott,script-level,second," +
                         "Sep,serve,server,servers,server-side,services," +
                         "servlet,share,shark,ship,shipping,shopping," +
                         "should,significant,Silverstream,simplified," +
                         "single,sites,small,software,sole,solutions,solve," +
                         "space,specialized,specification,specifications," +
                         "specs,spot,SQL,stability,stack,stand,standard," +
                         "standards,standards-based,States,statistics," +
                         "steal,step,still,stood,store,stories,strategic," +
                         "strategically,strategy,strong,succeed,success," +
                         "suite,summer,Sun,support,supporting,surfaced," +
                         "survey,surveys,switch,switched,Sybase,SYS-CON," +
                         "System,Systems,table,take,takeovers,taking," +
                         "targeted,technical,technologies,technology," +
                         "tember,terms,test,tests,theory,TheServerSide," +
                         "think,third,thousands,threat,three,thus,tie,time," +
                         "time-to-market,too,tools,top,Total-E-Server," +
                         "trademarks,traditional,traditionally,trail," +
                         "training,Trans,transaction,trend,trends,trillion," +
                         "trusted,turn,two,UDDI,ultimate,underlying," +
                         "undisputed,Unfortunately,Unify,unique,United," +
                         "Unlike,unlikely,unpopular,use,used,users," +
                         "utilizing,variety,vendor,vendor-integrated," +
                         "vendors,version,vertical-niche,veteran,viable," +
                         "visual,walks,WAP,wave,way,Web,Web-based,WebLogic," +
                         "webservices,WebSphere,winners,wireless,won,word," +
                         "working,write,written,XAML,XML,year";
entry.item[3].page = "archives/0100/marinescu/index.html";
entry.item[3].description = "2001: History, Trends, Players, " +
                            "Predictions...The Year of Web Services";
entry.item[4].keywords = "abstract,abstract-typed,accelerate,Access," +
                         "accurately,action,address,adult,aggregate,allow," +
                         "analyzed,applications,architecture,Ariba,ASPs," +
                         "attention,Author,availability,B2B,B2C,based," +
                         "Binding,Bio,blocks,boutique,broker,brokers,built," +
                         "business,businesses,care,categorizing,centers," +
                         "change,cheaply,child,claims,collection," +
                         "collections,com,combination,communicate," +
                         "communicated,communication,communities,Company," +
                         "complicated,component,computing,concrete," +
                         "consumers,container,Copyright,cost,countries," +
                         "create,creating,data,data-type,define,defined," +
                         "defines,definition,definitions,deliveries,demand," +
                         "deployed,describe,described,Description,designed," +
                         "designing,determining,developed,developers," +
                         "device,discover,discovered,Discovery,distributed," +
                         "document,documents,dynamic,dynamically,easily," +
                         "efficient,elements,E-mail,employing,enables," +
                         "endpoint,endpoints,entertainment,evolving," +
                         "features,find,first,following,format,frees," +
                         "functions,future,gas,gasoline,given,going,good," +
                         "great,having,higher-level,host,HTML,HTTP,IBM," +
                         "important,Inc,include,independent,info@sys-con," +
                         "information,innovation,insurance,Integration," +
                         "interaction,interface,interfaces,interlocking," +
                         "Internet,inventory,invoke,invoked,jac@skc,Jack," +
                         "Java,Java-based,Knowledge,Language," +
                         "language-independent,Legos,level,limited,located," +
                         "logic,looking,make,manipulated,marks,Martin," +
                         "match,media,Message,Microsoft,Microsystems,model," +
                         "modular,move,needed,network,new,newer,next," +
                         "Object,object-oriented,offerings,oil,one-time," +
                         "open,Operation,operations,operators,orders," +
                         "packaged,pairs,paradigm,pay-as-you-go,perform," +
                         "plan,platform,play,Port,power,president,process," +
                         "processes,production,products,programs,Protocol," +
                         "provide,provider,providers,providing," +
                         "Publications,publish,published,publishing," +
                         "purchasing,quality,quickly,reached,received," +
                         "refiners,registered,registering,registries," +
                         "registry,related,religious,remote,replenishes," +
                         "requester,requester-provider,requesters,requests," +
                         "requires,Reserved,results,Rights,roles,runtime," +
                         "schedule,search,searched,selected,self-contained," +
                         "self-describing,service,service-oriented," +
                         "services,Simple,Simplex,simplicity,single,SOAP," +
                         "Software,specifically,specification,stand-alone," +
                         "standard,standards,States,station,stations," +
                         "structured,Sun,supplies,supported,supports," +
                         "SYS-CON,system,systems,TCP/IP,technologies," +
                         "ternet,thing,Think,three,trademarks,translation," +
                         "transmission,type,Types,ubiquitous,UDDI," +
                         "UDDI-based,under,United,Universal,unlimited,use," +
                         "uses,using,video,Web,Web-based,webservices,world," +
                         "worldwide,WSDL,XML,XSD,Yahoo";
entry.item[4].page = "archives/0100/martin/index.html";
entry.item[4].description = "Web Services: The Next Big Thing";
entry.item[5].keywords = "accept,Access,accessible,accessing,add,admin," +
                         "AdminServer,Advanced,advantage,advice,afford," +
                         "alert,allow,allows,alphaWorks,alternatives,Andy," +
                         "andymc@us,Apache,app,application,applications," +
                         "architecture,article,articles,attribute,Author," +
                         "B2B,Background,bar,basis,bean,begin,behind," +
                         "benefits,big,binds,Bio,both,bottom,bottom-up," +
                         "bring,brings,Broker,browser,bugs,build,built," +
                         "button,buy,buying,callable,called,calls,cannot," +
                         "case,CDROMs,CGI,change,changes,Class,classes," +
                         "classpath,click,Clicking,client,Code,coding,com," +
                         "com/software/Webservers/appserv/download," +
                         "com/tech/wsde,command,command-line,companies," +
                         "Company,compiler,complex,concepts,connect," +
                         "Consider,constantly,containing,contains," +
                         "Copyright,CORBA/C,correctly,corresponding," +
                         "corres-ponding,countless,countries,create," +
                         "created,creation,customer,customers,day,days," +
                         "declared,default,defaults,defined,Definition," +
                         "depends,deploy,deployed,deployment,described," +
                         "describes,Description,descriptor,design,develop," +
                         "developer,Development,directory," +
                         "DIRECTORY/workbench,Discovery,discuss,display," +
                         "displays,distribute,document,documents,download," +
                         "downloading,ease,Edition,editor,efforts,EJB," +
                         "E-mail,encourage,end,engagement,engine,engineer," +
                         "ensure,Enter,entered,enterprise,enterprising," +
                         "Environment,errors,etc,evaluation,example," +
                         "examples,exception,execute,executed,executing," +
                         "existing,expand,Experiment,explore,falls," +
                         "familiar,far,fashion,few,fields,Figure,file," +
                         "File/New/WSDL,Find,finds,Finish,finished,first," +
                         "fit,fits,focus,focusing,folder,follow,found," +
                         "fourth,frame,free,FTP,fun,Furthermore,generate," +
                         "generated,generates,generation,generator," +
                         "getEndPoint,getQuote,given,gone,group,happened," +
                         "Hat,here,high,high-level,hire,hope,hopefully," +
                         "hottest,html,http,hype,IBM,idea,implementation," +
                         "importance,important,Inc,include,independent," +
                         "info@sys-con,information,initially,Install," +
                         "installing,integrating,Integration,interesting," +
                         "interface,Internet,Invocation,invoke,Issue,itp," +
                         "jakarta,jar,Java,Java-based,java-classpath," +
                         "JavaServer,JSP,key,know,labeled,Language," +
                         "language-independent,language-indepen-dent,later," +
                         "Launch,launches,least,leave,left,less,let,level," +
                         "line,Linux,list,Listing,listings,little,located," +
                         "location,logic,long,looks,low,made,magazine,main," +
                         "make,manner,market,marks,McCright,means,Media," +
                         "mentioned,menu,Method,methods,meth-ods,Microsoft," +
                         "Microsystems,missing,model,moment,monitor," +
                         "monitored,months,Name,names,necessary,need,needs," +
                         "net,networked,neutral,new,next,Notepad,nothing," +
                         "now,NT/2000,number,Object,offerings,Open," +
                         "operation,order,ordinary,org,org/tomcat/index," +
                         "own,Packages,page,pane,Panel," +
                         "Panel/Administrative,papers,parameters,Path," +
                         "paying,person,perspective,Perspective/Switch," +
                         "planet,platform,platform/language/object," +
                         "platform-and,platforms,play,player,plugins,plus," +
                         "point,polar,port,portal,possibilities,possibly," +
                         "power,preexisting,presents,press,price,prices," +
                         "probably,procedure,proceed,process,program," +
                         "project,Project/servlets,prompt,properties," +
                         "Protocol,protocols,provide,provider,provides," +
                         "proxy,Publications,publish,publishes,purchase," +
                         "purchased,quality,quantity,quote,QUOTE_FILENAME," +
                         "QuoteService,range,reaches,read,Readers,reading," +
                         "real,Red,reducing,registered,registry,remote," +
                         "remotely,rename,request,requester,required," +
                         "requires,Reserved,resources,responsibilities," +
                         "rest,return,Right,Rights,rises,RMI,RPC,run," +
                         "running,runs,runtime,run-time,Sample/Sample," +
                         "Sample/SampleProjects/servlets,Save,scenario," +
                         "scenes,screen,searches,seconds,section,Select," +
                         "sell,selling,Server,servers,service,Services," +
                         "Services/Services,servlet,servlet/JSP,servlets," +
                         "setEndPoint,Settings/Control,share,shares,short," +
                         "should,shown,shows,side,significant,Simple," +
                         "simply,sit,skip,SOAP,SOAPException,software,sold," +
                         "solution,Source,specified,spice,Standard," +
                         "standardized,start,Start/Settings/Control," +
                         "started,starts,States,step,stock,stock_quote," +
                         "stock_symbol,stockbroker,StockNotFoundException," +
                         "StockQuote,StockQuoteService," +
                         "StockQuoteServiceProxy,stocks,Stop,stored," +
                         "strategy,String,suit,Summary,Sun,supported," +
                         "supports,switch,symbol,symbols,SYS-CON,tab,table," +
                         "take,technologies,technology,telling,terribly," +
                         "test,testclient,tested,text,thing,Things,third," +
                         "Thus,time,tired,Tomcat,tools,Tools/Component,top," +
                         "trademarks,trader,try,turn,two,UDDI,understand," +
                         "United,Universal,URL,use,used,useful,Users,using," +
                         "utilizes,values,version,via,Vol,wait,wanted,Web," +
                         "WebSphere,white,Windows,wish,wishes,wizard,work," +
                         "working,world,wrapper,write,writing,written,WSDE," +
                         "WSDL,wsj2,www,XML,Zip";
entry.item[5].page = "archives/0100/mccright/index.html";
entry.item[5].description = "Writing Your First Web Service";
entry.item[6].keywords = "academia,action,admit,Advancement,advise," +
                         "Advisory,agent,agents,allow,answers,applicable," +
                         "applications,application-to-application,approach," +
                         "article,articles,Artificial,ask,assemble," +
                         "attention,attracted,attractive,attributes,Author," +
                         "B2B,back,backgrounds,basic,battle,behind,believe," +
                         "believed,benefit,Berners-Lee,bigger,Biztalk," +
                         "board,bodies,boundaries,brilliant,bring,brings," +
                         "brought,buried,business,Business-to-business," +
                         "call,calls,care,case,catalyst,Catalysts,caused," +
                         "CEFACT,Celsius,center,Certainly,chair,change," +
                         "changed,changes,changing,chapter,chemical," +
                         "chemistry,class,COM,combined,combines,commerce," +
                         "Committee,communicate,communication,compendium," +
                         "complete,Computing,conditions,conduct," +
                         "conferences,confirmed,content,context," +
                         "controversial,Convergence,convert,Copyright," +
                         "CORBA,corners,counterproductive,countries," +
                         "cover-up,creating,customers,dare,data," +
                         "DataChannel,days,DCOM,decades,define,describe," +
                         "descriptions,developed,different,directors," +
                         "discipline,disciplines,display,Distributed," +
                         "diverse,documents,dramatic,drawing,draws,DTD,due," +
                         "EAI,early,ebXML,EDI,effect,effort,efforts," +
                         "Electronic,e-mail,emphasizes,enabled,enables," +
                         "endure,engaged,engineering,Enter,entrant,enzyme," +
                         "Esoteric,especially,events,examples,exciting," +
                         "existed,experienced,experiences,extended," +
                         "extensibility,Fahrenheit,familiar,far-reaching," +
                         "faster,few,final,finance,find,fine,fire,first," +
                         "firstname,firstnameNorbert,focus,folks,forget," +
                         "frameworks,FTP,fun,Furthermore,future,get,given," +
                         "goal,goes,Gopher,graduated,h1test,handles,handy," +
                         "happy,health,Help,high,history,hopefully,HTML," +
                         "http,hype,Hypertext,IMHO,impact,Inc,independent," +
                         "industries,industry,influencing,info@sys-con," +
                         "information,instead,integral,integration," +
                         "Intelligence,Interchange,interests,interface," +
                         "international,Internet,intertwined,intimately," +
                         "introduces,invented,invocation,involved,issues," +
                         "i-technology,Java,Java-based,kind,kinds,know," +
                         "knowledge,known,large,Last,lastname," +
                         "lastnameMikula,later,learn,least,left,legacies," +
                         "Let,lingo,list,listen,location,Logic,long," +
                         "longstanding,look,loosely-coupled,lower,machine," +
                         "magic,making,marketing,marks,masses,meaning," +
                         "meaningful,means,Media,medium,merits," +
                         "Merriam-Webster,Message,messaging,meta-language," +
                         "Microsystems,Mikula,millions,mind,mind-meld," +
                         "money,much,name,national,Nations,need,neutral," +
                         "Never,new,next-generation,nicely,nightmares," +
                         "Norbert,Norbert@DataChannel,noun,numerous,NXP," +
                         "OASIS,OASIS/United,objects,object-to-object,Okay," +
                         "Ontologies,opinion,Organization,original,output," +
                         "papers,parsed,parser,part,Participation,partners," +
                         "past,people,pioneers,planning,platform,play," +
                         "possible,presented,problems,proceed,processing," +
                         "product,profane,profound,promise,protocol," +
                         "provide,provides,providing,provokes,Publications," +
                         "publishing,pursued,question,rant,rate,rather," +
                         "reaction,record,regarding,Regardless,registered," +
                         "remarkable,remember,remote,research,Reserved," +
                         "result,revolution,revolutionary,rich,rife,right," +
                         "Rights,role,RosettaNet,routing,RPC,save,SAX,say," +
                         "Schema,scholars,school,schools,second,seems," +
                         "Semantic,serves,Service,Services,SGML,share," +
                         "shown,significant,simple,simplicity,single," +
                         "software,solve,sooner,speak,speaker,special," +
                         "specific,speeds,stage,standard,standards," +
                         "standards-based,startling,States,stay,still," +
                         "stories,strategic,strikes,Structured,studied," +
                         "style,subconscious,submissive,substance,success," +
                         "Sun,suppliers,supply-chain,surrounding,SYS-CON," +
                         "systems,technical,technologies,technology,tell," +
                         "Telnet,temperature,terms,terrors,text,think," +
                         "thinkable,thought,thoughts,tie,tightly-coupled," +
                         "Tim,time,track-chair,trademarks,traditions," +
                         "transformation,transport,trying,under,United," +
                         "unrelated,use,used,using,validating,variety," +
                         "verticals,via,violent,virtual,vision,wars,waves," +
                         "way,Web,Whether,white,willing,won,work,working," +
                         "world,worldwide,XML,XML/XSL/XML-Schema,XML-based," +
                         "XML-related,XML-Schema,XSL,years";
entry.item[6].page = "archives/0100/mikula/index.html";
entry.item[6].description = "Transforming the World with Web Services";
entry.item[7].keywords = "abstract,accepted,Access,Additionally,address," +
                         "advancement,advantageous,allow,allows," +
                         "alternative,amount,analogous,application," +
                         "applications,architecture,Ariba,article,assist," +
                         "assists,associated,assumptions,attempting," +
                         "attribute,Author,automate,automated,automation," +
                         "automobile,basis,belief,benefit,bind,binding," +
                         "bindings,binds,Bio,body,both,browser,business," +
                         "businesses,call,called,case,chain,chosen,clarify," +
                         "Code,com,com/GetLastTradePrice,com/stockquote," +
                         "communications,companies,complexity,components," +
                         "computer,computing,conforming,confuse,confusion," +
                         "connect,connected,consists,contained,contains," +
                         "Copyright,CORBA,countries,coupled,coupling,cover," +
                         "create,created,creates,critical,CTO,data,DCE," +
                         "DCOM,debilitating,dedicated,define,defined," +
                         "defines,definition,delivery,derivation,describe," +
                         "described,Description,design,designed,desired," +
                         "development,different,dimension,discover," +
                         "discovering,Discovery,discussed,disparate," +
                         "disparities,display,distributed,document," +
                         "documentation,documentationMy,documents,downside," +
                         "earlier,easily,efforts,element,E-mail," +
                         "encodingStyle,endeavors,engineers,enhancement," +
                         "enterprise,entire,environment,ERP,ever-changing," +
                         "example,excessive,executing,executives,exist," +
                         "existing,expert,expose,exposed,exposes,exposing," +
                         "extending,extends,external,extranet,extremely," +
                         "familiar,fashion,fill,Finally,find,firewall," +
                         "first,fit,flexible,focuses,focusing,following," +
                         "format,formats,forms,forward,found,functionality," +
                         "functions,further,gain,GET/POST,GetLastTrade," +
                         "GetLastTradePrice,GetLastTradePriceInput," +
                         "GetLastTradePriceOutput,Going,great,group," +
                         "handlers,heavyweight,help,here,holes,hope,HTML," +
                         "HTTP,HTTP/SOAP,human,hurdles,IBM,identified," +
                         "identify,identifying,IDL,iKimbo,illogical," +
                         "illustrate,implement,implementation," +
                         "im-plementation,implementations,implemented," +
                         "important,improvement,Inc,incarnation,including," +
                         "incorporate,incorporated,increased,independent," +
                         "industry,info@sys-con,information,informational," +
                         "inheriting,Initially,initiative,input,inputs," +
                         "inquiring,instant,instead,integrate,integration," +
                         "intended,intent,interface,interfaces,internal," +
                         "Internet,intervention,intranet,Invented," +
                         "inventory,invoke,invoked,invoking,Issue,Java," +
                         "Java-based,jpm@ikimbo,Language,large,larger,late," +
                         "layers,Leading,led,Let,leverage,leverages," +
                         "Leveraging,lightweight,Linking,links,Listing," +
                         "literal,locate,location,longer,loose,loosely," +
                         "machine-to-machine,made,major,manner," +
                         "manufacturer,marks,mature,maturity,mechanism," +
                         "Media,message,messages,metaphor,method,Microsoft," +
                         "Microsystems,MIME,minimizing,model,modified," +
                         "molded,monthly,Morgenthal,multiple,name,namely," +
                         "namespace,necessary,need,needed,needs,network," +
                         "new,next,NIFX,NIH,Note,now,number,Object,occur," +
                         "occurs,offer,operation,operational,order," +
                         "ordering,org/soap/encoding,org/soap/http," +
                         "organization,output,outputs,overall,overhead," +
                         "Pages,parsing,part,partners,people,perceived," +
                         "performed,phase,physically,place,placed,planning," +
                         "point,population,port,portion,portType," +
                         "potentially,powerful,predecessors,preexisting," +
                         "preparation,prevalent,PriceInput,PriceOutput," +
                         "probably,problem,process,processes,product," +
                         "profiles,programming,propose,Protocol,prove," +
                         "provide,provider,providing,Publications,publicly," +
                         "publishing,pure,purpose,purposes,query,question," +
                         "questions,reasoning,recognize,regard,regarding," +
                         "registered,registry,remote,repository," +
                         "represented,request,required,Reserved,respond," +
                         "retrieve,retrieving,return,returned,returns," +
                         "Rights,risk,RMI,run-time,satisfies,scenarios," +
                         "Schema,Schemas,scraping,second,section,security," +
                         "send,serialization,Series,serve,served,Server," +
                         "service,Services,servlets/Active,should," +
                         "significant,Simple,simpler,simply,SOAP," +
                         "soapAction,solid,solution,solutions,solve," +
                         "solving,Source,space,specific,specification," +
                         "specified,standardization,start,states,static," +
                         "status,steps,still,StockQuote,StockQuoteBinding," +
                         "StockQuotePort,StockQuotePortType," +
                         "StockQuoteService,StockQuoteSoapBinding,storage," +
                         "store,strongly,style,suffers,Sun,supplier,supply," +
                         "supposedly,surrounding,susceptible,syndrome," +
                         "syndrome-a,SYS-CON,system,systems,take,tandem," +
                         "TCP/IP,technologies,technology,telephone,tell," +
                         "tells,term,terminology,thus,tied,time,tns," +
                         "trademarks,TradePrice,TradePriceResult,trading," +
                         "transaction,transactional,transport,two," +
                         "two-parts,type,types,UDDI,unanswered,understand," +
                         "United,Universal,unmarshaling,URL,URLs,usage,use," +
                         "used,user,users,using,values,versioning,virtual," +
                         "visual,Vol,Web,well-known,world-renowned,write," +
                         "WSDL,WSJ,XML,xmlsoap,xsd,xsd1";
entry.item[7].page = "archives/0100/morgenthal/index.html";
entry.item[7].description = "Where Are Web Services Going?";
entry.item[8].keywords = "ability,accommodates,achieve,achieved,adapt," +
                         "adapted,additional,addressing,altered,apples," +
                         "aren,arrival,ashes,Assuredly,Author,back,bad," +
                         "bare,basic,be-all,behind,benzene,Bio,bombs,bring," +
                         "build,business,businesses,business-to-business," +
                         "capable,carnage,carved,chains,change,charge," +
                         "chutzpah,clear,collaborative,collapse,com,coming," +
                         "commerce,commodities,Commoditization,commodity," +
                         "communication,community,companies,company," +
                         "compare,compelling,compete,competition,component," +
                         "coms,conclude,consultant,context,cooperate," +
                         "cooperation,cooperative,coopetition,Copyright," +
                         "corporations,correction,countries,coupled,craze," +
                         "creating,critical,dead,determine,different," +
                         "difficult,disk,distance,distinct,dot,dot-com," +
                         "dot-coms,doubt,down,drive,drives,driving,easy," +
                         "economies,economy,ecosystems,editor-in-chief," +
                         "Effect,E-mail,end-all,environment,Era,especially," +
                         "exchange,exchanges,experiencing,expert,extremely," +
                         "failures,fallout,fatal,feeling,few,field,fits," +
                         "flaws,force,forefront,forever,Fortune,gain,get," +
                         "global,goal,good,grow,growing,growth,guys,handle," +
                         "handling,idea,imperative,Inc,independent," +
                         "individual,industries,industry,inexorably," +
                         "infancy,infant,info@sys-con,insiders,Internet," +
                         "interoperating,involved,Java,Java-based,Journal," +
                         "kind,know,lack,laid,landscape,laudable," +
                         "leadership,leading,led,level,leveraged,liquidity," +
                         "little,long,lucky,major,majority,make,market," +
                         "marketing,markets,marks,means,Media,Microsystems," +
                         "model,models,months,move,moves,much,myth,naïve," +
                         "nature,needs,NetMarkets,neutral,Neutrality,new," +
                         "next,Nor,nothing,now,online,open,operating,order," +
                         "ourselves,outsider,pain,pains,paradigm,Part," +
                         "participate,past,patterns,people,perceived,plans," +
                         "players,playing,precisely,premature,problem," +
                         "problems,process,product,products,provides," +
                         "providing,Publications,rapid,real,reality,reason," +
                         "rebuilding,reevaluation,registered,Reserved," +
                         "respected,revolution,Rhody,Rights,rising,rules," +
                         "savvy,Sean,sean@sys-con,seeing,sense,service," +
                         "Services,several,showed,slowly,specifications," +
                         "stage,Stagnation,standards,standpoint,starts," +
                         "start-ups,States,steel,still,stocks,stone,strong," +
                         "structure,suffered,Sun,supply,support,SYS-CON," +
                         "systems,tech,Technology,thrive,time,tolerances," +
                         "trademarks,traditional,transactions,true,truly," +
                         "trying,underpinnings,understand,unite,United," +
                         "uniting,useful,value,vendors,way,ways,Web," +
                         "Welcome,willing,wish,witness,won,work,workings," +
                         "world,worse,written,year,years";
entry.item[8].page = "archives/0100/rhody/index.html";
entry.item[8].description = "The Rise Of Web Services";
entry.item[9].keywords = "ability,achieved,acts,addition,adhered,agreed," +
                         "Agreement,aid,allows,applying,architecture,arise," +
                         "article,ask,associated,attachments," +
                         "authentication,Author,availability,Based," +
                         "behavior,behaviors,believe,benefits,binary,Bind," +
                         "bindings,BindPartner,bindsys,Bio,block,blocks," +
                         "both,browsing,Bublin,building,business,busi-ness," +
                         "business-critical,businesspeople,business-ready," +
                         "capabilities,Catalogs,choreography,clear," +
                         "cofounder,collaboration,collaborations," +
                         "collaborative,com,combine,combined,com-mence," +
                         "communicate,communication,communications,company," +
                         "complement,complete,complex,component," +
                         "comprehensive,comprise,comprises,computing," +
                         "Conclusion,conditions,conduct,consider," +
                         "considering,consistent,con-straining,consumed," +
                         "consumer,consumers,containing,context,Copyright," +
                         "core,countries,coupling,CPA,CPP,CPPs,CTO,David," +
                         "defined,defines,definitions,deliver,delivering," +
                         "demands,deployed,deployment,describing," +
                         "description,descriptions,desired,determine," +
                         "developing,develops,direct,discern,discover," +
                         "discovery,discussion,distinct,document," +
                         "document-oriented,documents,domain,dr@bindsys," +
                         "Dynamic,earlier,ebXML,ebXML-enabled,Electronic," +
                         "elect-ronic,E-mail,embraces,enable,enables," +
                         "endpoints,enforcing,engage,engaged,engagement," +
                         "envelopes,environment,environ-ments,essence," +
                         "example,exchange,excitement,execute,executed," +
                         "execution,exhibit,exist,expectations,expected," +
                         "expects,explain,explicitly,express,extends,faced," +
                         "failure,familiar,firmly,first,follows,formal," +
                         "formalized,formally,format,found,frame,function," +
                         "functionality,Fundamentally,further,give,global," +
                         "goal,governs,granularity,greatly,handle,happen," +
                         "here,heterogeneous,HTTP,identified,impact,Inc," +
                         "include,independent,info@sys-con,information," +
                         "infrastructure,initiatives,inputs,Integration," +
                         "intelligent,interaction,interactions,interested," +
                         "Internet,Internet-accessible,interoperability," +
                         "intersection,Ireland,Java,Java-based,key," +
                         "knowledge,language,lends,level,levels,link,lives," +
                         "loose,made,make,making,manner,marks,Maximizing," +
                         "meaningful,means,mechanism,mechanisms," +
                         "mecha-nisms,Media,meet,messages,messaging," +
                         "Microsoft,Microsystems,MIME,minimum,model," +
                         "modeled,multi-party,must-agree,mutually,name," +
                         "need,negotiated,Negotiation,network,new," +
                         "non-repudiation,noted,notion,number,obtained," +
                         "offered,Open,operating,opportunities,outputs," +
                         "parallel,parameters,participating,parties," +
                         "partners,party,Passport,patterns,payload," +
                         "payloads,permit,per-mit,permits,phase,places," +
                         "plan,platform,play,point,possible,posting," +
                         "preceding,predefined,predicated,probable," +
                         "problems,procedure-oriented,procedures,Process," +
                         "produced,Profile,programming,promised,Protocol," +
                         "protocols,provide,provider,provides,publication," +
                         "Publications,publish,published,publishing," +
                         "quality,real,receive,recovery,reengineering," +
                         "reference,refer-ence,registered,registries," +
                         "registry,reliable,remainder,Report,represents," +
                         "required,requirement,requires,Reserved,reusable," +
                         "Rights,roles,rules,runtime,Russell,Schema," +
                         "seamlessly,search,section,secure,security," +
                         "selects,semantics,sequencing,Service,Services," +
                         "shall,sharing,should,simple,simplistic,simply," +
                         "single,SOAP,software,solving,soon,Specification," +
                         "specified,standard,stated,States,store,stringent," +
                         "style,submits,sufficient,Sun,support,supporting," +
                         "supports,surrounding,SYS-CON,systems,takes,talk," +
                         "technological,technologies,technology,terms," +
                         "three,tight,trademarks,trading,transactions," +
                         "transport,turn,two,two-party,type,types,UDDI," +
                         "understand,understanding,understood,United," +
                         "Universal,universally,usage,use,used,useful,user," +
                         "users,Using,utilities,value,vary,vendor,via,way," +
                         "Weather,Web,willing,wish,works,world,worlds,WSDL," +
                         "WSDL-defined,WSDL-described,www,XML";
entry.item[9].page = "archives/0100/russell/index.html";
entry.item[9].description = "Electronic Business XML (ebXML): Making Web " +
                            "Services Work for Business";
entry.item[10].keywords = "ability,abstractly,access,accessible,accessing," +
                          "achieved,acquire,activity,address,addresses," +
                          "addressing,adoption,ADS,advertised," +
                          "Advertisement,advertising,Allaire,allows," +
                          "analyze,and/or,APIs,application,applications," +
                          "applied,approach,approaches,architect,area," +
                          "Ariba,aspects,associating,attention,attributes," +
                          "audit,Author,automatic,automatically," +
                          "availability,B2B,back,based,basic,beginning," +
                          "behavior,behind,Believe,best,binary,binding," +
                          "bindings,Bio,blocks,bold-faced,bolts,Both,bound," +
                          "boundaries,bright,broader,brokering,building," +
                          "built-in,business,businesses,business-level," +
                          "came,capabilities,capability,case,catalysts," +
                          "category,challenge,challenges,change,changes," +
                          "changing,chief,clients,codes,columns,com,coming," +
                          "command,commerce,communicate,communication," +
                          "companies,competitive,complexity,complicated," +
                          "composing,composition,computing,configuration," +
                          "configured,Consider,consulting,content," +
                          "contracts,Control,Copyright,core,Corporation," +
                          "costly,countries,covery,crawlers,creates," +
                          "currency,customer,data,deal,defined," +
                          "dependencies,describe,described,description," +
                          "descriptions,detail,detailed,develop,developing," +
                          "different,difficult,digital,directory,Dis,DISCO," +
                          "discover,discovery,distinctly,distributed," +
                          "diversity,document,documents,doesn,dollar,DTDs," +
                          "dynamics,early,easily,ebXML,effects,effort," +
                          "efforts,element,elements,else,elusive,E-mail," +
                          "emerges,enable,enables,encapsulated,encoded," +
                          "encoding,end,engage,engagement,engine,engineers," +
                          "enterprise,enterprise-level,entire,entities," +
                          "entity,envelope,error,error-handling,evolve," +
                          "evolves,example,exception,exciting,exist," +
                          "existing,expands,expert,exposed,extensibility," +
                          "extensible,fail,failure,far,features,field," +
                          "Figure,first,focus,focuses,foolish,form," +
                          "formalized,format,formats,foundation,four," +
                          "framework,frameworks,FTP,fueled,fully," +
                          "fundamental,further,Furthermore,future," +
                          "geographic,get,GetLastTradePrice,gets,getting," +
                          "given,goal,government,group,groups,halfway," +
                          "handling,hands,happen,harder,help,heterogeneity," +
                          "hierarchies,higher-level,highly,hold,HTTP,human," +
                          "IBM,idea,implemented,implementing,important,Inc," +
                          "independent,industry,industry-standard," +
                          "info@sys-con,information,infrastructure," +
                          "initiatives,innovate,innovation,integration," +
                          "integrations,interact,interaction,interactions," +
                          "intermediaries,Internet,Interoperability," +
                          "interoperate,introduce,introduction,involves," +
                          "issues,J2EE,Java,Java-based,key,know,knowledge," +
                          "language,large,latest,layer,layers,leaders," +
                          "learned,least,left,less,lessons,leverage,likely," +
                          "limited,list,listed,load,location,lofty,look," +
                          "looked,looking,made,main,make,managed," +
                          "management,manual,map,marketplaces,marks,mature," +
                          "meaningful,meant,mechanism,mechanisms,Media," +
                          "member,members,merger,mess,messages,messaging," +
                          "Microsoft,Microsystems,minimum,mix,models," +
                          "modifying,money,month,months,moved,moving,much," +
                          "multimillion,NAICS,name,namespaces,NASSL,native," +
                          "Need,needed,needs,Net,network,never,new,next," +
                          "next-generation,notifications,now,nuts,offering," +
                          "offers,one-to-many,One-to-one,online,operation," +
                          "orchestration,org,original,outline,packaging," +
                          "pages,paramount,part,past,patterns,payments," +
                          "performed,personal,personnel,perspective," +
                          "perspectives,pieces,place,platform,point,poses," +
                          "potential,potentially,practice,precludes," +
                          "preexisting,presence,pressures,price,prices," +
                          "primarily,principle,priori,probably,problem," +
                          "problems,process-based,processes,promise,prone," +
                          "properties,protocol,protocols,provide,provider," +
                          "providers,provides,providing,Publications,pure," +
                          "put,question,rally,rapidly,rather,RDF,reached," +
                          "read,readable,realization,reasonably,reasons," +
                          "receive,receiving,recovery,referral,registered," +
                          "registration,registries,relationship-oriented," +
                          "release,relevant,replaced,representation," +
                          "represented,request,request-response,requests," +
                          "required,requirement,requires,Reserved,response," +
                          "responses,retrieve,revisions,right,Rights,risk," +
                          "root-level,rules,run,scalability,scalable," +
                          "scarce,scenarios,schema,SCL,scope,SDL,seamless," +
                          "search,searches,searching,second-generation," +
                          "security,sending,sequence,service,services," +
                          "seven,several,shared,should,shows,side," +
                          "significant,Simeon,Simeonov,simeons@allaire," +
                          "simple,simplest,sites,six,skilled,slightly," +
                          "small,SMTP,SOAP,SOAP-based,solve,solved,sort," +
                          "space,spans,specific,specification," +
                          "specifications,specifications/efforts,specified," +
                          "speed,stack,standards,starting,States,stifling," +
                          "still,stock,structured,structures,succeed," +
                          "success,Sun,superceded,supports,symbol,SYS-CON," +
                          "system,systems,take,takes,taking,target,TCP/IP," +
                          "TCP/IP/HTTP/SMTP,technical,technological," +
                          "technologies,technology,tell,things,think," +
                          "thinking,three,Throw,time,tools,top,topic," +
                          "trademarks,Traditionally,trails,transaction," +
                          "Transit,transport,trivial,true,two,type,types," +
                          "UDDI,UML,understanding,United,Universal," +
                          "upcoming,URL,use,used,user,users,uses,using," +
                          "utilize,valuable,via,view,W3C,way,ways,Web," +
                          "webservicebackend,webservices,well-established," +
                          "well-targeted,white,willing,wire,work,workflow," +
                          "working,works,world,worse,writing,WSDL,www,XMI," +
                          "XML,yellow,yellow-page-type";
entry.item[10].page = "archives/0100/simeonov/index.html";
entry.item[10].description = "The Interoperability Stack";
entry.item[11].keywords = "abound,access,activity,adopting,adoption," +
                          "agnostic,agreed,agreeing,allowing,alternatives," +
                          "announced,applications,apply,architect,area," +
                          "aren,Ariba,aspects,assembling,associated," +
                          "attempts,Author,back,based,began,benefits," +
                          "binding,Bio,body,bookstore,Bosak,Bowstreet," +
                          "bring,brought,browser,business,businesses," +
                          "Candidate,certification,certifying,CGI," +
                          "characteristic,chartered,classification," +
                          "classifications,com,communicate,communication," +
                          "companies,competencies,competency,complete," +
                          "concept,conducted,consolidation,convergence," +
                          "Copyright,core,cost,countries,customers,data," +
                          "definition,definitions,describing,Description," +
                          "developers,differ,difference,different,director," +
                          "discover,discovering,Discovery,discussed," +
                          "disparate,distributed,doubt,draft,dramatically," +
                          "drops,dynamic,dynamically,dynamism,easier," +
                          "educating,effort,E-mail,embedded,emerge," +
                          "employees,enables,end,engines,Entirely,e-speak," +
                          "especially,examples,exciting,execution," +
                          "expressed,fact,far,favorite,favors,final,find," +
                          "fixed,focus,folded,former,forms,functionality," +
                          "Gateway,generic,group,groups,guaranteed,handed," +
                          "headed,hence,hooks,hot,HTML,HTML-based,HTTP," +
                          "huge,human,IBM,idea,importance,important,Inc," +
                          "include,independence,independent,info@sys-con," +
                          "information,infrastructure,initiatives,input," +
                          "inputs,integrate,Integration,Interface,involved," +
                          "ironic,issue,James,Java,Java-based,Jon," +
                          "jtauber@bowstreet,key,kind,Language,late,latter," +
                          "layer,Layered,layers,least,legacy,likely,lines," +
                          "logic,look,made,maintains,making,manageable,map," +
                          "marks,markup,means,media,Microsoft,Microsystems," +
                          "minds,models,move,names,needs,new,next,notion," +
                          "now,number,offer,offerings,offers,online,open," +
                          "operation,output,outputs,overall,own,parameters," +
                          "part,partners,passively,people,pieces,plays," +
                          "plugging,point,possible,possibly,powerful," +
                          "predates,presentation,principally,processed," +
                          "processing,projects,protocol,protocols,provided," +
                          "provides,providing,publications,publish," +
                          "publishing,purchase,quality,range,Rather,reach," +
                          "reached,real,receive,Recommendation,referred," +
                          "registered,registries,remain,remains," +
                          "repurposability,repurposed,requirement,Reserved," +
                          "resources,responsible,retrieve,richer,Rights," +
                          "role,schema,screen-scraping,search,seen,send," +
                          "separate,separating,September,server,service," +
                          "services,should,shrinking,simply,site,sites," +
                          "small,SOAP,software,soon,source,specific," +
                          "specification,specifications,standard," +
                          "standardize,standards,starting,States,Status," +
                          "still,stock,strategy,structure,suggest,Sun," +
                          "support,SYS-CON,system,taking,Tauber,taxonomy," +
                          "technical,techniques,technologies,technology," +
                          "things,time,too,top,topic,trade,trademarks," +
                          "transition,triggering,trust,two,type,UDDI," +
                          "Undoubtedly,United,Universal,used,using,value," +
                          "via,vital,vocabularies,W3C,wanted,wasn,way,ways," +
                          "Web,webs,webservices,well-known,wide,widespread," +
                          "work,working,world,writing,WSDL,XML,XML-based," +
                          "XML-related,xmlsoftware,year";
entry.item[11].page = "archives/0100/tauber/index.html";
entry.item[11].description = "Web Services: Why They're XML and How " +
                             "They'll Change Computing";
entry.item[12].keywords = "aggregated,Andy,applications,asked,asking," +
                          "back-end,behind,Bowstreet,breaking,brought," +
                          "browser,business,businesses,buzz,call,change," +
                          "Chief,com,combined,companies,complementary," +
                          "complete,components,composite,concept," +
                          "configuration,connecting,connections,contexts," +
                          "countries,customers,data,David,day,descriptive," +
                          "developers,development,devices,different,E-mail," +
                          "emerging,enable,enables,enormous,example,expert," +
                          "exposed,exposing,financing,fixed,formats," +
                          "functionality,generic,Hampshire,heart,hiding," +
                          "HTTP,humans,Inc,independent,individual," +
                          "info@sys-con,information,Internet,intranets," +
                          "i-technology,Java,Java-based,kind,know,leading," +
                          "Litwack,manner,manufacturer,marks,markup,Media," +
                          "metadata,Microsoft,Microsystems,multiple,New," +
                          "next,node,Officer,one-to-one,opinions,paradigm," +
                          "people,pieces,platform,platforms,players," +
                          "Portsmouth,presentation,President,processes," +
                          "product,project,protocols,provide,provided," +
                          "providers,Publications,rather,reach,redeploying," +
                          "registered,repurpose,repurposed,Roberts,rolled," +
                          "separating,service,services,seven,shipping," +
                          "should,silos,software,standard,States,Sun," +
                          "suppliers,SYS-CON,systems,Technology,thus," +
                          "trademarks,United,units,used,uses,using,via," +
                          "view,views,virtual,ways,Web,world,WSJ,XML";
entry.item[12].page = "archives/0100/wsj/index.html";
entry.item[12].description = "Web Services Edge 2001";
entry.item[13].keywords = "ability,Acquisitions,allowing,App,application," +
                          "applications,architecture,asking,assemble," +
                          "attempt,audience,Author,awoke,back,backend," +
                          "based,Basic,Benfield,Big,Bio,boundaries,box," +
                          "build,builds,business,businesses,call,calls," +
                          "case,CEO,Changing,chief,choice,CIOs,circumvent," +
                          "clean,cleared,clearly,client,com,companies," +
                          "company,compared,complete,concept,consultants," +
                          "consume,Copyright,cost-justification,costly," +
                          "countries,create,custom,customer,dancing,data," +
                          "day-in-day-out,days,deliver,delivering,deploy," +
                          "developers,devices,different,directory,dismiss," +
                          "Divisions,don,Doom,dreamed,easier,easy,economy," +
                          "EDI,effort,e-mail,enables,enterprise," +
                          "environment,Especially,examples,exciting,eXtend," +
                          "fear,February,few,First,formats,frameworks," +
                          "front-end,full,fuzzy,gasps,generalized,get," +
                          "given,going,great,grow-and,guessed,GUI,handling," +
                          "having,Hey,Hmm,hodgepodge,hook,HTTP,Hype,impact," +
                          "implementation,Inc,independent,info@sys-con," +
                          "integrate,integration,intent,interface,internal," +
                          "internally,issues,J2EE,Java,Java-based,JSP," +
                          "jumped,Killer,kind,knew,know,languages,latching," +
                          "latest,layer,left,legacy,light,like-minded,line," +
                          "longer,look,looking,Lotus,love,machine,magazine," +
                          "mainframe,make,makes,managers,mankind,marks," +
                          "massive,mature,means,Media,Mergers,Microsystems," +
                          "mist,money,Monthly,months,multitude,need,needs," +
                          "nephew,new,Normally,now,officer,old,one-off," +
                          "one-offing,open,organizations,outside,own,page," +
                          "part,partners,pay,people,pervasive,plain,planet," +
                          "platforms,portal,position,pretty,problem," +
                          "problems,processes,processing,project,projects," +
                          "promise,protocol,Publications,purchasing," +
                          "realized,registered,Reserved,rest,rewritten," +
                          "rich,Rights,ROI,salesperson,satisfy,saw,say," +
                          "saying,sbenfield@silverstream,seamless,security," +
                          "Sending,separate,serve,server,servers,service," +
                          "service-oriented,services,shocked,SilverStream," +
                          "simple,six,SOAP,software,sold,solutions," +
                          "specific,standard,standards,States,Steve," +
                          "straight-through,suffers,Sun,SYS-CON,System," +
                          "systems,take,talking,technical,technologies," +
                          "technology,tell,tends,thin-client,things," +
                          "thinking,time,time-consuming,times,told,tools," +
                          "trademarks,transaction,transactions,trying," +
                          "Tuesday,UDDI,unimagined,United,unseen,use,value," +
                          "vendors,vista,Visual,walked,wants,Web,wireless," +
                          "working,world,worldwide,writing,WSDL,XML,year";
entry.item[13].page = "archives/0101/benfield/index.html";
entry.item[13].description = "The White Knight Killer App";
entry.item[14].keywords = "ability,abuse,accepted,action,actions,acts,Add," +
                          "address,addressed,addresses,adherents,adopted," +
                          "advancing,advantages,advertisers,agree,alarm," +
                          "aligned,altered,alternate,analysts,ancient," +
                          "anonymous,Answer,API,appearing,application," +
                          "applications,applied,appointment,appointments," +
                          "approach,apps,architecture,areas,aren,arises," +
                          "article,ask,asking,assumption,asynchronous," +
                          "asynchronously,Asynchrony,Attack,attempt," +
                          "attempting,Author,automated,automating," +
                          "autonomously,awareness,B2B,back,bad,bandwagon," +
                          "barrier,basically,batch,battles,beeps,behavior," +
                          "beings,belong,benefits,best,big,bigger,billions," +
                          "bin,binary,Bio,board,bones,boom,both,brand-new," +
                          "bring,bringing,broker,browser,build,bulk," +
                          "business,business-to-business,bust,button," +
                          "cables,Cagle,calendar,call,called,calls,came," +
                          "car,cards,carefully,carry,cases,casualties," +
                          "cavity,cell,central,certain,certainly," +
                          "characteristics,charge,cherry-red,chicken," +
                          "choice,choke,cleanly,clear,client,client/server," +
                          "clients,clothes,clothing,coats,code,coding,cold," +
                          "college,COM,coming,command,commands,committee," +
                          "commons,Communications,communicative,companies," +
                          "company,comparatively,compelling,competitive," +
                          "complaint,complex,complicated,comprise," +
                          "compromises,computations,computer,computerized," +
                          "computers,COM-type,conceived,concept,concern," +
                          "concocted,confetti,conglomerates,connection," +
                          "connections,consider,considerably,considered," +
                          "consistent,constitutes,consumer,consumer-based," +
                          "consumers,con-tained,container,contains,content," +
                          "contents,Contestant,contingency,contrary," +
                          "control,cool,coolest,cooperative,Copyright," +
                          "CORBA,cost,costs,couldn,countries,covers,crawl," +
                          "create,critical,crossing,custom,cuts,danger," +
                          "data,date,Dave,DCOM,DDOS,dealing,debated," +
                          "decentralization,deck,decryption,dedicated,deep," +
                          "defroster,degree,denial,dentist,described," +
                          "design,designed,developed,developer,developers," +
                          "developing,device,different,direct,direction," +
                          "discovered,discrete,discuss,discussion," +
                          "dismissing,distant,distinct,distressing,divide," +
                          "doesn,dollar,DOM,dominant,don,doubt,down," +
                          "download,dozen,easier,easily,e-business,ebXML," +
                          "edge,EDI,effectively,efficiencies,efficiency," +
                          "efficient,efficiently,electronic,e-mail,emperor," +
                          "encapsulate,encapsulation,encrypted,encryption," +
                          "end,ensure,entering,entire,envelope,envelopes," +
                          "enveloping,error,essence,essentially,etc," +
                          "ethernet,evangelists,evolve,evolved,exacts," +
                          "examined,example,except,exceptions,exchanging," +
                          "exist,existing,experience,explore,exponentially," +
                          "extends,external,extravagant,extreme,Extremely," +
                          "facet,fact,facto,factory,fails,fairly,fairy," +
                          "falls,family,far,fashion,faster,faults,favor," +
                          "feature,feel,few,fighting,figures,filled," +
                          "Finally,find,fine,first,fisticuffs,fit,five," +
                          "flag,flatter,flexibility,flexible,focus,forbid," +
                          "forefront,forwarded,fray,free,frequency," +
                          "frequently,FrontierLand,function,gadgets,galley," +
                          "gallon,game,general,Get,gets,give,given,giving," +
                          "globally,goal,goes,going,good,grocery,group," +
                          "guarantee,guard,guess,hackers,hadn,Hailstorm," +
                          "hammered,hand,handle,happen,hard,hardware," +
                          "header,heading,healthy,heard,heaven,heavy-duty," +
                          "help,hence,here,hide,high,highlights,hint," +
                          "history,holds,Hollerith,Home,horsepower,hot," +
                          "hotly,HTTP,human,hype,idea,ideal,identify," +
                          "imagination,immediate,implement,implicit," +
                          "imprisoned,Inc,Incapacitate,incapacitated," +
                          "incarnation,including,Incompatibility," +
                          "incompatible,incorrectly,increase,increasing," +
                          "increasingly,independent,indicates,indicating," +
                          "indication,industries,industry,info@sys-con," +
                          "information,infor-mation,initiating,initiatives," +
                          "insidious,instance,instantiating,instantiation," +
                          "instructions,instructive,insurmountable," +
                          "integration,intended,interaction,interactions," +
                          "interception,interconnectedness,interesting," +
                          "interface,interfaces,interior,Internet," +
                          "interrupt,intra-business,intrusion,invented," +
                          "invitation,invoked,involved,isn,issue,issues," +
                          "Janet,Java,Java-based,job,journalistic," +
                          "juggernaut,jumping,justify,keep,kid,kids,kind," +
                          "king,know,Kurt,kurt@kurtcagle,kurtcagle,Lack," +
                          "lanes,large,largely,larger,last,late,lead," +
                          "leading,left,less,lesson,letting,level,lies," +
                          "limit,line,live,lives,local,located,location," +
                          "long,long-term,Look,lost,love,low,machine," +
                          "machines,made,major,majority,make,makes,making," +
                          "manipulation,mapped,March,marginal,market," +
                          "marketed,marketing,marks,marshalling,material," +
                          "means,Media,mentioning,message,messages," +
                          "messaging,messy,methodology,methods,Microsoft," +
                          "Microsystems,milk,mind,Mindset,mistake,model," +
                          "models,modern,moniker,month,Moreover,motivate," +
                          "move,movement,much,multibillion," +
                          "multibillion-dollar,multiple,naked,naturally," +
                          "nature,necessarily,necessary,need,needed,needs," +
                          "neglects,negotiate,negotiating,negotiations," +
                          "neo-ancients,net,network,never,new,news,next," +
                          "non-networked,non-Windows,non-XML,normal," +
                          "nothing,noticeably,notify,notion,not-so-subtle," +
                          "novelty,now,number,OASIS,object,object-oriented," +
                          "objects,offer,offerings,often,Okay,old,Olympia," +
                          "open,opened,operate,operating,operation," +
                          "optimize,optimized,order,orders,organization," +
                          "oriented,original,overwhelmed,own,package,page," +
                          "paint,paradigm,part,pass,passed,passing,payload," +
                          "payloads,PDA,peer-to-peer,people,perfectly," +
                          "perform,performance,perhaps,periodically," +
                          "Personal,personally,pertinent,pervasive,phone," +
                          "pick,pipe,place,plain-text,play,players," +
                          "plug-and-play,pointed,poorly,possible,POST," +
                          "potential,potentially,poultry,pound,Pounds," +
                          "powered,powerful,practice,precisely,president," +
                          "presses,pretty,prevent,Privacy,probably,problem," +
                          "problems,process,processes,program,programmed," +
                          "programmers,programming,programs,properly," +
                          "property-driven,protocol,protocols,proved," +
                          "provide,provided,provider,providing," +
                          "Publications,punch,purposes,pushing,puts," +
                          "question,questions,quick-and-dirty,quickly," +
                          "quite,radically,raises,ran,rapidly,rather," +
                          "reached,real,realize,reason,reas-oned,recipient," +
                          "record,Redmond,refrigerator,regardless," +
                          "registered,related,relevant,remarkably,remember," +
                          "remotely,replace,request,request/response," +
                          "requesting,required,requires,resealed,Reserved," +
                          "resistance,resolved,resonates,respects," +
                          "responsibility,revolutionizing,rich,Rights," +
                          "robots,rower,RPC,RPCs,rule,run,running,runs," +
                          "Salt,say,scale,scan,scan-it-yourself,scenario," +
                          "scenarios,Schedule,scheduled,scheduler,schema," +
                          "school-age,scientists,second,sector,secure," +
                          "security,seem,seemed,seems,seen,Semantic," +
                          "sending,sends,sense,sent,separate,series,serve," +
                          "server,servers,service,services,servicing,sets," +
                          "setup,several,sexier,share,She,shiny,should," +
                          "shows,shred,significant,significantly,simple," +
                          "simply,single,sit,site,situation,six,size,sizes," +
                          "skills,slave,slow,snooping,SOAP,Social,sockets," +
                          "software,solution,solved,son,sort,sounds,Space," +
                          "sparingly,spec,specializing,specs,speeds,sphere," +
                          "sports,SQL,SSL,standard,staring,start,started," +
                          "stateful,stateless,States,steps,step-wise,still," +
                          "stop,stores,strike,strong,structure,structures," +
                          "subscribe,sudden,suffer,sufficiently,suited," +
                          "summarily,SUMMARY,Sun,supper,support,supreme," +
                          "switching,synchronous,SYS-CON,system,systems," +
                          "tag,tailors,take,taken,takes,taking,tale,talk," +
                          "task,tasks,tech,technologies,technology," +
                          "Telematics,television,tell,tempered,tendency," +
                          "tends,tenet,term,terribly,testament,text," +
                          "text/XML,thawing,theory,thermostat,thing,things," +
                          "think,thinking,thread,threaded,thus,Tim,time," +
                          "times,toasters,too,tool,trademarks,traditional," +
                          "tragedy,transaction,transactions,transferring," +
                          "translation,transmit,transparent,transparently," +
                          "Transport,trying,turn,two,typed,ultimate," +
                          "ultimately,unable,underlies,underpinnings," +
                          "understand,understandably,United,unpredictable," +
                          "unreliable,unresolved,updates,URL,usage,use," +
                          "used,user,ushering,using,Utility,vagaries,valid," +
                          "varies,vein,vendors,version,versions,via,victor," +
                          "vision,visualized,volume,W3C,war,Washington," +
                          "wasn,watch,watching,way,ways,Web,whether,white," +
                          "Winer,wisdom,wishing,wonder,wonderful,word,wore," +
                          "work,worked,working,works,world,worrisome,worry," +
                          "would-be,wouldn,writ,www,XML,XML-RPC,XSLT,years";
entry.item[14].page = "archives/0101/cagle/index.html";
entry.item[14].description = "Rethinking Web Services, Part 1";
entry.item[15].keywords = "aggregated,Andy,applications,asked,asking," +
                          "back-end,behind,Bowstreet,breaking,brought," +
                          "browser,business,businesses,buzz,call,Chief,com," +
                          "combined,companies,complementary,complete," +
                          "components,composite,concept,configuration," +
                          "connecting,connections,contexts,countries," +
                          "customers,data,David,day,descriptive,developers," +
                          "development,devices,different,E-mail,enable," +
                          "enables,enormous,example,expert,exposed," +
                          "exposing,financing,fixed,formats,functionality," +
                          "generic,Hampshire,hiding,HTTP,humans,Inc," +
                          "independent,individual,info@sys-con,information," +
                          "Internet,intranets,i-technology,Java,Java-based," +
                          "kind,leading,Litwack,manner,manufacturer,marks," +
                          "markup,Media,metadata,Microsoft,Microsystems," +
                          "multiple,New,next,node,Officer,one-to-one," +
                          "opinions,people,pieces,platform,platforms," +
                          "players,Portsmouth,presentation,President," +
                          "processes,product,project,protocols,provide," +
                          "provided,providers,Publications,rather,reach," +
                          "redeploying,registered,repurpose,repurposed," +
                          "Roberts,rolled,separating,service,services," +
                          "seven,shipping,should,silos,software,standard," +
                          "States,Sun,suppliers,SYS-CON,systems,Technology," +
                          "thus,trademarks,United,units,used,uses,using," +
                          "via,view,views,virtual,ways,Web,world,WSJ,XML";
entry.item[15].page = "archives/0101/ceo/index.html";
entry.item[15].description = "Web Services CEO's Speak Out";
entry.item[16].keywords = "Academy,accelerating,accept,accepted,achieve," +
                          "acquire,action,actionable,actuate,actuates," +
                          "actuating,actuation,actuators,additional,adopt," +
                          "adoption,advantage,advantages,aggregate," +
                          "aggregated,Air,aircraft,allow,alternative," +
                          "analogs,analyze,analyzes,appears,application," +
                          "applications,Applying,approach,arrival,article," +
                          "attention,auction,auctions,Author,authority," +
                          "automating,automobile,availability," +
                          "back-and-forth,Barcelona,based,begin,best,bid," +
                          "bids,Bio,bits,both,bridge,bridging,brittle," +
                          "buggies,build,building,built,business," +
                          "businesses,C3I,California,calls,care,carriers," +
                          "cars,Certainly,chain,challenge,Chandy,channel," +
                          "chief,chips,circuit,city,coarse-grain,cockpit," +
                          "cofounder,coined,collaboration,collection,color," +
                          "com,combination,Command,commander-in-chief," +
                          "commanders,communicate,communications,Community," +
                          "companies,compelling,competitiveness,complex," +
                          "comply,components,composed,composite," +
                          "compos-ition,comprehensive,computer,Computers," +
                          "Computing,concept,consists,context,Control," +
                          "conversion,convert,convinced,Copyright," +
                          "Corporation,costly,countries,coupled,Coupling," +
                          "critical,cross,currency,customary,custom-built," +
                          "customer,customers,databases,date,deal,decades," +
                          "decision,decisions,decision-support,defining," +
                          "delay,deliver,delivered,demand,demonstrate," +
                          "denim,departments,depends,deployment,desire," +
                          "desktops,detected,determine,develop,developed," +
                          "developing,different,directories,discourse," +
                          "discover,discuss,discussed,discussion," +
                          "discussions,disruption,disruptive,distributed," +
                          "divide,divides,divisions,document,documents," +
                          "dollars,dollar-to-yen,domain,domains,don,down," +
                          "drastically,drawn,dumping,easily,e-business," +
                          "economic,efficacy,e-mail,enable,end,Engineering," +
                          "ensured,enterprise,enterprises,equally,era," +
                          "established,event,events,example,examples," +
                          "exchange,executive,executives,existence," +
                          "existing,explain,explores,exposed,extended," +
                          "extending,extract,extracts,face,factory,fanfare," +
                          "fashion,featuring,fed,felt,few,fighter,find," +
                          "fine-grain,fired,first,five,fleets,following," +
                          "Force,forces,foundation,framework,frame-work," +
                          "frameworks,FTP,functions,fuses,fusing,fusion," +
                          "gap,garment,general,getting,gives,globe,goal," +
                          "granular,greatly,grow,grown,harness,help,higher," +
                          "horse-drawn,HTML,HTTP,huge,human-to-machine,IBM," +
                          "impact,Inc,including,increased,incremental," +
                          "independent,indicate,individual,info@sys-con," +
                          "information,inform-ation,Infosphere,initial," +
                          "instant,Institute,integrate,integrated," +
                          "intelligence,intensive,interact,interaction," +
                          "interactions,introduce,invented,inventory," +
                          "invest,investment,invokes,isolation,iSpheres," +
                          "issue,Java,Java-based,JavaBeans,jump-start," +
                          "Jump-starting,key,knowledge,larger,last,later," +
                          "latter,layers,lead,leaders,leading,Leading-edge," +
                          "less,let,level,lie,Likewise,limited,list," +
                          "listener,Listeners,locate,looked,lower,lowest," +
                          "machine-to-machine,made,magnified,major,make," +
                          "making,manage,management,managers,Mani," +
                          "manufacturer,marks,masses,massive," +
                          "mchandy@ispheres,meaningful,mechanisms,media," +
                          "meet,member,members,message,Message-queuing," +
                          "messages,meta,Microsoft,Microsystems,military," +
                          "millions,minds,minor,Missiles,model,monitor," +
                          "movies,much,multiple,multiplied,National,naval," +
                          "necessitated,need,needed,negotiating,network," +
                          "networks,new,newsgroups,next,non-invasively,now," +
                          "number,objects,obtain,obtaining,occur,occurred," +
                          "offer,offered,offering,offers,officer,offices," +
                          "often,online,operation,opportunities," +
                          "opportunity,optimal,optimizing,orchestrate," +
                          "orchestration,outcome,overabundance,overall,own," +
                          "pace,pages,parallel,part,participating,parties," +
                          "parts,passing,Passive,passwords,payloads,people," +
                          "perception,pieces,pilot,pioneer,plane,playing," +
                          "popular,populate,population,power,powerful," +
                          "praising,press,price,priority,proactive,problem," +
                          "procedure,process,produce,product,production," +
                          "professor,protocols,providers,providing," +
                          "Publications,publish/subscribe,purchase," +
                          "quantity,quarter,quote,Radar,Radical,radically," +
                          "raises,Ramo,rapid,rapidly,rate,rather,ratio," +
                          "ratios,reactive,real-time,register,registered," +
                          "remote,renowned,repositories,request,requests," +
                          "require,requirements,requiring,Reserved,resided," +
                          "resides,resource,resources,respond,responds," +
                          "response,rest,result,resulted,retail,retrofit," +
                          "returning,return-ing,returns,reveal,reveals," +
                          "Rights,run,sales,scale,scenarios,science," +
                          "scientist,scraping,screen,screen-scraping," +
                          "second,Semantic-based,sending,senses,Sensing," +
                          "Sensor,sensors,sequences,Series,service," +
                          "service-enable,service-enabled,services,shape," +
                          "shipping,should,show,showcase,showcases,side," +
                          "Simon,simple,simplified,site,sites,situation," +
                          "skyrocketing,slow,slower,smaller,social," +
                          "solution,solutions,sonar,specified,specifies," +
                          "spread,stack,standard,standardization," +
                          "standardized,standards,States,steps,streams," +
                          "study,subscribes,subscribing,subsequent,Summary," +
                          "Sun,supplier,suppliers,supply,support," +
                          "syntax-based,SYS-CON,system,systematic,systems," +
                          "take,taken,talk,teams,technological," +
                          "technologies,technology,telegraph,telephone," +
                          "temperature,tens,term,terminology,Thailand," +
                          "theaters,theoretical,think,thinking,thousands," +
                          "threats,three,TIB,Tibco,time,too,tool,toolkits," +
                          "tools,top,town,trademarks,trading,traditional," +
                          "transaction,Treating,trigger,two,type," +
                          "ubiquitous,understand,United,units,unless," +
                          "unnecessary,unstructured,unwilling,use,used," +
                          "useful,users,ushered,using,valuable,value," +
                          "value-added,viable,view,wait,wares,Warfighter," +
                          "warrant,wars,way,ways,weather,weave,Web," +
                          "Web-based,Web-page,whereas,whether," +
                          "widely-accepted,widely-used,widespread,wire," +
                          "world,www,XML,years,yens";
entry.item[16].page = "archives/0101/chandy/index.html";
entry.item[16].description = "Bridging the Web Services Divide";
entry.item[17].keywords = "&lNum2,@WebService,access,accessed,accessible," +
                          "achieve,activates,Add,Addition,additional," +
                          "address,ADO,advantage,alerts,allow,allowing," +
                          "allows,announcement,application,appli-cation," +
                          "applications,applic-ations,apply,appropriate," +
                          "appropriately,architect,arguments,article,asmx," +
                          "asmx/AddlNum1,asmxWSDL,asp,assemblies,assembly," +
                          "assumes,Attribute,attributes,authentication," +
                          "Author,autogenerated,automated,backend,Base," +
                          "Basic,best,Beta,bin,binding,Bio,book,both," +
                          "boundaries,box,bring,browser,browser-based," +
                          "build,building,built,business,caching," +
                          "Calculator,CalculatorClient,CalculatorProxy," +
                          "calendar,call,called,caller,calls,cannot,Cap," +
                          "case,cgey,change,choices,choose,CIL,Class," +
                          "classes,Clicking,client,clients,CLR,Code,codes," +
                          "collection,collections,com,com/net," +
                          "com/net/downloads,com/webservices," +
                          "com/webservices/calculator,command,communicate," +
                          "compile,compiled,compiler,compilers,compiling," +
                          "complete,component,component-based,components," +
                          "concepts,connectivity,consistent,consisting," +
                          "consists,console,consume,Consumer,consumers," +
                          "Consuming,contain,contained,containing,content," +
                          "Context,Copyright,Cortez,countries,create," +
                          "created,Creating,critical,csc,custom,data," +
                          "databases,declare,default,define,Defining," +
                          "degree,depends,deploy,deploying,derive,derives," +
                          "description,descriptions,design,details,develop," +
                          "developed,developers,developing,development," +
                          "de-velopment,device,difference,different,direct," +
                          "directive,directory,dirty,display,displayed," +
                          "distinguish,dive,Divide,Division,dll,document," +
                          "documentation,doesn,don,DoSomeWork,download," +
                          "dynamic,dynamically,easier,easily,easy,editor," +
                          "e-mail,enables,enabling,encoding,encourage," +
                          "ensure,environment,equivalent,Ernst,error," +
                          "essentially,evident,example,exe,execute," +
                          "existing,expose,exposes,extensibility,extension," +
                          "extensive,facilitates,fall,familiarity,features," +
                          "Figure,file,filename,first,flavors,fly,focus," +
                          "following,FooBar,form,Forms,forward,Framework," +
                          "fully,functionality,function-ality,functions," +
                          "garbage,Gemini,general,generate,generated," +
                          "generating,GET,GetMessage,give,goals,great," +
                          "greeting,ground,GUI,Hailstorm,handling,harness," +
                          "having,help,higher,highly,hosting,http,HttpGet," +
                          "HttpGetClient,HttpPost,HttpPostClientProtocol," +
                          "identification,IIS,illustrate,illustrated," +
                          "illustrates,immediately,implemented," +
                          "implementing,important,improve-ments,Inc," +
                          "include,includes,independent,info@sys-con," +
                          "information,infrastructure,input,Inspecting," +
                          "install,installed,instance,instant,instead," +
                          "interface,Intermediate,Internet," +
                          "interoperability,interoperating,interpreted," +
                          "invoke,invoked,invoking,Java,Java-based," +
                          "Jonathan,JScript,key,language,languages,lays," +
                          "lead,let,Library,line,link,list,Listing,lNum1," +
                          "lNum2,local,localhost," +
                          "localhost/WebServices/Calculator,logic,long," +
                          "look,love,low-level,machine,made,Main,maintain," +
                          "Make,makes,management,Manager,manipulate," +
                          "manipulation,manip-ulation,marks,mathematical," +
                          "matter,means,mechanism,Media,meet,memory," +
                          "messages,messaging,method,methods,MFC,Microsoft," +
                          "Microsystems,model,models,msdn,multi-language," +
                          "Multiplication,Multiply,MyAssembly," +
                          "mycompanyname,name,Namespace,native,need,needs," +
                          "NET,NETWeb,new,newer,non,Notepad,Now,number," +
                          "numbers,objects,obtained,oCalcProxy,offers," +
                          "often,omit,online,operating,operations,option," +
                          "Optional,optionally,org,original,overall," +
                          "overriding,Overview,own,Pages,parameter," +
                          "parameters,parsing,passed,passing,past,perform," +
                          "performance,performs,persistent,pertains," +
                          "pervasive,pieces,placed,placing,platform," +
                          "platforms,playing,point,pointing,possible,POST," +
                          "powerful,product,productive,program," +
                          "programmatic,programming,programs,project," +
                          "projects,property,protocol,protocols,provide," +
                          "provides,prov-ides,proxies,proxy,public," +
                          "Publications,publicly,publish,quotient,rather," +
                          "recommend,refer,reference,references,reflection," +
                          "registered,regular,release,remote,represented," +
                          "representing,request,required,Reserved,reside," +
                          "resides,residing,respectively,response,result," +
                          "resulting,results,return,Returns,reusability," +
                          "rich,richest,Rights,run,running,runtime,safety," +
                          "sample,samples,scenarios,screen,SDK,searches," +
                          "sections,security,self-contained,separate," +
                          "server,service,services,Session,ships,should," +
                          "show,shown,shows,significant,simplifies," +
                          "Simplify,Sitting,SOAP,SoapHttpClientProtocol," +
                          "software,Source,specifications,specified," +
                          "specifies,specify,specifying,SQL,standard," +
                          "standards,standards-based,start,state,States," +
                          "static,steps,still,storage,stored,strategic," +
                          "string,strongly,structs,Studio,substitute," +
                          "Subtract,Subtraction,sum,Summary,Sun,support," +
                          "supported,supports,SYS-CON,system,systems,tag," +
                          "take,talk,technical,technology,tells,tempuri," +
                          "test,text,think,threading,three,time,took,Tool," +
                          "tools,top,tour,trademarks,transcend," +
                          "transformations,tried,try,turn,two,type,types," +
                          "under,understand,Unify,United,unless,up-to-date," +
                          "URL,use,used,user-centric,uses,using,utility," +
                          "Utilize,value,values,verifies,version,via," +
                          "Virtual,vision,visit,Visual,void,way,Web," +
                          "WebMethod,WebMethodAttribute,WebService," +
                          "WebServiceAttribute,WebServiceBindingAttribute," +
                          "WebServices,WebServices/Calculator,Win,window," +
                          "Windows,won,work,workings,worrying,write," +
                          "WriteLine,writing,written,wrote,Wsdl,www,XML," +
                          "XML-encoded,yield";
entry.item[17].page = "archives/0101/cortez/index.html";
entry.item[17].description = "Building Web Services Using Microsoft.net";
entry.item[18].keywords = "@param,@return,@throws,accept,access,addition," +
                          "address,aggregation,allow,allows,Apache," +
                          "application,applications,approach,appropriate," +
                          "architect,Archit-ecture,architectures,args," +
                          "argument,arrays,arriving,article,assembling," +
                          "associated,Author,automatically,base64Binary," +
                          "BEA,believes,best,binary,bind,binding,binds,Bio," +
                          "biological,blocks,books,brain,Browser,BSc,build," +
                          "building,built,built-in,businesses,buzzword," +
                          "Byte,caches,call,called,case,cast,chief,Class," +
                          "classes,click,client,clients,client-side,close," +
                          "Code,collaborating,com,com/products/glue/glue," +
                          "command,commercial,communication,company," +
                          "complete,completed,computer,computers,computing," +
                          "configuration,console,contains,conversion," +
                          "convert,converted,Copyright,countries,country," +
                          "country1,country2,coupling,creating,creation," +
                          "currencies,currency,curve,custom,Dallas,data," +
                          "default,defines,delayed,delving,deploying," +
                          "described,describes,Description,Des-cription," +
                          "desired,details,developers,different,Discovery," +
                          "discussed,distributed,dollars,double," +
                          "doubleValue,down,dramatically,dream,dynamically," +
                          "dynamically-assembled,earned,ease,easy," +
                          "effectively,efficient,Electric,electronically," +
                          "E-mail,enables,encoding,encourages,end,endpoint," +
                          "ends,engine,enter,entire,Epilogue,equivalent," +
                          "equivalents,evolution,examines,example,examples," +
                          "Exception,exchange,ExchangeClient," +
                          "ExchangeException,ExchangeServer,excitement," +
                          "exciting,execute,exists,exit,experimenting," +
                          "exposed,extracted,fast,favorite,feel,few," +
                          "fiction,Figure,file,first,float,fluid,following," +
                          "founder,free,friend,fun,generate,generated," +
                          "generates,generation,get,getQuote,getRate,gets," +
                          "getting,getValue,gives,Glass,GLUE,Graham," +
                          "graham@themindelectric,great,groups,guide,halt," +
                          "happen,Hashtable,helper,helping,here,home,hope," +
                          "host,hosted,hosting,hosts,html,HTTP,human,IBM," +
                          "IExchange,implement,implementation," +
                          "Implementations,implem-entations,implements," +
                          "import,important,importelectric,Inc,include," +
                          "includes,including,incoming,independent," +
                          "info@sys-con,information,infrastructure," +
                          "initialize,in-process,insight,instance," +
                          "Integration,interact,interested,interface," +
                          "Internet,intuitive,invoke,invoked,invoking," +
                          "Issue,IStockQuote,item,japan,jar,Java," +
                          "Java-based,JMS,key,kind,Language,last,layer," +
                          "learning,left,let,line,link,list,Listing," +
                          "Listing2,Listing3,Listing4,local,localhost," +
                          "located,location,long,looks,Made,main,make," +
                          "Managing,mapped,mapping,marks,matches," +
                          "matchmaker,Mathematics,Media,messages,method," +
                          "methods,Microsystems,Mind,mirror,MQseries,much," +
                          "name,need,net,net/soap/urn,network,neutral,new," +
                          "next,normally,Note,Now,null,Object,objects," +
                          "obtained,obtaining,operation,option,orchestrate," +
                          "Oriented,output,overview,own,owner,package,page," +
                          "passion,path,people,performance,place,platform," +
                          "platforms,port,portable,println,problems," +
                          "processor,program,programs,Protocol,provide," +
                          "provided,provides,proxy,public,Publications," +
                          "publish,published,publishes,publishing,put," +
                          "queried,quickest,quickly,quote,QuoteClient," +
                          "quotes,rate,rates,reached,recognized,reduce," +
                          "reduces,registered,Registry,RegistryException," +
                          "regular,remote,replace,represented,request," +
                          "requestor,requests,Reserved,resides,Resources," +
                          "resume,Return,returned,returns,review,Rights," +
                          "run,running,science,scope,scratched,screenshot," +
                          "second,section,sees,sent,serializers,server," +
                          "servers,Service,services,servlet,setting,setup," +
                          "setValue,should,shown,shows,Shut,shutdown," +
                          "simple,simplifies,simply,single-dimensional," +
                          "sites,smart,SMTP,SOAP,soap/exchange,software," +
                          "Source,Southampton,specific,specified,Stack," +
                          "standalone,standard,standards,Start,started," +
                          "starting,starts,startup,States,static," +
                          "statically-typed,step,stock,StockQuote,stores," +
                          "straightforward,String,Sun,support,supportive," +
                          "surface,symbol,SYS-CON,System,systems,Table," +
                          "take,taste,team,technologies,technology," +
                          "techn-ology,teeming,Texas,themindelectric,thing," +
                          "think,third-party,threads,three,throw,throws," +
                          "thus,time,Tomcat,trademarks,transport,two,type," +
                          "types,UDDI,Unfortunately,United,Universal," +
                          "University,unpublish,URL,usa,usa/japan,use,used," +
                          "uses,using,util,utility,value,values,via," +
                          "viewing,visit,void,Vol,way,Web,WebLogic,window," +
                          "wire,work,world,write,WSDL,wsdl2java,WSJ,www," +
                          "XMethods,xmethods-delayed-quotes,XML,XML-based," +
                          "XSD";
entry.item[18].page = "archives/0101/glass/index.html";
entry.item[18].description = "Web Services Made Easy";
entry.item[19].keywords = "abstraction,access,ACID,activities,add," +
                          "advantage,advertise,algorithm,allows,Analysis," +
                          "anathema,answer,approach,approaches,areas," +
                          "article,assignments,associated,assumption," +
                          "attraction,authentication,Author,basic,behavior," +
                          "behaviorally,behind,best,Bio,bootstrap,both," +
                          "breaking,called,catastrophic,central," +
                          "Centralization,centralized,changes," +
                          "characterization,cheaper,choice,Choosing," +
                          "classic,client,client/server,clients,clustering," +
                          "code,com,communicate,communication," +
                          "communications,comparison,compiler,composed," +
                          "concept,constrained,construct,construction," +
                          "consultant,contact,contract,contribute,control," +
                          "Copyright,CORBA,core,cost,costly,countries," +
                          "coupled,customer,customers,data,database," +
                          "datastore,deal,decision,defined,defining," +
                          "definite,deliver,deploy,deployable,deployment," +
                          "described,details,developer,developers," +
                          "developing,different,Difficult,discover," +
                          "discovery,distributed,distribution,dynamic,easy," +
                          "element,elements,E-mail,enables,endpoint," +
                          "enforce,enforced,enforces,enforcing,engineer," +
                          "ensure,Enterprise,equal,essential,established," +
                          "exposure,extend,fact,factors,facts,Failing," +
                          "failure,features,field,fielded,first,fixed,flow," +
                          "fluctuating,format,framework,fulfill,fulfilling," +
                          "fulfills,full,fully,functional,fundamental,HTTP," +
                          "Hurley,implement,implementation,Inc,independent," +
                          "inexpensive,info@sys-con,information,informed," +
                          "infrastructure,initial,instance,Integrity," +
                          "intelligibly,intended,interaction,interface," +
                          "interoperate,involved,IONA,issues,J2EE,Java," +
                          "Java-based,JCP,joined,key,lag,language,large," +
                          "levels,little,load,load-balancing,local," +
                          "location,logical,look,loss,machines,made,make," +
                          "makes,marks,matching,matter,means,mechanism," +
                          "Media,messages,Microsystems,model,move,neighbor," +
                          "neighboring,network,networks,node/network,nodes," +
                          "number,objects,ohurley@iona,Oisin,OMG,operating," +
                          "operation,organizations,out-of-date,P2P," +
                          "paradigm,participant,peer,Peers,peer-to-peer," +
                          "pieces,point,processing,profile,programmed," +
                          "properties,provide,provides,public,Publications," +
                          "publish,publishes,purpose,question,questions," +
                          "range,reason,reforming,register,registered," +
                          "relationship,relationships,replicated," +
                          "replicates,represents,required,requirement," +
                          "requirements,requires,research,Reserved," +
                          "resource,resources,Rights,role,roles,Scaling," +
                          "scenes,Security,separate,server,servers,service," +
                          "services,service-style,servlets,should," +
                          "similarly,simplifies,simplifying,single,skill," +
                          "software,solution,solutions,speak,stability," +
                          "stall,standardization,standards,standby,States," +
                          "straightforward,strategies,suits,Summary,Sun," +
                          "support,swamp,syntax,SYS-CON,system,systems," +
                          "technologies,technology,tends,thing,think,title," +
                          "topology,trademarks,transient,tricky,trust,two," +
                          "UDDI,under,unit,United,unless,Unlike,URL,usage," +
                          "use,used,using,versus,vital,W3C,way,Web," +
                          "well-known,work,worked,world,WSDL,XML";
entry.item[19].page = "archives/0101/hurley/index.html";
entry.item[19].description = "Web Services or Peer-to-Peer";
entry.item[20].keywords = "accelerate,accepted,addition,addresses,advanced," +
                          "allow,APIs,application,applications,apps," +
                          "architects,architecture,asked,assemble," +
                          "assembling,Assembly,audiences,basic,battle,BEA," +
                          "believe,Benfield,best,beta,both,branches,bring," +
                          "build,building,built,business,care,caught,check," +
                          "chief,choice,CICS,class,client,code,code-we," +
                          "coding,com,companies,complex,components," +
                          "Composer,content,Copyright,core,countries," +
                          "create,CTO,date,deploy,deployed,deploying," +
                          "describe,develop,developer,developers," +
                          "development,device,Director,don,download,Early," +
                          "easier,easy,easy-to-use,e-business,EDI,eighty," +
                          "EJBs,elegant,E-mail,enabling,engine,enterprise," +
                          "enterprise-class,environment,example,existing," +
                          "exists,experiment,eXtend,faster,Finally,first," +
                          "framework,full,functional,functionality,get," +
                          "getting,got,great,GUI,GUIs,hard-coding,help," +
                          "helped,here,http,IBM,IDE,implement,important," +
                          "Inc,includes,independent,info@sys-con," +
                          "integrated,intuitive,involves,J2EE,Java," +
                          "Java-based,Journal,JSP,knew,last,Late,led," +
                          "legacy,less,libraries,look,low-level,major,make," +
                          "makes,making,manage,management,marks,mechanics," +
                          "Media,Microsoft,Microsystems,need,needed,needs," +
                          "NET,new,now,October,officer,orchestrate," +
                          "organizations,ourselves,own,package,part,people," +
                          "percent,personalization,perspective,pieces," +
                          "point,portal,portals,possibility,process," +
                          "processes,product,production,products,profiling," +
                          "programmability,provide,Publications,published," +
                          "quick,quickly,real,real-world,registered," +
                          "Release,Reserved,Rights,role,rules,run,runs," +
                          "security,Series,Server,servers,Services," +
                          "services-they,servlets,sessions,sets,should," +
                          "SilverStream,Software,sounds,SQL,States,step," +
                          "Steve,streams,stuff,stuff-creating,Sun," +
                          "syndication,SYS-CON,systems,tag,taught," +
                          "technology,technology-just,Telnet,tested,things," +
                          "think,thousands,three,tie,time,tools,top," +
                          "trademarks,transcoding,transformations,two," +
                          "unifies,United,updating,use,user,uses,using," +
                          "view,vision-simplify,visually,way,ways,Web," +
                          "WebLogic,WebSphere,won,word,work,Workbench," +
                          "workflow,worlds-automation,WSFL-compliant,WSJ," +
                          "XML,XML-enable,year,years";
entry.item[20].page = "archives/0101/interview/index.html";
entry.item[20].description = "Silverstream eXtend?: Talking with a Web " +
                             "Leader";
entry.item[21].keywords = "$500,acceptance,accessory,ACID,actions,actors," +
                          "addition,Additionally,address,adopt,adopted," +
                          "advisor,agent,align,aligned,allowed,allowing," +
                          "allows,analogous,and/or,API,APIs,application," +
                          "AppliedTheory,apply,approach,approaches," +
                          "appropriate,approval,Architects,Architecture," +
                          "aren,arrangements,article,ask,associated,assume," +
                          "atom,Atomic,atoms,attachments,author,autonomy," +
                          "availability,back,based,basic,Basics,BEA,begins," +
                          "behave,behaves,behavior,behind,best,big-picture," +
                          "Bio,Blocks,bodies,book,boundaries,Bowstreet,BTP," +
                          "BTP-supported,built,business,Businesses,cancel," +
                          "canceling,cancelled,capable,car,cars,causes," +
                          "central,choices,Choreology,circumstances," +
                          "coauthor,Code,cohesion,cohesions,cohesive," +
                          "columnist,com,command,commands,commit,commits," +
                          "committee,committees,communicated,communication," +
                          "Community,compen-sation-based,competitor," +
                          "complete,completed,component,comwww,conditions," +
                          "confirm,confirming,considered,Consistent," +
                          "contact,contain,contained,context,contract," +
                          "control,conversation,coordinate,coordinated," +
                          "coordination,Coordinator," +
                          "Coordinator/Participant,Copyright,corporate," +
                          "countereffect,Counterparties,Counterparty," +
                          "countries,create,created,creating,critical,data," +
                          "DCOM,decide,decision-making,decisions,define," +
                          "defined,defines,definition,delivering,demands," +
                          "demarcation,demo,demonstrates,demonstration," +
                          "departmental,dependent,designated,designed," +
                          "detailing,determine,developer,developers," +
                          "dictate,dictated,dictating,different," +
                          "discontinuous,disparate,ditto,doesn,dotted," +
                          "downloaded,draft,drawn,driving,Durable,easily," +
                          "ebXML,editors,effect,E-mail,end,engagement," +
                          "engines,enlisted,enroll,enrolled,ensure," +
                          "Enterprise,entire,entities,Entrust,environment," +
                          "environ-ment,essentially,Evangelist,example," +
                          "exception,exchange,executes,executing,existing," +
                          "expecting,exposed,extends,extensions,facilitate," +
                          "fails,fall,favor,Figure,final,find,first," +
                          "flagging,flexibility,follow,follows,forming," +
                          "four,full,fully,future,geographically-dispersed," +
                          "Get,getting,given,handles,handling,hasn,here," +
                          "higher,http,identifier,ident-ifiers,impact," +
                          "important,inability,Inc,incorporated," +
                          "independent,individual,info@sys-con,inform," +
                          "information,inform-ation,informs,infrastructure," +
                          "infra-structure,infrastructures,initiates," +
                          "initiator,Initiator/Service,input,instructs," +
                          "integration,intention,intentions,internal," +
                          "interoperability,interoperable,Interwoven," +
                          "intra-enterprise,invocation,invocations,invoke," +
                          "invokes,invoking,involved,IPNet,isn,Isolated," +
                          "Issue,issued,J2EE,Java,Java-based,JavaBeans," +
                          "Jewell,kind,know,last,latest,least,left,less," +
                          "Let,letting,levels,lifetime,light,likely,liken," +
                          "likeness,limitations,limiting,line,link,listed," +
                          "Listing,local,lock,logic,long,longer," +
                          "long-running,look,looking,loosely-coupled," +
                          "lowest,made,make,makes,management,manage-ment," +
                          "manager,managers,manipulated,manufacturer,marks," +
                          "Mastering,mechanism,Media,members,message," +
                          "messages,met,Microsoft,Microsystems," +
                          "milliseconds,mimic,much-needed,multiple," +
                          "mult-iple,naturally,nature,near,near-release," +
                          "necessarily,necessary,need,needed,needs," +
                          "negotiates,negotiation,negot-iations,new,node," +
                          "nodes,Note,number,OASIS,oasis-open,occur,occurs," +
                          "offer,onjava,operate,operation,operations,opt," +
                          "order,orders,org," +
                          "org/committees/business-transactions," +
                          "organization,outcome,override,oversee,oversight," +
                          "own,painting,part,participant," +
                          "participant-defined,participants,participate," +
                          "participates,participating,participation," +
                          "partner,partners,Party,passed,per,perform," +
                          "permanent,perspective,phase,place,platform," +
                          "popular,possible,prepare,Principal,privileges," +
                          "procedures,process,processes,processing,produce," +
                          "Professional,program,Programming,progresses," +
                          "project,projects,properties,Protocol,protocols," +
                          "provide,provided,provides,providing," +
                          "Publications,publisher,publishers,purchase," +
                          "purely,purposes,quote,quotes,rapidly,Rather," +
                          "real,recommendations,reducing,reduction," +
                          "registered,regular,rejection,relationships," +
                          "relay,relayed,reliability,remote,required," +
                          "requirements,requires,Reserved,resign,resource," +
                          "resources,responds,response,responsible,results," +
                          "returns,reversals,Rights,RMI,Roles,roll," +
                          "rollback,rollbacks,rolls,routing,royalties," +
                          "rules,run,sample,scalability,scenario,scenes," +
                          "scope,security,semantics,sends,senior,sent," +
                          "Server,service,services,should,shown,shows," +
                          "simple,simplest,single,site,snippet,SOAP," +
                          "software,Source,spans,Specification,stack," +
                          "standard,standards,state,States,status,still," +
                          "structured,subcontract,subcontractor,succeeding," +
                          "succeeds,suit,Summary,Sun,supplier,supplier1," +
                          "supplier2,supplier3,supplies,support,SYS-CON," +
                          "system,systems,take,Talking,TCP/IP,technical," +
                          "technologies,technology,technoology,termination," +
                          "terms,theserverside,time,timeout,timeouts,tire," +
                          "tires,top-down,tracks,trademarks,trading," +
                          "traditional,transaction,trans-action," +
                          "transactions,transparently,TRP,two,two-phase," +
                          "Tyler,TYLER@BEA,type,types,under,understand," +
                          "Understanding,undone,unit,United,unsolicited," +
                          "upcoming,use,used,uses,using,variety,vendors," +
                          "via,view,visit,void,Vol,vote,voting," +
                          "voting/enrollment,way,Web,WebLogic,whether,wins," +
                          "wire,work,workflow,world,writes,WSJ,www," +
                          "XA-compliant,XML,XML-based,year,years";
entry.item[21].page = "archives/0101/jewell/index.html";
entry.item[21].description = "The Business Transaction Protocol";
entry.item[22].keywords = "ability,abstract,abstractions,abstractly," +
                          "accepts,access,accessed,accessible,accommodate," +
                          "achieve,action,activities,added,addition," +
                          "additional,address,addresses,advantage," +
                          "advertised,Advertisement,allow,allowing,allows," +
                          "analogous,analyst,analysts,and/or,announced,API," +
                          "application,applications,applied,appropriate," +
                          "Architect,Architecture,architecture-neutral," +
                          "architectures,argument,Ariba,array,article,ask," +
                          "asking,aspects,assess,assessment,associating," +
                          "asynchronously,at-most-once,atomic,attention," +
                          "attribute,Author,automatically,availability," +
                          "avoid,B2B,B2Bi,balancing,base,based,basic," +
                          "Basically,basis,bearing,behavior,behind,benefit," +
                          "best,Best-effort,bind,Binding,bindings," +
                          "bindingTemplate,Bios,black-box," +
                          "blublinsky@hotmail,Boris,both,bound,boundaries," +
                          "bridge,broad,Broker,broker-hosted,brokers," +
                          "browse,build,building,business,businessEntity," +
                          "businesses,businessService,byte,call,callback," +
                          "called,calling,calls,capabilities,case,cases," +
                          "categorization,categorizations,categorized," +
                          "category,Central,centralized,certified,changes," +
                          "characteristics,Chicago,class,classical," +
                          "Classically,client,client-proxy,clients," +
                          "client-side,cloud,COBOL,code,collection," +
                          "collections,collector,College,com,combinations," +
                          "combine,combined,commit,communicate," +
                          "communication,company,compare,comparing," +
                          "comparison,compatibility,compiled,complex," +
                          "component,component-based,components,computing," +
                          "conceptual,Conceptually,concrete,Concurrency," +
                          "conditions,conjunction,connect,consequences," +
                          "considerable,considered,consists,constructing," +
                          "constructs,consume,Consumers,contact,contain," +
                          "contained,container,containing,contains," +
                          "convention,conversion,converted,Copyright,CORBA," +
                          "core,Corporation,correspond,corresponding," +
                          "Corresponds,countries,courses,covered,create," +
                          "created,creates,data,databases,DCOM,deal," +
                          "deferred-synchronous,define,defined,defines," +
                          "defining,Definition,definitions,degrees," +
                          "delegate,delivered,delivers,deployed,deployment," +
                          "describe,described,describes,describing," +
                          "Description,descriptions,descrip-tions," +
                          "descriptive,detail,details,developed," +
                          "development,dhs,differences,different,Director," +
                          "discover,discovered,discovering,Discovery," +
                          "discuss,discussed,disposed,distributed,divided," +
                          "divisible,document,document-oriented,documents," +
                          "Dynamic,dynamically,EAI,earlier,easily,effect," +
                          "effectively,effort,element,elements,E-mail," +
                          "embraces,emphasized,employ,Employing,employment," +
                          "enable,encapsulated,encoded,endpoint,end-point," +
                          "endpoints,engagements,Engineer,engineering," +
                          "engines,ensure,ensured,entails,enterprise," +
                          "entity,environment,environments,essential,etc," +
                          "event,event-based,exactly-once,examines," +
                          "Examples,exchanged,execution,exist,existing," +
                          "exists,experience,expose,exposed,Extensible," +
                          "fabrication,face,facts,failures,Farrell," +
                          "features,Figure,file,Finally,find,fingerprint," +
                          "finished,firm,first,followed,following,form," +
                          "format,formats,Forrester,found,foundation," +
                          "foundational,four,framework,freely,functional," +
                          "functionality,fundamental,further,Furthermore," +
                          "future,gap,Garbage,general,generates,geographic," +
                          "GET/POST,given,great,green,group,grows,handful," +
                          "handled,hardware,heterogeneous,high-level," +
                          "hosted,HTTP,huge,Hypertext,IBM,idea,identifiers," +
                          "identify,IDL,IIOP,immediately,implementation," +
                          "implementations,implemented,implements,implies," +
                          "important,impossible,Inc,include,includes," +
                          "including,incoming,increasingly,independent," +
                          "in-depth,indicated,individually,industrial," +
                          "industry,infancy,info@sys-con,information," +
                          "infrastructure,inherent,inherently,input," +
                          "input/output,Inquiry,inside,instance,Instead," +
                          "Integrating,Integration,Intel,inter,interact," +
                          "interaction,interested,interface,interfaces," +
                          "internal,Internet,interoperable,intranet," +
                          "introduced,introducing,Inventa,Invocation," +
                          "invocations,invoked,invoker,involved,Iowa,issue," +
                          "issues,Java,Java-based,key,kind,know,knowing," +
                          "knowledge,known,Language,languages,large-scale," +
                          "layers,leader,Let,letting,level,lies,list,live," +
                          "lives,load,local,locate,located,locating," +
                          "logical,logically,long,longer,look,lower," +
                          "Lublinsky,made,major,make,makes,making,manage," +
                          "manager,manipulation,manner,mapping,maps,market," +
                          "marks,Markup,Marshalling," +
                          "marshalling/unmarshalling,means,mechanisms," +
                          "Media,mentioned,message,messages,metadata," +
                          "Method,methods,mfarrell@iowa,Michael,Microsoft," +
                          "Microsystems,MIME,Model,modeled,model-specific," +
                          "modules,moving,multiple,multithreading,name," +
                          "named,names,naming,Naturally,necessary,need," +
                          "needed,needs,network,network-based,new,newly," +
                          "next,nodes,notification,number,Object,objects," +
                          "obstacle,occur,offer,Often,one-way,opaque," +
                          "operating,Operation,operations,optional,options," +
                          "order,ordinary,org,output,overall,overcome," +
                          "oversees,pages,parameters,part,partner,partners," +
                          "parts,passing,perform,performed,perhaps,person," +
                          "physically,piece,platform,platforms,Platinum," +
                          "point,pointers,popular,port,ports,possess," +
                          "potential,practically,practice,presented," +
                          "principle,prior,procedure-oriented,process," +
                          "processes,product,program,programmatic," +
                          "Programmer,Programmers,programming,programs," +
                          "projects,properties,Protocol," +
                          "protocol-independent,protocol-neutral,protocols," +
                          "provide,provided,providers,provides,Providing," +
                          "proxies,proxy,Publications,publish,published," +
                          "Publishers,publishing,purchase,purchasing,quite," +
                          "race,Reactive,readiness,real,reason,receive," +
                          "received,receives,recognize,recompilation," +
                          "Reference,references,referencing,referred," +
                          "regardless,region,Regional,register,registered," +
                          "registering,registers,Registration,registry," +
                          "regular,related,relevant,Remote,remotely," +
                          "replicate,repositories,represent,representation," +
                          "representative,Represents,Request,requested," +
                          "requesters,requests,require,required,requires," +
                          "research,Reserved,reside,resides,resolving," +
                          "resources,respect,response,responses,result," +
                          "results,returned,returning,returns,reuse,reused," +
                          "rich,right,Rights,RMI,robust,root,round,routing," +
                          "rule,run,running,safe,said,say,schema,search," +
                          "searches,second,section,sections,security," +
                          "segmented,semantics,semiconductor,send,sending," +
                          "Senior,sent,separated,separately,sequence," +
                          "serialization,series,server,server-side,serves," +
                          "service,services,sets,Several,shared,shipping," +
                          "should,shows,Similarly,Simon,simple,simply," +
                          "simultaneously,single,site,small,SOAP," +
                          "SOAP-based,software,solicit/response,sort,space," +
                          "span,special,specific,specification," +
                          "specifi-cation,specifications,specified," +
                          "specifies,specify,specifyingimplementation,SSA," +
                          "stack,standard,standards,starting,state,States," +
                          "Static,statically,still,stream,strictly," +
                          "structure,structures,style,subject," +
                          "substructures,Sun,supply,support,supported," +
                          "supporting,supports,synchronization,synchronous," +
                          "SYS-CON,system,systems,take,taking,target," +
                          "targeted,task,tasks,taxonomies,technical," +
                          "technologies,technology,Temp-lates,termed,terms," +
                          "third,threads,three,Thus,time,tool,tools," +
                          "top-level,trademarks,trading,trainer," +
                          "Transactions,Transfer,transform,transmit," +
                          "transmitting,tricky,trip,two,two-part,two-phase," +
                          "Type,types,ubiquitous,UDDI,unit,United," +
                          "Universal,University,unless,Unlike,unpublished," +
                          "upper,URL,URL-based,use,used,useful,users,uses," +
                          "using,utility,value,values,vendors,via,view," +
                          "void,wait,way,Web,white,widespread,working," +
                          "worrying,wrapper-like,WSDL,XML,XML-based,Yates," +
                          "years,yellow,zero";
entry.item[22].page = "archives/0101/lublinsky/index.html";
entry.item[22].description = "Web Services and Distributed Component " +
                             "Platforms, Part 1";
entry.item[23].keywords = "abuse,acronyms,add,adoption,Advancement," +
                          "advancing,age,ain,air,algorithms,alive," +
                          "alongside,amount,amusing,angle,announce,appears," +
                          "applications,apply,approach,archaic,argue," +
                          "argued,articles,associated,attack,attention," +
                          "Author,back,beast,bees,begin,believe,beloved," +
                          "beneficial,benefit,big,biggest,Bio,board,book," +
                          "both,bother,boys,brackets,bring,broken,build," +
                          "business,businessperson,bystander,casualties," +
                          "catching,celebrities,cents,CEO,certain," +
                          "certainly,chair,change,changing,channel,chasm," +
                          "checkbooks,chief,clearly,clears,codes,cold," +
                          "collectively,com,combined,comic,communities," +
                          "community,companies,compete,competing," +
                          "components,computing,conduct,conference," +
                          "conferences,Copyright,corporate,countries,cow," +
                          "craze,customers,cycle,dare,DataChannel," +
                          "data-format,day,days,dead,decades,defend,degree," +
                          "degrees,deployed,deployment,describe,developed," +
                          "developer,devoted,dictate,different,directors," +
                          "disciplines,disillusionment,dispel,distributed," +
                          "doesn,don,dose,dot-com,doubt,down,dynamic,early," +
                          "easily,e-business,ebXML,EDI,editor,efforts," +
                          "electronic,E-mail,emergence,enabling,end," +
                          "endorse,energy,engage,engaged,enormous,ensuing," +
                          "enter,entered,enterprises,enters,entertaining," +
                          "enthusiastic,established,evangelists,events," +
                          "evil,evolution,example,examples,exciting," +
                          "executive,executives,existing,exists,expect," +
                          "expectations,experience,expertise,experts," +
                          "eXtensible,faithful,far,fear,few,Finally," +
                          "financing,find,first,fix,focus,folks,followed," +
                          "followers,food,forget,formats,formatting,forth," +
                          "found,four,future,game,gesagte,get,gets,give," +
                          "global,glorified,glory,going,gone,good,gotten," +
                          "grassroots,great,Groundhog,group,growing,hand," +
                          "handful,happen,happens,having,healthy,hearts," +
                          "Heaven,heck,here,heuristic,higher,history," +
                          "Hordes,HTML,hug,hype,Hysteria,idea,identified," +
                          "immediately,impact,implementation,Inc,including," +
                          "independent,Industry,inevitably,info@sys-con," +
                          "information,initialisms,initiative,initiatives," +
                          "innocence,integration,Interesting,international," +
                          "Internet,investment,Java,Java-based,Journal," +
                          "kept,Killed,kind,knitting,laenger,Language," +
                          "large,larger,last,laughing,learned,leben," +
                          "lessons,Let,lets,letters,level,life,lift,light," +
                          "limited,line,lines,literally,live,lives,long," +
                          "longer,look,looks,loosely,lose,made,mainstream," +
                          "make,makes,Marketing,marketplace,marks,Markup," +
                          "Mass,master,masters,means,Media,medium,meeting," +
                          "Meets,megabytes,metaphorically,Microsystems," +
                          "Mikula,missing,mode,models,moment,Money,months," +
                          "moved,myth,national,need,negative,negotiation," +
                          "new,next,Norbert,Norbert@DataChannel,now," +
                          "numerous,NXP,OASIS,object-oriented,old," +
                          "opportunity,Organization,organizers,outside," +
                          "packages,painfully,panel,panels,papers,parsed," +
                          "parser,parsing,participant,participants,past," +
                          "people,perhaps,picture,piece,place,point," +
                          "pointed,Pointy,poor,popular,portfolio," +
                          "portfolios,potentially,powerful,present,price," +
                          "problems,proceedings,processed,production," +
                          "programmers,programming,promises,promoted," +
                          "pronounced,public,Publications,publishing,pure," +
                          "put,puzzle,question,real,realities,reality," +
                          "realize,realized,reason,recall,reflections," +
                          "refocus,regarding,registered,registries,remind," +
                          "reminded,replace,Reserved,reusability,rhetoric," +
                          "Rights,rise,Road,ROI,Roll,room,round,RPC,Rubber," +
                          "rules,sacred,said,saw,scale,second,secure," +
                          "seeing,seems,seen,selected,selecting,sells," +
                          "sense,serves,Services,sexy,SGML,share,showed," +
                          "Sign,skepticism,sleeves,small,smaller,soberness," +
                          "solutions,solve,some-times,soon,sortware," +
                          "speaker,stakes,standard,standards," +
                          "standards-based,standing,start,started," +
                          "statements,States,still,stock,strategist," +
                          "strategy,Structured,subsided,Sun,suppliers," +
                          "support,SYS-CON,table,tag,take,taking,talking," +
                          "TCO,Technocrats,technologies,technologists," +
                          "technology,tell,telling,temporarily,textbooks," +
                          "themes,thing,things,three,time,times,top-level," +
                          "Tot,trade,trademarks,translated,trenches,trick," +
                          "true,tug-of-war,two,understand,unfair,unfold," +
                          "United,unreasonable,use,using,validating," +
                          "variety,vendors,via,vice,vision,visionaries," +
                          "visionary,visions,wait,Washington-based,wasn," +
                          "way,ways,Web,Web-based,well-formed,whether," +
                          "white,widely,wildly,winning,wisdom,wish,work," +
                          "worker,worker-bees,works,world,write,XHTML,XML," +
                          "XML-related,year,years,yesteryear";
entry.item[23].page = "archives/0101/mikula/index.html";
entry.item[23].description = "Groundhog Day";
entry.item[24].keywords = "$990,ability,Access,activity,adapters,add," +
                          "adding,addition,Additional,address,admin/admin," +
                          "administering,administration,allow," +
                          "announcements,appeared,application,architecture," +
                          "area,arrives,asked,assess,assistance,Assume," +
                          "Athlon,audit,Author,automatically,based,Basic," +
                          "BAT,bean,beauty,beginners,behind,billing," +
                          "binding,bindings,Bio,breed,bring,browser," +
                          "browser-based,Browsing,bubble,burst,Business," +
                          "call,calls,cannot,capabilities,care,case,caught," +
                          "center,change,changes,checking,CICS,CLASSES11," +
                          "CLASSPATH,client,client-side,clue,COBOL,code," +
                          "com,com/licenses/license,combination,command," +
                          "company,compile,compiled,complex,complexities," +
                          "component,components,comprise,Conclusion," +
                          "conditions,configuration,configure,configured," +
                          "configuring,consultant,contain,containing," +
                          "contains,Contributors,conveniently,conversion," +
                          "copy,Copyright,corporate,corresponding," +
                          "countries,create,created,creating,data,Database," +
                          "day,decided,dedicated,default,define,defined," +
                          "definition,definitions,demo,Depending,deploy," +
                          "Deploying,description,design,designer,designing," +
                          "detach,develop,developer,developers,Developing," +
                          "development,didn,different,difficulties," +
                          "directory,dispatching,Documentation,doesn," +
                          "downloading,downturn,dozen,drive,driven,driver," +
                          "easy-to-guess,e-business,edit,Edition,editions," +
                          "EJB,element,elements,e-mail,e-mails,Enterprise," +
                          "entirely,environment,especially,etc,evaluation," +
                          "evolving,exception,exceptions,existing,exists," +
                          "expertise,facility,fact,faint,familiarity," +
                          "Features,Feeling,Figure,file,files,fill," +
                          "financial,firewall,First,flood,form,formatted," +
                          "forward,found,Francisco,frantic,free,fronts," +
                          "full-featured,fully,functional,functioning," +
                          "functions,further,Future,generate,generated," +
                          "generates,generating,generation,get,Getting,GHz," +
                          "glitches,going,good,got,graphical,groups,guide," +
                          "guides,hacking,handled,handles,handling," +
                          "happening,hard,headers,heart,help,helpful,helps," +
                          "hitting,HTTP,HTTP-based,HTTPS,hunt,IDE-like," +
                          "identifying,imagine,immediately,implementation," +
                          "implementing,important,improvements,Inc,include," +
                          "included,including,independent,industry,infancy," +
                          "info@shinkatech,info@sys-con,information," +
                          "initial,innovation,input,install,Installation," +
                          "installations,installed,instead,instructions," +
                          "integration,interested,interface,interfaces," +
                          "Internet,involved,ISCONFIG,issues,JAR,Java," +
                          "JAVA_HOME,Java-based,JavaBean,JDBC,JDK," +
                          "jmitchko@rcn,Joe,JVM,key,language,later,latter," +
                          "leaves,Let,levels,lib,libraries,library,license," +
                          "licenses,links,list,lists,location,logged," +
                          "logging,logs,long,look,looking,Lotus,machine," +
                          "made,mail,mailing,mainframe,mainstream,major," +
                          "make,making,management,manually,market," +
                          "marketplace,marks,marshalling,Media,memory,menu," +
                          "message,messages,methods,Microsystems,migrate," +
                          "missing,Mitchko,modify,monitor,monitoring," +
                          "multi-threading,name,names,native,necessary," +
                          "need,needed,needs,never,new,Next,non-secure," +
                          "Notes,noticed,Nowhere,Object,Obtaining," +
                          "occasional,one-month,online,open-source,Oracle," +
                          "order,output,Overview,overwhelmed,package,pair," +
                          "parameter,parameters,password,patiently,PDF," +
                          "phtml,place,platform,Plaza,point,preinstalled," +
                          "Price,print,prior,product,production,profiling," +
                          "Programming,programs,project,properly,Protocol," +
                          "prototype,provide,provides,Publications," +
                          "questions,rapid,reason,received,registered," +
                          "registration,Releases,reminded,remote,reply," +
                          "representation,request,requests,requirements," +
                          "requires,Reserved,response,responsible," +
                          "resulting,reverse-engineer,revision,Rights,run," +
                          "running,runs,runtime,sales,San,satisfied,saved," +
                          "schema,Second,secure,selecting,sense,separate," +
                          "series,Server,servers,serves,service," +
                          "service-related,services,service-side," +
                          "services-related,serving,servlets,session," +
                          "SETCLASSES,SETENV,setting,setup,several,Shinka," +
                          "shinkatech,shipment,should,signed,Simple,sit," +
                          "site,skeleton,skills,slight,SMTP,SOAP," +
                          "SOAP-based,SOAP-related,source,span,Spear," +
                          "specializing,specific,SSL,standalone,standards," +
                          "start,started,starting,States,step,still,stub," +
                          "stubbed,stubbed-out,stubs,subject,subscribed," +
                          "substitute,suite,Sun,support,switch,switching," +
                          "SYS-CON,system,tabs,tag,tags,take,takes,target," +
                          "tasks,Technologies,technology,tedious,Tel," +
                          "temporary,test,tested,thing,things,three,tight," +
                          "time,Tomcat,Tomcat-based,tool,tools,Tower," +
                          "tracking,trademarks,transaction,transactional," +
                          "transactions,translating,transposed,trick," +
                          "trickle,tried,truer,two,tying,types,UDDI," +
                          "UML-based,understand,unique,United,unsubscribe," +
                          "updating,use,used,useful,user,using,utilizes," +
                          "values,version,via,view,Visual,wait,Web," +
                          "WebLogic,Windows-2000,wizards,work,working,WSDL," +
                          "www,XDK,XDK_ROOT,XML,XML-coded,XML-formatted," +
                          "xsd,ZIP";
entry.item[24].page = "archives/0101/mitchko/index.html";
entry.item[24].description = "Integration Server 1.2";
entry.item[25].keywords = "`zip,accepting,Access,acting,add,additional," +
                          "administrative,advantages,affect,amalgam," +
                          "annoying,Apache,APP_NAME,APP_VER,application," +
                          "applications,approach,architect,argument," +
                          "arranges,asks,attached,Author,avoided," +
                          "back-revision,Basic,bi-directional,Bio,block," +
                          "brings,building,built,call,called,calls," +
                          "capabilities,Cautions,certainly,challenge," +
                          "chance,channel,chief,class,clear,client,clients," +
                          "client-side,code,coding,collaborative,com," +
                          "communication,complete,complication,component," +
                          "conf-iguration,Connection,Consider,consultant," +
                          "containers,content,context,context-free," +
                          "contribute,conversation,copy,Copyright," +
                          "countries,create,created,Creating,credentials," +
                          "definition,dependency,deploy,deploying," +
                          "deployment,descriptor,designing,develop," +
                          "developing,difficult,digitally,documentation," +
                          "doPost,driven,drudgery,duplicated,dur-ing," +
                          "easily,E-mail,employees,enables,end,ensure," +
                          "ensures,environment,environments,evolve,example," +
                          "examples,exception,Exchange,exposes,extend," +
                          "extended,Extending,extension,extracts,fact,file," +
                          "final,finding,Following,foo,format,found," +
                          "Foundation,fuzzy,get,getHeaders,getRemoteUser," +
                          "Global,good,great,hash,headers,helper,honestly," +
                          "HTTP,IBM,idea,identify,ignores,implement," +
                          "implementation,important,Inc,include,included," +
                          "incorrect,independend,independent,info@sys-con," +
                          "information,inherit,Inheritable," +
                          "InheritableThreadLocal,init,initial-ization," +
                          "inserted,instance,interaction,intercepts," +
                          "interface,International,isn,Java,Java-based," +
                          "JRun,know,knowledge,knowledge-sharing,KPMG,last," +
                          "lies,lightweight,likes,Likewise,Listing," +
                          "listings,little,look,Looking,looks,made,make," +
                          "making,management,Mark,marks,matching,mechanism," +
                          "mechanisms,Media,message,messages,mes-sages," +
                          "method,methods,Microsoft,Microsystems,modified," +
                          "modify,Moore,much,name,nature,necessary,need," +
                          "needs,NET,new,Next,normally,Note,nothing,now," +
                          "number,Object,obtained,out-of-band,own," +
                          "parameter,parameters,password,payload,pool,POST," +
                          "probably,problem,programmer,programming,proper," +
                          "Protocol,provide,provides,providing,public," +
                          "Publications,quickly,receiving,reflection," +
                          "registered,rejects,remove,request,requests," +
                          "require,required,Reserved,response,responsible," +
                          "returned,Rights,router,RPC,RPCRouterServlet," +
                          "Running,sample,secure,send,Sending,sent,server," +
                          "server-side,service,ServiceContext,services," +
                          "servicing,servlet,ServletRequest,shared,Should," +
                          "shown,shows,sign,signature,Simple,simplicity," +
                          "SINANJU@MEDIAONE,six,SMTP,SMTP-based,SOAP," +
                          "SOAPAction,SOAP-based,SOAPHTTP," +
                          "SOAPHTTPConnection,SOAPSMTPConnection," +
                          "SOAPTransport,SOAPTra-nsport,Software,solution," +
                          "solutions,solve,solving,sophistication,Source," +
                          "special,States,static,step,store,stored," +
                          "straight-forward,Summary,Sun,super,support," +
                          "SYS-CON,table,take,taken,technique,technologies," +
                          "tedious,tempting,TestMain,TestService,things," +
                          "thread,ThreadLocal,threads,time,Tomcat,toolkit," +
                          "trademarks,transmit,transmitting,transport," +
                          "trivial,trusted,try,turned,ubiquitous," +
                          "Unfortunately,unique,United,Unless,unmodified," +
                          "unnecessary,unusual,updates,Use,useful,user," +
                          "username,using,value,values,version,versions," +
                          "way,Web,Web-based,work,write,XML,years";
entry.item[25].page = "archives/0101/moore/index.html";
entry.item[25].description = "Sending Out-of-Band Messages to SOAP-Based " +
                             "Web Services";
entry.item[26].keywords = "ability,abreast,absolutize,accepted,access," +
                          "accessible,accomplish,addition,additional," +
                          "address,addresses,adopted,adoption," +
                          "advertisement,age,allowing,allows,alter," +
                          "application,applications," +
                          "application-to-application,appreciably,approach," +
                          "arbitrary,architects,Architecture,arise,article," +
                          "asking,ASP,ASP/JSP,aspects,associated," +
                          "attributes,Author,authorization,automotive," +
                          "auxiliary,back,backup,bar,bars,based,behind," +
                          "bend,BigInsurance,Bio,bookmarks,both,brand," +
                          "branding,brings,broad,browser-specific,build," +
                          "building,built,business,businesses," +
                          "business-to-business,call,cascading,cases,cause," +
                          "central,challenge,challenges,change,Clearly," +
                          "clicking,client,closely,closer,code," +
                          "collaborative,color,com,com/next,combined," +
                          "commitment,communicate,companies,company," +
                          "complete,complex,complexity,complication," +
                          "components,comprehensive,concept,concepts," +
                          "concerns,concrete,Consequently,consumer," +
                          "container,contains,content,context,contexts," +
                          "control,convenient,conventional,cookies," +
                          "Copyright,corner,correctly,cost,costs,countries," +
                          "create,creating,creation,cross-selling,CSS," +
                          "customer,customer-facing,customizes," +
                          "custom-izing,cycle,data,decide,defeat,degree," +
                          "delivered,demands,demonstrate,Depending,depends," +
                          "depth,described,design,designed,designers," +
                          "determines,developing,development,DHTML," +
                          "different,discover,discuss,document,doesn," +
                          "dynamic,dynamically,ease,easily,easy,e-commerce," +
                          "effectively,effort,efforts,Eilon,element," +
                          "elements,eliminate,E-mail,embraces,enable," +
                          "encapsulates,encapsulating,encapsulation,end," +
                          "end-users,engines,enhance,ensure,equation,error," +
                          "essential,evolution,evolved,examine,example," +
                          "existing,exploited,expose,exposes,extend," +
                          "extends,extensibility,facets,facto,familiar," +
                          "favor,Figure,filtering,find,first,flow,font," +
                          "form,forms,four,full,fully,function," +
                          "functionality,funct-ionality,further,gender," +
                          "global,graphic,guidelines,handling,histories," +
                          "host,HTML,http,hypothetical,illustrate," +
                          "illustrates,image,images,implement," +
                          "implementation,implemented,important,Inc," +
                          "include,includes,including,incorporated," +
                          "incorporating,increases,independent,indexing," +
                          "info@sys-con,information,infor-mation," +
                          "innovative,Input,insurance,integrate,integrated," +
                          "integrates,integrating,integration,interacting," +
                          "interaction,interactive,interacts,interface," +
                          "interfaces,Internet,intricacies,introduced," +
                          "introduces,investment,investments,isn,issues," +
                          "Java,Java-based,JavaScript,JSP,keeping,Key," +
                          "layer,layers,least,leaves,left,lengthy,lets," +
                          "level,leverage,link,linked,links,location," +
                          "locations,logic,logical,logo,look,loses,lost," +
                          "made,magnitude,mainly,maintain,major,make," +
                          "making,management,managers,managing,maps,marks," +
                          "means,mechanisms,Media,merch-andising,messages," +
                          "method,methodologies,methodology,Microsystems," +
                          "miscellaneous,model,multidisciplinary," +
                          "multi-page,multiple,namely,navigate,navigation," +
                          "need,needed,needs,new,next,observe,offer," +
                          "offered,offers,one-time,onLoad,operation," +
                          "opportunities,organization,organizations," +
                          "originator,outside,overall,own,package,packaged," +
                          "Packaging,page,pages,paradigm,para-digm," +
                          "parameters,part,partner,partners,past,path," +
                          "permanent,personalization,personal-ization," +
                          "place,placed,Placing,planning,point,positioning," +
                          "potential,practical,present,presentation," +
                          "presented,pre-sented,presenting,presents," +
                          "preserving,president,principle,problem," +
                          "processes,products,programmatic,programmers," +
                          "properly,proven,provide,provided,providers," +
                          "provides,providing,Publications,purchase," +
                          "ranging,rapidly,readily,realizing,receive," +
                          "receiving,recognize,redeveloping,redirect," +
                          "reduce,reduces,reducing,re-engineer," +
                          "re-engineering,references,registered,re-invoke," +
                          "re-invokes,relevant,relies,rely,remains," +
                          "represents,requested,require,required," +
                          "requirement,requirements,requires,Reserved," +
                          "Reshef,reshef@webcollage,resolve,responsible," +
                          "result,resulting,retrieval,return,returned," +
                          "returns,re-usable,right,Rights,role,routed," +
                          "Rule-based,rules,save,saved,scalability,second," +
                          "selecting,selection,sends,server,service," +
                          "service-oriented,services,serving,Session," +
                          "several,share,shared,sharing,sheets,should," +
                          "shown,side,significant,significantly,simplify," +
                          "single,site,sites,sizable,skills,SOAP,software," +
                          "solution,solutions,sophistication,specialized," +
                          "standard,standards,state,States,still,storage," +
                          "store,straightforward,strategy,structure," +
                          "structuring,style,submits,submitted,Summary,Sun," +
                          "supply,supporting,supports,SYS-CON,take,task," +
                          "teams,technical,technologies,technology," +
                          "tech-nology,Template,temporary,terms,thin,three," +
                          "time,times,time-to-market,top,trademarks," +
                          "transportable,transported,truly,two," +
                          "UDDI-relevant,ultimate,Ultimately,underlying," +
                          "understand,United,up-selling,URL,URLs,usability," +
                          "usable,usage,use,used,user,users,using,utilize," +
                          "validated,validation,vice,views,visibility," +
                          "visual,wasn,way,ways,Web,WebCollage,whenever," +
                          "whether,widely,Widespread,window,work,workflow," +
                          "works,WSDL,www,XML,XSL";
entry.item[26].page = "archives/0101/reshef/index.html";
entry.item[26].description = "Web Services: What Does It Take?";
entry.item[27].keywords = "ability,abundance,accomplish,accountability," +
                          "adapt,additional,adoption,advantage,advantages," +
                          "agents,akin,altered,architecture,Author," +
                          "availability,avenue,avenues,bad,ball,best," +
                          "bidder,Bio,break,brokered,build,burden,business," +
                          "businesses,Business-to-Consumer,calendar," +
                          "capability,cases,chain,chains,change,changing," +
                          "clear,collaborative,com,combination,companies," +
                          "company,compelling,competing,competitive," +
                          "computers,concentrating,conclude,conditions," +
                          "connects,constantly,consultant,consumer,content," +
                          "cooled,Copyright,countries,criteria,crystal," +
                          "data,deal,defined,delivery,dependent,deployed," +
                          "determine,direction,discovery,don,dot-com,drive," +
                          "driving,easy,editorial,editor-in-chief,efforts," +
                          "E-mail,endemic,enormous,existing,exists,expert," +
                          "facets,feel,fever,finally,find,first,five,focus," +
                          "focusing,frequently,full,fully,functions,future," +
                          "future-proofs,goes,good,great,hey,holographic," +
                          "horizon,immediate,impossible,improve,Inc," +
                          "increasingly,independent,industry,infancy," +
                          "info@sys-con,information,infrastructure," +
                          "intelligent,interact,interested,interesting," +
                          "Internet,investment,irreversibly,issues,Java," +
                          "Java-based,job,Journal,know,lack,launches," +
                          "layering,leading,less,level,likelihood,linking," +
                          "little,looking,loom,lowest,machine-independent," +
                          "made,mainstream,make,management,marks,Media," +
                          "Microsystems,millions,Napster,nearly,need,NET," +
                          "neutral,nice,obtain,often,operational,overall," +
                          "peering,Peer-to-peer,Pentium,people,personal," +
                          "piece,platform,platforms,plethora,possibilities," +
                          "possible,prediction,predictions,prevail,process," +
                          "processes,processor,products,progress," +
                          "projection,promise,provide,providing," +
                          "Publications,pursuing,quote,RAM,rather,real," +
                          "reality,reasons,recognition,registered,remember," +
                          "Reserved,respected,responsiveness,Rhody,ride," +
                          "Rights,said,say,screen,Sean,sean@sys-con,seems," +
                          "select,selecting,sense,service,services,setting," +
                          "several,smallest,SOAP,solutions,standard," +
                          "standards,States,Stay,still,strategic," +
                          "strategist,strategy,structure,Sun,SunONE,supply," +
                          "SYS-CON,systems,talking,technologies,technology," +
                          "terms,thing,things,think,thinking,thousands," +
                          "tide,tighten,time,too,top,topics,trademarks," +
                          "transaction,transactional,transactions," +
                          "transformable,truly,tuned,UDDI,unabated," +
                          "Underlying,United,use,using,vendors,visionary," +
                          "voice,way,weatherman,Web,widespread,work,world," +
                          "wristwatch,XML,year,years";
entry.item[27].page = "archives/0101/rhody/index.html";
entry.item[27].description = "A World of Web Services";
entry.item[28].keywords = "ability,Access,accessing,account,acts,add," +
                          "addition,additional,adoption,aggregating,allow," +
                          "allows,amount,analysis,analytics,analyze," +
                          "answers,API,applicant,application,applications," +
                          "architectures,ASAP,aspiration,augmented," +
                          "authentication,Author,authorization,B2B,base," +
                          "based,basic,basis,began,begin,behavior,bills," +
                          "Bio,blocks,Bradstreet,broadest,building,built," +
                          "business,businesses,cache,called,capabilities," +
                          "chains,channel,charging,classic,closely," +
                          "collecting,com,commerce,Commercial,commit," +
                          "companies,company,compliant,component," +
                          "components,computer,conceived,concept,concepts," +
                          "concerned,constructed,consultant,converts," +
                          "Copyright,core,corporate,costs,countries," +
                          "country,create,credit,critical,crucial,CTO," +
                          "customer,customers,Cynthia,D&B,data,database," +
                          "databases,data-neutral,day,days,decision," +
                          "decisioning,decision-making,decisions,dedicated," +
                          "definition,delivering,delivery,deployed,design," +
                          "designed,desired,detail,developed,developers," +
                          "development,different,discounts,discovery," +
                          "distribute,distributed,distributing,dnb," +
                          "download,downloading,Dun,EAI,earliest,easily," +
                          "economy,editor-in-chief,efforts,E-mail,emerging," +
                          "enabling,encouraged,enrollment,enterprise-wide," +
                          "Essentially,establishing,evaluate,evolve," +
                          "example,executives,exist,existing,expands," +
                          "expert,fact,faxed,financial,first,fits,flagship," +
                          "form,format,formats,frequently,fully,further," +
                          "future,gather,global,globalaccess,going,grant," +
                          "granted,grow,grown,growth,Hamburger,hard," +
                          "heavily,help,hides,http,immediately," +
                          "implementations,important,impressions,Inc," +
                          "incorporated,independent,individual,industries," +
                          "industry,info@sys-con,information,initial," +
                          "instantly,integrate,integrates,interesting," +
                          "interface,interfaces,Internet,introspection," +
                          "investigate,Java,Java-based,Journal,know,lacks," +
                          "language,languages,largest,later,leading,leased," +
                          "lending,levels,Likewise,lines,loans,locating," +
                          "looks,maintain,maintains,make,makes,making," +
                          "Management,market,marketing,marketplace,markets," +
                          "marks,matter,mechanisms,Media,member,met," +
                          "Microsystems,million,mobile,modular,namely," +
                          "nearly,need,needed,negotiate,networks,new," +
                          "newest,next,noted,now,number,numbers,obtain," +
                          "obtained,offer,offered,offers,OFX,online,owns," +
                          "paper,paradigm,parsing,part,participants," +
                          "partner,Pat,pays,people,performance,performing," +
                          "persistent,phase,pipe,pipeline,positive," +
                          "possible,possibly,potential,powerful," +
                          "practically,predict,presence,President,private," +
                          "privately-run,process,processes,processing," +
                          "produces,product,products,professionals," +
                          "profiled,profitable,programmatic,progress," +
                          "progressed,provide,provided,provides,providing," +
                          "provisioning,public,Publications,qualify," +
                          "questions,quickly,range,ranks,Rather,rating,raw," +
                          "real,real-time,receiving,reduce,reducing," +
                          "regarding,registered,release,relies,reports," +
                          "request,requests,required,resemble,Reserved," +
                          "reserves,resides,residing,resources,respected," +
                          "Rhody,Rights,rise,risks,runs,said,scale,scoring," +
                          "Sean,sean@sys-con,segment,server,servers," +
                          "service,Service-based,services,side,significant," +
                          "significantly,similarly,simple,site,six,small," +
                          "SOAP,specific,specification,spreadsheet,SQL," +
                          "standalone,standard,standardized,standards," +
                          "States,status,steadily,still,straightforward," +
                          "streamlined,strikingly,Sun,supplier,suppliers," +
                          "supply,support,SYS-CON,system,systems,target," +
                          "technologies,technology,terms,time,times,took," +
                          "Tookit,tool,Toolkit,tracks,trademarks,trading," +
                          "UDDI,United,updated,up-to-date,up-to-the-minute," +
                          "usage,user,uses,using,utilizes,verify,via,Vice," +
                          "viewed,visiting,volume,waiting,watching,Web," +
                          "Web-based,weeks,wide,Winchester,Windows,work," +
                          "working,world,worldwide,worthiness,WSJ,www,XML," +
                          "years";
entry.item[28].page = "archives/0101/rhody2/index.html";
entry.item[28].description = "Dun & Bradstreet";
entry.item[29].keywords = "access,accessed,act,adaptation,address," +
                          "addresses,addressing,adopt,adopted,adopting," +
                          "adoption,affecting,allows,alternate,analyst," +
                          "applications,apply,apps,areas,Associates," +
                          "asynchronous,attempt,attempts,attitude,Author," +
                          "automatic,balance,batched,behavior,Bio,Both," +
                          "broad,broaden,browser,built,business,called," +
                          "calls,careful,cases,central,challenge,chat,Clay," +
                          "Clay@shirky,clerver,client,clients,com," +
                          "communicating,communications,companies,complex," +
                          "components,computational,computer,computing," +
                          "concentrates,conforming,connected,content," +
                          "coordination,Copyright,correct,countries," +
                          "coupled,create,created,database,databases," +
                          "decentralizing,defining,delivery,demonstrated," +
                          "demonstrates,developers,development,dictates," +
                          "directory,distinction,divide,DNS,document," +
                          "documents,domain,Don,dynamic,easy,e-mail,end," +
                          "entities,evolved,example,execute,exploring," +
                          "extract,extreme,fabric,files,file-sharing,fixed," +
                          "flexible,formal,formats,Freenet,functions," +
                          "Gnutella,goals,greater,Groove,groups,handle," +
                          "HTML,HTTP,ICQ,ideal,immense,inadequate,Inc," +
                          "independent,info@sys-con,initiate,Instant," +
                          "InstantPowers,integration,interactions," +
                          "intermittently,Internet,interoperate,involved," +
                          "irrespective,isn,Jabber,Java,Java-based,Jobs," +
                          "kind,knew,knowing,lack,largely,learn,less," +
                          "lessons,Likewise,listen,little,lived,longer," +
                          "loooser,loosely,loosening,machine,machines," +
                          "manage,marks,matter,means,Media,message," +
                          "messages,Messaging,Microsystems,mind-set," +
                          "minutes,model,modeling,MojoNation,Much,multiple," +
                          "name,naming,Napster,narrower,natively,need," +
                          "needing,network,networked,networks,new,node," +
                          "nodes,non-DNS,often,operate,operates,outside," +
                          "overhead,own,P2P,packaged,particlar,passing," +
                          "Path,PCs,peer-to-peer,people,performing," +
                          "permanent,person,piece,pieces,place,point," +
                          "points,possible,problem,processes,protocol," +
                          "protocols,provide,Publications,publishing,range," +
                          "rather,real,receive,reflected,registered," +
                          "Registry,Reilly,remapped,remote,remotely," +
                          "replacement,request-and-response,requested," +
                          "requests,require,required,requirements,Reserved," +
                          "resources,Rights,roles,routers,running,scale," +
                          "scheme,schemes,send,senior,server,servers," +
                          "service,services,shared,Shirky,significant," +
                          "simple,SMTP,software,solution,standards," +
                          "stateless,States,stream,struck,structured," +
                          "success,Sun,supported,synchronization," +
                          "synchron-ization,synchrony,SYS-CON,system," +
                          "systems,take,technological,technologies," +
                          "technology,temporary,thought,three,tight," +
                          "tighter,time,top,traced,trademarks,trade-off," +
                          "tranceiver,transport,two-way,UDDI,ultimately," +
                          "United,use,user,user-created,users,using," +
                          "valuable,value,versa,vice,ways,weave,Web,Webs," +
                          "work,world,XML,Yahoo";
entry.item[29].page = "archives/0101/shirky/index.html";
entry.item[29].description = "What Can Web Services Learn From P2P?";
entry.item[30].keywords = "#Card1,#Card2,#Card3,accept,Access,accessor," +
                          "accommodate,achieve,achieves,achieving,act," +
                          "action,activate,added,adding,addition," +
                          "additional,Additions,AddRetailer," +
                          "AddRetailerxmlns,AddRoute,AddRoutehttp,Advanced," +
                          "Ali,all-encompassing,allowed,alternative," +
                          "Alternatively,applications,applied,apply," +
                          "approach,appropriate,arbitrarily,Architecture," +
                          "arena,arrive,article,asolehdin@infowave," +
                          "attribute,augment,augmented,Augmenting,Author," +
                          "avoid,back,balance,balances,Based,basic,basis," +
                          "began,begin,begins,bill,bind,Binding,Bio,Blocks," +
                          "Body,both,bound,broadcast,Building,call,called," +
                          "calls,capabilities,capability,capture,captured," +
                          "capturing,card,Card1,Card2,Card3,cards,care," +
                          "case,cases,challenge,char,checking,child,client," +
                          "close,Code,collaborate,collaboration,collisions," +
                          "com,com/retailers,complete,Complex,complexType," +
                          "compound,concatenating,conduct,conducting," +
                          "confirmation,conform,conforming,consider," +
                          "construct,consume,consuming,Copyright,CORBA," +
                          "corresponding,countries,create,created,creating," +
                          "credit,CreditCardNumber,Credit-CardNumber," +
                          "CreditCardNumber0987654321," +
                          "CreditCardNumber1122334455," +
                          "CreditCardNumber1234567890,CreditCardNumberxsi," +
                          "CreditCardType,CreditCardTypeAMEX," +
                          "CreditCardTypeMasterCard,CreditCardTypeVisa," +
                          "CreditCardTypexsi,customer,CustomerInfo," +
                          "CustomerName,Cust-omerName,CustomerNameLuke," +
                          "customers,danger,data,Datatype,datatypes,DCOM," +
                          "debugging,decision,declarations,declare," +
                          "declared,decoupling,defer,define,defined," +
                          "defining,derivation,derived,Deriving,described," +
                          "deserialize,designate,details,develop," +
                          "developing,discuss,dispatcher,distinguish," +
                          "distributed,document,doesn,door,dynamic," +
                          "dynamically,early,easily,effective,effectively," +
                          "efforts,electronic,element,ElementName,elements," +
                          "E-mail,embedded,emerge,enabling,encapsulated," +
                          "encapsulating,encoding,encourage,end,endpoint," +
                          "engineer,ensure,Enterprise,entire,Envelope," +
                          "envelops,especially,event,evolution,evolve," +
                          "example,execute,executed,execution,exercises," +
                          "existing,expand,explicitly,expose,extend," +
                          "extended,extending,extensibility,extensible," +
                          "extensions,extensively,family,far,fashion," +
                          "Figure,firewall-friendly,first,flexibility," +
                          "focus,follow,following,follows,form,format," +
                          "formed,formulate,formulated,forth,Fortunately," +
                          "forward,found,frameworks,further,Furthermore," +
                          "generic,goal,graph,greater,groundwork,handle," +
                          "handled,hassle,head,header,headers,help,Here," +
                          "href,HTTP,ideas,identifier,identify,identifying," +
                          "illustrate,illustrated,illustrates,illustration," +
                          "impetus,implementation,important,inappropriate," +
                          "Inc,include,incorporate,incorporating," +
                          "incrementally,independent,indicate,info@sys-con," +
                          "information,Infowave,infrastructures,inherit," +
                          "inline,inside,instance,instances,Instead,int," +
                          "interest,interface,interpret,interpretation," +
                          "introduction,invariants,invoke,isn,issue,item," +
                          "ItemInfo,ItemName,ItemNameLightsaver,ItemNumber," +
                          "ItemNumber21382,iteration,Java,Java-based,Keep," +
                          "keywords,last,late,lay,leader,Let,leveraged," +
                          "liberty,Lightsaver,limit,limited,line,linked," +
                          "list,listener,listening,Listing,local,locally," +
                          "locate,look,low,lowest,Luke,makes,marks,maximum," +
                          "means,mechanisms,Media,merchant,message," +
                          "messaging,method,methods,Microsystems,mind," +
                          "model,modified,much,MyMethod,myRetailers,myriad," +
                          "mysecondfavoriteretailer,myserver,name,named," +
                          "Namespace,NamespaceIdentifier,namespace-qualify," +
                          "namespace-qualifying,namespaces,natural," +
                          "naturally,nature,need,network,next,node,nodes," +
                          "Note,Notice,now,null,number,Object,objective," +
                          "observed,obtain,obtained,online,open,opening," +
                          "order,OrderNumber,OrderNumber10029645,orders," +
                          "org/2000/10/XMLSchema," +
                          "org/2000/10/XMLSchema-Instance," +
                          "org/soap/envelope,outside,own,parameter," +
                          "parameters,parent,parse,part,payload,payment," +
                          "PaymentNode,pays,perform,performed,pertaining," +
                          "pervasive,pHead,place,placed,PlaceOrder," +
                          "PlaceOrderResponse,PlaceOrderxmlns,plans," +
                          "platform-neutral,pNextNode,point,pointer," +
                          "polymorphic,Port,possible,POST,preceding," +
                          "predetermined,prefer,principles,prior,process," +
                          "processed,processing,progressed,progressing," +
                          "progression,proponent,Protocol,protocols," +
                          "prototype,provide,provides,proxy,Publications," +
                          "punctuating,purchase,purposes,qualification," +
                          "qualify,quantity,Quantity2,rather,realize," +
                          "receive,receiving,ref,reference,referenced," +
                          "references,regarding,registered,related," +
                          "relevant,remote,represent,representation," +
                          "represents,request,requested,requests,required," +
                          "requirement,requirements,requires,Reserved," +
                          "resides,response,result,retail,retailer," +
                          "retailers,return,richer,Rights,root,roots," +
                          "routinely,routing,runtime,saw,say,scenario," +
                          "schema,schemas,scoped,script,second,security," +
                          "seen,send,sent,separate,separating,sequence," +
                          "serialization,serialize,serialized,serializing," +
                          "server,server-side,serves,service,services," +
                          "several,should,shown,side,Similarly,Simple," +
                          "simplicity,simply,singly,Skywalker,SOAP,SOAPENV," +
                          "SOAP-ENV,software,Solehdin,Source,specific," +
                          "specification,split,standard,standardization," +
                          "standardized,standards,start,States,step,Steps," +
                          "still,stock,straightforward,stream,string," +
                          "strong,Struct,structure,structures,stub," +
                          "sub-element,sufficient,Sun,support,supports," +
                          "SYS-CON,take,takes,Taking,Technologies,three," +
                          "tracking,trademarks,traffic,transaction," +
                          "transport,transporting,traverses,two,type," +
                          "typedef,types,understanding,unique,uniquely," +
                          "United,update,URI,URL,use,used,useful,using," +
                          "UTF-8,valid,valuable,value,value-added,values," +
                          "varies,variety,vendors,version,Visa,Vol,wallet," +
                          "way,ways,Web,well-formed,well-understood," +
                          "whereby,wire,wireless,wish,wishes,worked," +
                          "wrapping,WSJ,www,XML,XML-based,xmlns,xmlsoap," +
                          "xsd,xsi";
entry.item[30].page = "archives/0101/solehdin/index.html";
entry.item[30].description = "Deriving SOAP";
entry.item[31].keywords = "access,accessible,accessor,acting,action,add," +
                          "added,Additional,administer,allows," +
                          "Alternatively,analysis,API,appended,Application," +
                          "applications,appropriate,architecture,Array," +
                          "associated,Author,back,Barbash,BEA,bean,beans," +
                          "begin,beginning,Bio,BMP,Brian,broker,business," +
                          "called,calling,calls,capability,Cape," +
                          "CapeConnect,case,catalog,cataloged,choice,class," +
                          "classes,Clear,client,clients,collections,COM," +
                          "communicate,communicating,communication,complex," +
                          "component,components,Computer,concept," +
                          "Configuration,configured,connection,consists," +
                          "console,construct,consultant,Consulting," +
                          "container,containers,contains,converts," +
                          "Copyright,CORBA,Corporation,countries,create," +
                          "created,creating,creation,curve,custom," +
                          "custom-defined,customized,data,defined," +
                          "definitions,deployed,deploying,deployment," +
                          "deploys,design,desired,details,developer," +
                          "developers,development,distinct,editing," +
                          "effective,EJB,EJBs,elected,E-mail,engine," +
                          "enterprise,entity,entry,environment," +
                          "environments,essentially,establish,established," +
                          "etc,example,Exceptions,exclusively,existing," +
                          "exposed,exposes,extended,extending,external," +
                          "extracted,extremely,family,faults,few,field," +
                          "fields,Figure,file,first,flexibility,forefront," +
                          "format,formats,forwards,fully,fully-compliant," +
                          "Future,Gateway,generate,generated,generates," +
                          "Generic,Group,handle,handled,holds,hosts,IBM," +
                          "III,illustrates,impact,Inc,include,includes," +
                          "including,incoming,independent,individual," +
                          "info@sys-con,information,initiatives,install," +
                          "Installation,installed,instance,instances," +
                          "integer,Integers,integrated,integrates," +
                          "integrating,integration,integrations,intended," +
                          "interface,interpreted,intricacies,investment," +
                          "investments,invoked,iPlanet,isolates,J2EE,Java," +
                          "Java-based,JDBC,JNDI,learning,leverage," +
                          "leveraged,lieu,Linux,location,lookup,machine," +
                          "major,makes,manage,management,manager,manages," +
                          "manipulated,manually,mapped,mappings,maps,marks," +
                          "matures,means,mechanism,mechanisms,Media," +
                          "message,messages,method,methods,Microsoft," +
                          "Microsystems,minimal,modifications,movie,movies," +
                          "multiple,name,names,needed,NET,normal,number," +
                          "object,objects,option,Optionally,order,outside," +
                          "overloaded,package,paradigm,parameter," +
                          "parameters,pass,passed,Pentium,persistence," +
                          "personal,place,platform,presented,primitive," +
                          "prior,process,processing,product,profile," +
                          "properties,property,proprietary,provide," +
                          "provided,provides,providing,Publications,RAM," +
                          "RBASH@CSC,reasonable,receive,received,receives," +
                          "recommended,reduce,registered,reply,represents," +
                          "request,requested,requesting,requests,required," +
                          "requirement,requires,Reserved,resides,response," +
                          "results,Resultset,retrieved,returned,review," +
                          "Rights,route,routes,Sciences,SDComplexType," +
                          "SDReply,second,secure,sends,sent,separate,serve," +
                          "server,servers,service,services,serving,session," +
                          "signature,simple,simplify,single,SOAP," +
                          "SOAPDirect,software,Solaris,solution," +
                          "specializes,specific,specified,standard," +
                          "stateless,States,step,steps,straightforward," +
                          "Strings,structured,structures,stubs,subsequent," +
                          "Summary,Sun,supplement,support,supported," +
                          "Supporting,supports,SYS-CON,system,systems," +
                          "tailor,technical,technologies,three,time," +
                          "toolsets,trademarks,translated,translations," +
                          "turn,Two,types,UDDI,unique,United,unlike,update," +
                          "URI,use,used,user,users,using,value,values," +
                          "variant,versions,via,videos,Web,Web-based," +
                          "WebLogic,WebSphere,whether,Windows,wizard,work," +
                          "Working,world,WSDL,XML";
entry.item[31].page = "archives/0102/barbash/index.html";
entry.item[31].description = "CapeConnect Two for J2EE by Cape Clear";
entry.item[32].keywords = "#1024,account,admission,adopted,algorithm," +
                          "analyst,analysts,appear,application," +
                          "applications,appropriate,architecture,ask," +
                          "assemble,assume,assumptions,audiences,Author," +
                          "benefit,Benfield,Bio,both,breaks,bring,broad," +
                          "browsers,build,building,business,businesses,buy," +
                          "calculate,call,capital,case,chance,chief,CID," +
                          "Clearly,code,com,companies,Company,complete," +
                          "confusion,consulting,consume,Copyright," +
                          "countries,covers,create,credit,CustID,CustNum," +
                          "Customer,data,day,days,define,defined," +
                          "definition,definitions,delivering,delivery," +
                          "deploy,devices,died,discount,distributed,doesn," +
                          "don,dot-com,down,EJBs,element,E-mail,enables," +
                          "encompass,end,engines,enterprise,entry," +
                          "environment,Essentially,example,execute,eXtend," +
                          "field,find,finding,firm,first,five,follow," +
                          "followed,formal,functionality,get,gnashing," +
                          "going,good,group,healing,hear,Here,hold,Hope," +
                          "HTTP,huge,humans,hype,ignoring,implements,Inc," +
                          "include,including,independent,info@sys-con," +
                          "integration,interoperability,intuitive,involved," +
                          "isn,J2EE,Java,Java-based,kind,know,least,legacy," +
                          "let,list,long,look,looking,lot-what,Luckily," +
                          "mainstream,make,map,mappings,marketplace,marks," +
                          "mass,massive,Media,mention,metadescription," +
                          "Microsystems,move,much,multi-channel,multiple," +
                          "names,names-that,narrow,need,NET,network,next," +
                          "normal,Nothing,numbers,officer,order," +
                          "order-entry,part,partially,people,Perhaps," +
                          "pervasive,phrase,piece,pie-in-the-sky,place," +
                          "plain,plan,Price,pricing,products," +
                          "programmatically,programmer,public,Publications," +
                          "published,put,quality,question,quickly," +
                          "referring,regardless,registered,reports," +
                          "requires,Reserved,results,Right,Rights,savings," +
                          "say,saying,says,sbenfield@silverstream,search," +
                          "self-healing,semantics,server,service," +
                          "service-oriented,services,services-or," +
                          "services-oriented,shot,SilverStream,site,sites," +
                          "SOAP-accessible,software,soon,sort,sound,sounds," +
                          "specifically,standards,States,step,Steve,still," +
                          "stock,suggestion,Sun,superhype,supplier," +
                          "suppliers,suppose,SYS-CON,systems,tables,takes," +
                          "talking,taxonomy,technology,teeth,terms,theirs," +
                          "things,think,three,Time,ton,trademarks,true,two," +
                          "Ubiquitous,UDDI,United,unless,use,used,uses," +
                          "using,wailing,wanting,wasn,way,Web,WebServices," +
                          "well-defined-and,well-understood-taxonomy," +
                          "whether,Widget,widgets,wireless,won,word,work," +
                          "world,write,wrote,WSDL,XML,year,years";
entry.item[32].page = "archives/0102/benfield/index.html";
entry.item[32].description = "What's Happening in Web Services?";
entry.item[33].keywords = "ability,acceptable,access,accommodate," +
                          "accomplished,accounts,achieve,achieved,activate," +
                          "added,addition,additional,address,addresses," +
                          "administered,administration,administrators," +
                          "adopted,adopters,adoption,allow,allows," +
                          "alongside,altogether,analogous,analogy,analysts," +
                          "answer,APIs,appear,applicable,application," +
                          "applications,approach,approachable,approaches," +
                          "arcane,architecture,architectures,archive," +
                          "archives,aren,argued,article,ask,assemble," +
                          "assembled,assembling,assembly,associated,atomic," +
                          "attempt,authentication,Author,authorization," +
                          "automate,automating,awkward,backgrounds," +
                          "bandwidth,based,behaviors,behind,Ben,benefit," +
                          "benefits,Bernhard,bernhard@iona,bindings,Bio," +
                          "biweekly,both,breach,bring,brokers,build," +
                          "builder,builders,building,bundled,bundling," +
                          "Business,business-to-business,calculators," +
                          "called,capabilities,capable,card,carefully," +
                          "carry,carrying,case,cases,central,certain," +
                          "changes,changing,characteristic,characteristics," +
                          "characterize,choices,choosing,chosen,chron," +
                          "circumstances,Class,classes,classpath,clean," +
                          "clear,clearly,clustered,clustering,code," +
                          "collected,collection,com,commit,communication," +
                          "companies,company,comparable,compatible," +
                          "compelling,competing,complement,complete," +
                          "complicated,components,computing,concept," +
                          "Conclusion,configuration,conflicts,connect," +
                          "connections,connectivity,consist,Consistency," +
                          "consistent,consistently,console,consortium," +
                          "construct,constructed,constructing,construction," +
                          "consultants,container,Container-based," +
                          "Containers,contaminated,context,Conversely," +
                          "Copyright,CORBA,correlate,countries,coupled," +
                          "couples,creation,credentialing,credit,critical," +
                          "crucial,curve,custom,customer,customers," +
                          "cutting-edge,cycle,cycles,daily,data,database," +
                          "Date,dateTime,days,deep,define,degree,deliver," +
                          "delivered,delivering,delivery,demos,deploy," +
                          "deployable,deployed,deploying,deployment," +
                          "deployments,described,Describing,designed," +
                          "details,developed,developer,developers," +
                          "developing,development,different,differentiate," +
                          "differentiator,difficult,directions,discover," +
                          "disparate,dispatch,dispatched,dispatchers," +
                          "disrupts,distributed,documentation,doesn,don," +
                          "early,EARs,ease,easy,easy-to-use,effect,effects," +
                          "efforts,EJBs,element,elements,else,elsewhere," +
                          "e-mail,embodies,employ,encapsulates,engineering," +
                          "engines,Enhancements,enormous,Ensure,enterprise," +
                          "enterprise-level,enterprises,environment," +
                          "environments,eschew,essential,establish," +
                          "evaluating,evaluation,evolution,evolve,example," +
                          "examples,exchange,executable,existing,expect," +
                          "experience,Experienced,expertise,explode,expose," +
                          "exposed,expression,extend,extended,extension," +
                          "extensive,extract,eXtreme,facilitate," +
                          "facilitates,failover,fall,familiar,faster,fault," +
                          "fault-tolerant,feasible,feature,features,few," +
                          "first,first-class,flashy,flaw,flaws,flexible," +
                          "flow,following,force,form,forms,frameworks," +
                          "frequently,ftp,full-fledged,functionality," +
                          "Further,Furthermore,future,gain,gained,gains," +
                          "gateways,generate,generated,generation," +
                          "geographically,good,Graphical,great,groups,GUI," +
                          "GUI-based,hallmark,hand,handling,hardware,help," +
                          "helpful,high,hits,hold,hope,host,hosted,Hosts," +
                          "hourly,HTML,HTTP,HTTPR,ideal,identified," +
                          "identify,imbedded,immediately,impact," +
                          "imperatives,implement,implementation," +
                          "implemen-tation,implementations,implemented," +
                          "implementing,implications,implies,impose," +
                          "improve,improved,inactivate,Inc,include," +
                          "included,includes,incoming,increasingly," +
                          "independent,in-depth,individual,industry," +
                          "inevitable,info@sys-con,infrastructure," +
                          "infra-structure,infrastruc-ture,initiative," +
                          "initiatives,in-place,inside,install," +
                          "Installation,installed,Instead,instrumentation," +
                          "integrated,integration,Interfaces," +
                          "Internet-based,interoperability,interoperable," +
                          "intimate,introduce,investing,IONA,isolate,J2EE," +
                          "Java,Java-based,JCP,JMS,JMX,jobs,JSP,key,kind," +
                          "know,knowledge,largely,last,latest,latter,layer," +
                          "leaders,learning,legitimate,let,level,levels," +
                          "leverage,leveraged,leveraging,liabilities," +
                          "libraries,library,life,lightweight,likely," +
                          "limitations,limited,listed,listener,little,live," +
                          "local,lock-in,logic,long-term,look,loosely," +
                          "machine,made,magazine,maintain,major,make,makes," +
                          "making,manage,managed,management,manager," +
                          "managing,mandate,mandates,manipulate,manual," +
                          "manually,map,mapped,mapping,market,marks," +
                          "marshalling,materials,mature,maturing,maturity," +
                          "means,measure,measurements,measures,measuring," +
                          "mechanisms,Media,median,megabytes,message," +
                          "messages,metric,metrics,Microsystems,middleware," +
                          "mind,minimal,mission-critical,mistake,model," +
                          "moderately,modified,modify,mortgage,move," +
                          "multiple,near,necessary,need,needs,net,network," +
                          "networks,never,new,newly,next,no-programming," +
                          "Note,now,number,numbers,offer,offering," +
                          "offerings,often,open,operating,operation," +
                          "operations,options,Organizations,organized," +
                          "overcome,pages,painful,paradigm,parallel,parsed," +
                          "parser,part,participants,participate,partners," +
                          "parts,path,patterns,payload,peculiarities," +
                          "perform,performance,perhaps,permutations," +
                          "picture,pilot,plan,platform,platforms,point," +
                          "points,portability,possibility,possible," +
                          "possibly,Postal,posts,potential,powerful," +
                          "prerequisite,present,presented,Press,previews," +
                          "primary,probably,process,processor,produce," +
                          "product,production,productivity,products," +
                          "Programming,progress,project,projects,promise," +
                          "promises,promote,proof,proof-of-concept," +
                          "proposed,propositions,proprietary,protocol," +
                          "protocols,provide,providers,provides,public," +
                          "Publications,published,purpose,push,quality," +
                          "quarter,quarterly,question,questions,quote," +
                          "radically,rapid,rapidly,rates,Rather,real," +
                          "real-world,re-bundling,receivable,receives," +
                          "reference,references,reflections,registered," +
                          "related,release,releases,relevant,reliability," +
                          "reliable,remote,replacing,replicated,reported," +
                          "requests,requests-per-second,require,required," +
                          "requirements,requires,requiring,resemble," +
                          "Reserved,reside,resolve,resource,resources," +
                          "response,responsible,restart,restarted,re-tuned," +
                          "Rights,robust,rollout,round-trip,run,running," +
                          "runtime,rushing,safety,Savvy,scalability,scale," +
                          "scope,scripts,seamless,second-class,secure," +
                          "security,send,Sending,server,servers,Service," +
                          "services,service-specific,servicing,servlet," +
                          "servlet-based,servlets,sessions,settings," +
                          "several,short,shortcomings,should,showcasing," +
                          "significant,simmered,simple,simply," +
                          "simultaneously,single,size,skill,slowly,small," +
                          "SMTP,SOAP,solid,solution,solutions,soon," +
                          "sophisticated,sound,source,special,specialized," +
                          "specific,specifically,specification,specified," +
                          "staff,stage,standalone,standard,standardize," +
                          "standardized,standards,Standards-based,state," +
                          "stateful,stateless,States,statistics,steps," +
                          "stock,stress,subject,substantial,succeed," +
                          "success,suffers,sufficient,suitability,summary," +
                          "Sun,support,supporting,supports,Sustained," +
                          "SYS-CON,system,systems,tailored,taxonomy,TCP," +
                          "teams,technical,techniques,technologies," +
                          "technology,term,test,tested,test-lab,thing," +
                          "third-party,three,thrive,tightly,time,times," +
                          "time-tested,time-to-market,tolerance,tools," +
                          "touchstones,tout,toy,tracing,trademarks,trading," +
                          "traditional,transaction,transport,transports," +
                          "transport-specific,tried-and-true,trivial,tuned," +
                          "two,type,Ubiquity,unacceptable,under,underlying," +
                          "understanding,understood,Unfortunately,unique," +
                          "uniquely,United,update,updated,upgrade,upgrades," +
                          "Usability,usage,use,useful,user,users,using," +
                          "uspswebtools,utilize,value,variations,variety," +
                          "vehicles,vendor,Vendors,version,versions,viable," +
                          "view,virtual,virtually,visible,vision,volume," +
                          "WARs,wary,weaknesses,Web,well-known,wide,widely," +
                          "widespread,willingness,won,working,wrong,WSDL," +
                          "www,XML,XMLBus,xsd,yardsticks,year,yearly,years," +
                          "zip";
entry.item[33].page = "archives/0102/bernhard/index.html";
entry.item[33].description = "A Web Services Container";
entry.item[34].keywords = "ability,abstract,abstraction,abstracts,access," +
                          "accessed,accounts,accurately,achieve,Acme,added," +
                          "addition,additional,address,addresses," +
                          "administrator,administrators,admitting,adopted," +
                          "adoption,ads,advantages,advertising,aerospace," +
                          "age,aggregate,agnostic,allocate,allocation," +
                          "alphabetical,always-on,amount,amounts,amusement," +
                          "analogous,ancillary,API,APIs,app,appear," +
                          "appearing,application,applications,approach," +
                          "approaches,appropriate,arbitrarily,archived," +
                          "area,areas,arena,arenas,argue,Ariba,article," +
                          "aspect,assets,assuming,asymmetry,attempt,Author," +
                          "automobile,B2B,back,bandwidth,base,based,basic," +
                          "basically,basis,bedevil,Bedeviled,bells," +
                          "Berners-Lee,best,big-box,bigger,biggest,Bio,bit," +
                          "bonanza,bone,book,both,boundaries,box,breaching," +
                          "bread,bring,brokers,browser,browsers,buggy," +
                          "building,built,business,business-to-business," +
                          "butter,buy,bypass,Cagle,call,called,calls,came," +
                          "cap,capabilities,case,cases,cautioned,cell," +
                          "central,centralization,century,certain,chain," +
                          "chances,change,changes,characteristic,charged," +
                          "charging,chat,choice,choose,chooser,circulation," +
                          "circumstances,class,client,client/server," +
                          "Client-side,code,collection,com,com/finance," +
                          "come-first-served,commercial,communicate," +
                          "communicating,communication,Communications," +
                          "companies,company,compared,compiles,complex," +
                          "computational,computer,conceived,concentrated," +
                          "configures,connected,connecting,connection," +
                          "connections,Consider,considering,constructed," +
                          "consultants,consume,contact,contain,content," +
                          "convenient,convert,converting,cooperation," +
                          "Copyright,core,corporate,cost,costly,costs," +
                          "cottage,couldn,countries,created,createmy," +
                          "creates,creating,creation,critical,cross," +
                          "crossing,culls,curiosity,curious,customers,Data," +
                          "databases,data-centric,day,days,deafening,deal," +
                          "decades,decentralization,declare,declaring," +
                          "dedicated,deep,default,define,deliberate,demand," +
                          "departments,dependent,deployment,describe," +
                          "described,describing,Description,descriptions," +
                          "designed,desktop,destined,determine,develop," +
                          "developed,developer,developers,development," +
                          "device,devices,device-to-device,DHCP,dial-up," +
                          "didn,different,differentiating,direct,directory," +
                          "disaffected,disappear,disappearing,disconnect," +
                          "discover,discovered,discovers,Discovery," +
                          "discrepancy,disliked,disruption,distinct," +
                          "distinction,distinctions,distributed," +
                          "distributing,distributors,document," +
                          "documentation,documenting,document-management," +
                          "documents,doesn,dominant,dominated,don,down," +
                          "dozens,DSN,dual,due,duplications,dynamic," +
                          "earlier,early,easier,easily,easy,e-commerce," +
                          "economy,EDI,edit,editor,education,effect," +
                          "effectively,efficiency,efficient,efficiently," +
                          "effort,Electronic,eliminate,eliminating,else," +
                          "e-mail,emerge,emerged,Encoding,encourage,end," +
                          "enforcing,ensure,ensuring,enterprise," +
                          "environment,especially,essentially,Ethernet," +
                          "evaluate,evolves,example,exceeded,exclude," +
                          "existed,existence,existing,exists,expected," +
                          "experience,expertise,exploded,exposes,extent," +
                          "external,extracted,facilities,fact,failing," +
                          "fairly,fairness,far,fashion,feature,features," +
                          "fee,few,field,fields,file,files,Finally,financ," +
                          "finance-oriented,financial,finding,finds," +
                          "firewall,first,fit,fits,five,flexibility,focus," +
                          "form,format,forms,forwarded,found,foundation," +
                          "four-color,fractional,framework,Fred,front," +
                          "frustrating,fulfill,fulfilled,function," +
                          "functionality,future,gains,game,garnered," +
                          "general,get,gets,give,given,gives,goes,going," +
                          "Gold,good,grail,great,Green,gridlock,grows," +
                          "guard,guy,hacking,Hailstorm,hand,handhelds," +
                          "handle,handling,happen,happened,happening," +
                          "happens,hard,head,headhunters,heavily,hell," +
                          "Helping,here,Hey,hierarchical,hierarchy,high," +
                          "highly,hints,holy,hooks,host,hosts,HTML,http," +
                          "hub-and-spoke,huge,human,hype,ial,IBM,idea," +
                          "ideal,IDL,implementation,implementations," +
                          "important,impose,Inc,incarnation,incidentally," +
                          "include,including,incompatibilities," +
                          "incom-patibilities,incompatibility,increasing," +
                          "increasingly,incremental,incrementally," +
                          "independent,industries,industry,infancy," +
                          "info@sys-con,information,infrastructure,initial," +
                          "initially,initiatives,instant,instead," +
                          "instructions,instructive,Integration," +
                          "intelligence,intended,interactions,Interchange," +
                          "interchanges,interconnections,interest," +
                          "interested,interesting,interface," +
                          "interface-oriented,interfaces,intermediary," +
                          "intermediate,internal,Internet,Intrabusiness," +
                          "intracompany,intra-company,intranets,intriguing," +
                          "invasiveness,invested,invoice,involved,involves," +
                          "Ipv6,Irony,isn,ISPs,issue,issues,Java," +
                          "Java-based,JavaScript,Jenkins,Jennie,Joe," +
                          "justify,keep,key,killed,know,Kurt," +
                          "kurt@kurtcagle,kurtcagle,labeled,landscape," +
                          "language,language-independent,languages,laptop," +
                          "laptops,large,largely,larger,largest,Last,late," +
                          "latest,latter,layer,layoffs,LDAP,lead,leaders," +
                          "learn,learning,leased,least,legacy,lengthy,less," +
                          "let,leverage,libraries,liked,likelihood,likely," +
                          "link,listed,listing,listings,live,local,located," +
                          "logical,long,longer,looking,looks,lower,machine," +
                          "made,magic,maintained,maintenance,major,make," +
                          "makes,making,management,manager,manipulating," +
                          "marketing,marks,Martin,master,matter,means," +
                          "meant,media,mention,menus,message,messages," +
                          "methods,Microsoft,Microsystems,mindset,minimize," +
                          "minor,mirrors,missing,mobile,model,models," +
                          "moment,money,month,Moreover,morning,move," +
                          "movement,Mozilla,much,multiple,myCompany,myPDA," +
                          "name,named,narrow,nascent,necessarily,necessary," +
                          "need,needs,neglects,NET,network,Networks,new," +
                          "newer,next,night,None,nonproprietary,note," +
                          "notifies,notion,Now,number,numbers,object," +
                          "object-oriented,objects,obsolete,Occasionally," +
                          "occur,occurred,occurring,offer,offered,often," +
                          "old,older,Olympia,open,opens,operates,operating," +
                          "options,order,orders,ordinarily,organic," +
                          "organization,originally,outside,outsourced,own," +
                          "owning,package,packages,page,Pages,paper," +
                          "paradigm,parameters,paring,Part,passing,PDAs," +
                          "Peering,peers,Peer-To-Peer,people,perfect," +
                          "perfectly,performed,performs,perhaps," +
                          "periodically,Perl,permission,person,personal," +
                          "pervasive,Phenomenon,phone,phone/personal," +
                          "phones,pictures,piece,pieces,pilot,pipe,place," +
                          "placed,places,plan,play,pockets,point,points," +
                          "portals,pose,position,possibility,possible," +
                          "posting,potential,potentially,powerful," +
                          "precisely,pre-empts,prefer,preferred,premise," +
                          "premium,presented,president,pretty,prevalent," +
                          "primary,principal,probably,problem,problems," +
                          "procedural,process,processing,product," +
                          "production-level,products,profit,profound," +
                          "program,programmer,Programmers,programming," +
                          "programs,project,projects,promoted,promoting," +
                          "proposal,protocols,provide,provider,providers," +
                          "provides,providing,public,Publications,purchase," +
                          "purchaseOrder,purposes,push,pushed,put,quaint," +
                          "queries,question,quite,raced,radio,raised," +
                          "rapidly,rare,rather,reached,read,real," +
                          "realization,re-architecture,reared,reason," +
                          "reasons,received,receptionist,rectifying,reduce," +
                          "referencing,referred,regard,registered,related," +
                          "remained,remember,render,rendering,repeatedly," +
                          "repositories,repository,represent,represents," +
                          "request,requirements,requires,requisite," +
                          "Reserved,resolve,resources,respects,respond," +
                          "response,restrict,result,retrenchment,rich," +
                          "right,Rights,robust,role,roles,roving,run,Rush," +
                          "rushes,sales,save,saying,scary,scenario,schemas," +
                          "screen,Seattle,Second,seconds,secure,security," +
                          "seeing,seems,seen,selected,selling,Semantic," +
                          "semantically,send,sending,sense,sent,separate," +
                          "serve,server,servers,server-side,service," +
                          "services,serving,sets,setting,several,sexy," +
                          "shaped,sharing,she,Sheila,shift,shipping,shop," +
                          "short-wave,shovels,signed,significant," +
                          "significantly,silence,similarly,simple,simpler," +
                          "simply,simultaneously,single,site,situations," +
                          "slow,small,snoops,SOAP,so-called,social," +
                          "software,sold,solution,solutions,solu-tions," +
                          "solve,solved,soon,sort,Source,space,specialized," +
                          "specializing,specific,specify,speed,speeds," +
                          "spending,sphere,splash,stack,stage,standard," +
                          "standards,standpoint,staple,start,States,static," +
                          "status,still,strengthen,stressed,stresses," +
                          "strong,stronger,strongly,struggling,subject," +
                          "submitting,subscribers,subsumed,subtle,suffer," +
                          "sufficiently,suicide,Sun,Superfluous,suppliers," +
                          "support,supports,Suppose,supposedly," +
                          "surprisingly,syntax,SYS-CON,system,systematic," +
                          "systemic,systems,T-1,tack,tacked,take,talk," +
                          "taxonomies,taxonomy,technologies,technology," +
                          "telematics,tell,tend,tends,term,terms,test," +
                          "things,think,thinking,thorny,thought,thousandth," +
                          "three,Thus,Tim,time,too,took,tools,top-down," +
                          "touted,toys,trademarks,traditional,transaction," +
                          "transactions,transient,translating,transparency," +
                          "true,trying,turn,turned,turning,turns,two,type," +
                          "types,UDDI,ugly,ultimately,under,Underground," +
                          "understand,undoubtedly,uniform,unique,United," +
                          "Universal,unsupported,updated,upgraded," +
                          "upgrading,uplink,upload,upstarts,up-to-date,use," +
                          "used,useful,user,users,uses,using,utilization," +
                          "Value,VANs,vehicle,vendor,vendors,ventures," +
                          "version,versioning,versions,versus,vertical,via," +
                          "view,vision,wake,wanting,wares,Washington,wasn," +
                          "watching,way,ways,Web,Web-based,Web-service," +
                          "wedge,well-defined,well-trained,whistles,White," +
                          "wide,Widgets,wireless,word,words,work,workable," +
                          "working,works,world,wrap,write,writing,written," +
                          "wrote,WSDL,www,XHTML,XML,XML-based,XSLT,XUL," +
                          "years,Yellow,yore";
entry.item[34].page = "archives/0102/cagle/index.html";
entry.item[34].description = "The Real Niche for Web Services: Part 2";
entry.item[35].keywords = "ability,acceptance,Access,acknowledgment," +
                          "activation,Adaptable,addAttachmentPart," +
                          "addBodyElement,addChildElement,added,adding," +
                          "addition,address,addresses,addressing," +
                          "addTextNode,all-Java,allow,allows,allusion,API," +
                          "APIs,application,application-defined," +
                          "applications,appropriate,architecture,argument," +
                          "assumptions,assure,asynchronous,attachment," +
                          "attachmentpar1t,AttachmentPart,attachmentpart1," +
                          "Attachments,Author,B2B,base,based,basic,begin," +
                          "Bio,BizTalk,block,body,both,bound,bridge,build," +
                          "building,built,business,call,called,calls," +
                          "capable,cause,certain,Chappell,chief,class," +
                          "client,clients,coauthor,code,com," +
                          "com/transactions,communicate,communication," +
                          "communications,Community,companies,company," +
                          "Complex,comprises,con,concept,concepts," +
                          "Conceptually,conduct,configuration,connect1," +
                          "connected,connection,considerable,consisting," +
                          "construct,constructor,contain,contained," +
                          "container,containing,contains,content,Context," +
                          "convention,conventions,corporations,correlation," +
                          "countries,coupled,covered,create," +
                          "createAttachmentPart,createConnection,created," +
                          "createMessage,createMessageFactory,createName," +
                          "creates,Creating,creation,critical,crucial,ctx," +
                          "cut,data,DataHandler,datahandler1,datatypes," +
                          "Dave,decentralized,deconstruct,deconstructing," +
                          "default,define,defined,defines,delivery," +
                          "demonstrates,deploying,deployment,Depot," +
                          "described,describing,designed,destination," +
                          "destinations,detailed,Developed,developers," +
                          "developing,development,different,disconnected," +
                          "distributed,document,documents,doesn,draft," +
                          "driving,earlier,easily,e-business,ebXML," +
                          "e-commerce,edge,Edition,electronic,elements," +
                          "E-mail,emerging,encoded,encoding,Endpoint," +
                          "endpoint1,engagement,Enterprise,enterprises," +
                          "entities,entity,envelope,environment,evangelist," +
                          "example,exchange,exchanging,exclusively," +
                          "expedite,Expert,expressing,extended," +
                          "extensibility,extension,facto,factory,failure," +
                          "fashion,feature,Figure,file,filled,final," +
                          "Finally,first,flexible,following,framework," +
                          "future,gap,generating,geographical,getBody," +
                          "getEnvelope,getInitialContext,GetLastTradePrice," +
                          "getSOAPPart,getSupportedProfiles,GIF,given," +
                          "global,gltp,group,growing,guaranteed,hand," +
                          "handing,handler,handler1,header,heavy,helps," +
                          "Hence,here,Home,HTTP,hub,hubs,idea," +
                          "identification,identify,illustrated,image," +
                          "immediately,impetus,implement,implementation," +
                          "important,Inc,include,included,includes," +
                          "including,independent,indicate,industry," +
                          "industry-standard,industry-wide,info@sys-con," +
                          "information,infrastructure,initialize," +
                          "initialized,instance,instances,instead,insulate," +
                          "integrated,intended,interface,internal,Internet," +
                          "interoperability,interoperable,invoked,issues," +
                          "J2EE,J2SE,Java,Java-based,javax,JAXM," +
                          "JAXM-enabled,JMS,JNDI,knows,last,later,launch," +
                          "less,level,lieu,light,lightweight,line,lines," +
                          "list,location,logical,looked,lookup,loosely," +
                          "low-level,made,main/picture,major,majority,make," +
                          "many-to-many,mapped,mapping,marketplace,marks," +
                          "mechanism,mechanisms,Media,meet,member,message," +
                          "message1,MessageFactory,MessageFactory1," +
                          "messagefactory2,messages,Messaging,method," +
                          "methods,Microsoft,Microsystems,middleware,MIME," +
                          "minimum,model,models,move,moving,much,Multipart," +
                          "multiple,MyExchange,name,named,naming,narrowed," +
                          "necessary,need,needed,nested,new,newInstance," +
                          "next,note,nothing,notion,number,Object,objects," +
                          "obtain,obtained,occur,offers,often,one-way," +
                          "on-the-wire,operation,optional,order," +
                          "organizations,own,package,packaging,parameter," +
                          "parameters,parsing,part,Parties,partners,parts," +
                          "party,passed,passes,Perhaps,persistence," +
                          "persistent,personality,physical,plain,platform," +
                          "platforms,point-to-point,posed,powerful," +
                          "predefined,president,PRGS,primarily,procedure," +
                          "Process,produced,produces,profile,profile1," +
                          "Profiles,profile-specific,programming,Protocol," +
                          "Protocols,provide,provider,ProviderConnection," +
                          "ProviderConnectionFactory,providers,provides," +
                          "providing,Publications,range,rapidly,reading," +
                          "reason,receipt,receive,received,receiving," +
                          "recipient,recovery,redelivery,reference," +
                          "regarding,registered,Reilly,releases," +
                          "reliability,relies,remote,reply,represent," +
                          "represented,representing,represents,request," +
                          "required,requirement,requirements,requires," +
                          "response,responses,retrieve,retrieves,returned," +
                          "returns,robust,root,routines,RPC,rules,sbody," +
                          "scenarios,scheme,scrutiny,seems,semantics,send," +
                          "sender,sending,sends,sent,server,service," +
                          "services,servlet,shows,side,Simple,simpler," +
                          "simplest,single,size,SOAP,SOAP-based,SOAPBody," +
                          "SOAPBodyElement,SOAPConnection,SOAPEnvelope," +
                          "SOAPMessage,SOAPPart,Software,Sonic,sort,spart," +
                          "speak,specific,specification,specifications," +
                          "specified,specifies,specify,spend,standard," +
                          "standards,start,stated,States,step,stipulate," +
                          "String,subclass,success,successor,Sun,supply," +
                          "supplying,support,supported,supports,symbol," +
                          "synchronous,SYS-CON,system,systems,take," +
                          "technologies,technology,thought,three,time,top," +
                          "trademarks,transact1,transact2,transaction," +
                          "transactional,transmission,transport,truly,turn," +
                          "two,type,ultimate,underpinnings,United," +
                          "unreachable,URI,URL,URLEndpoint,usage,usages," +
                          "use,used,uses,using,value,vanilla,variety," +
                          "verification,via,vice,vision,W3C,Wal-Mart,way," +
                          "wide,wombat,work,woven,XML,XML-based,XML-RPC," +
                          "ztrade";
entry.item[35].page = "archives/0102/chappell/index.html";
entry.item[35].description = "JAXM: Interoperable SOAP Communications for " +
                             "the Java Platform";
entry.item[36].keywords = "ability,abstract,accessible,account,acrimonious," +
                          "added,addition,Additional,Africa,agree," +
                          "agreement,allow,allowed,allows,analogous,Apache," +
                          "application,applications,architectures,Ariba," +
                          "atoms,author,AXIS,B2B,bachelor,basic,battle," +
                          "believe,benefits,bigger,Bio,biology,bits,blast," +
                          "blessed,Born,bridging,brilliant,built,business," +
                          "buy,Calgary,call,called,calls,capable,case," +
                          "catalog,Cathedral,chasm,Clarke,closed,code," +
                          "coded,collection,com,commerce,communications," +
                          "communities,Compaq,competency,complex,composed," +
                          "computing,Conclusion,consume,conversations," +
                          "Copyright,CORBA,core,countries,crisp,critical," +
                          "cry,CSS,cup,customer,customers,customizable," +
                          "data,dealing,decide,de-couple,define,definition," +
                          "definitions,degree,desk,details,developer," +
                          "developers,development,different,discount," +
                          "discrete,distance,distributor,Division,doesn," +
                          "don,Durban,easily,easy,e-business,effect," +
                          "efforts,electronic,else,e-mail,employee,enable," +
                          "encodings,end,enter,entire,entry,equivalent," +
                          "Eric,espoused,essential,example,exchange," +
                          "exposed,figurative,find,First,fix,flaming,flows," +
                          "form,front,function,functions,generation,get," +
                          "getting,given,going,good,goods,got," +
                          "grower/manufacturer,hard,held,helpful,holds," +
                          "HTTP,human,hurdle,IBM,implementation," +
                          "Implementations,implies,Inc,inclined,includes," +
                          "including,incredulity,independent,info@sys-con," +
                          "information,Infrastructure,in-house,insanely," +
                          "instead,interaction,interface,interfaces," +
                          "international,Internet,Internet-friendly,invoke," +
                          "involvement,irrelevant,irrespective,isn,Java," +
                          "Java-based,know,knowledge,known,language,Last," +
                          "latter,leaves,likes,Likewise,listen,local,logic," +
                          "long-standing,look,made,make,manager," +
                          "manufacturer,manufacturer/distributor,marketing," +
                          "marks,marshallers/de-marshallers,matter," +
                          "meaningful,means,mechanism,Media,method,methods," +
                          "Microsoft,Microsystems,Middle,Middle-Mile,Mile," +
                          "mission-critical,molecular,morning,move,moving," +
                          "much,natural,necessary,need,needed,network," +
                          "never,new,next,Noel,noel@silverstream,n-tier," +
                          "objects,offerings,often,open,operated,operating," +
                          "option,ORB,order,OSS,own,owned,owning,partner," +
                          "partners,peer,physical,pieces,platform,players," +
                          "pluggable,popular,portions,positions,powerful," +
                          "probably,process,processes,product,programmers," +
                          "projects,proprietary,protocol,protocols,provide," +
                          "Publications,quite,rather,raw,Raymond,reasons," +
                          "regard,registered,registries,registry,relies," +
                          "rely,remote,remotely,representation," +
                          "representations,requirements,Reserved,reside," +
                          "response,responsibility,review,rift,Rights,run," +
                          "SAP,scathing,science,seems,seen,selection," +
                          "seminal,senior,service,services,shareable," +
                          "sharing,should,SilverStream,simple,small,SMTP," +
                          "SOAP,soft,software,Solution,source,South,sphere," +
                          "spread,Stack,standard,standards,started,States," +
                          "steaming,store,store/end,strategist,strive," +
                          "strongly,Sun,support,surrounding,SYS-CON,system," +
                          "systems,TCP/IP,tea,technical,technological," +
                          "think,thinking,three-tier,tools,trademarks," +
                          "trading,trains,transport,transportation," +
                          "transporting,travel,trivial,trucks,try,typed," +
                          "ubiquitous,UDDI,under,underlying,understand," +
                          "understood,United,University,use,used,user," +
                          "using,value,value-add,vendors,versus,waiting," +
                          "walk,wants,way,Web,whether,wire,won,work,works," +
                          "world,wouldn,WSDL,XML,xSchema";
entry.item[36].page = "archives/0102/clarke/index.html";
entry.item[36].description = "Atoms vs Bits and the Digital Middle Mile";
entry.item[37].keywords = "ability,adapters,adoption,agreed,agreement," +
                          "aimed,application,applications,approach,array," +
                          "Associates,Author,Babelfish-esque,based,BEA," +
                          "believe,binding,Bio,both,build,business,Cape," +
                          "CEO,certainly,chaining,Chappell,chief,City," +
                          "Clear,closed,com,combining,communicate,company," +
                          "compelling,Computer,computers,conference," +
                          "connect,connecting,consultant,Container,cool," +
                          "Copyright,core,countries,covered,create,CTO," +
                          "Dave,David,days,decades,definition,demonstrate," +
                          "demonstrated,demonstrating,deployment,design," +
                          "designed,desire,destined,developers,didn," +
                          "Dietzen,discovery,discussed,Division,DNS,domain," +
                          "Don,doomed,due,dynamic,EAI,easily,eCommerce," +
                          "editor-in-chief,effort,eight,E-mail,employed," +
                          "enables,English,enlightened,enterprises," +
                          "evangelist,example,exhibiting,expert,exposed," +
                          "exposition,Extend,fax,field,finally,fit,five," +
                          "floor,focused,Ford,forward,founder,free,French," +
                          "get,global,good,Gosling,got,having,idea,ignores," +
                          "Inc,included,including,independent,industry," +
                          "info@sys-con,information,inherently,insight," +
                          "International,internet,interoperability," +
                          "intrusion,J2EE,Java,Java-based,Jewell,Joe," +
                          "Journal,key,keynote,know,Later,latest,leading," +
                          "Leclair,legacy,leveling,likened,limited,line," +
                          "little,Litwack,Lobby,look,machine,made," +
                          "magnitude,make,marks,Media,memorable,Menard," +
                          "Microsoft,Microsystems,million,minds,minimal," +
                          "minutes,mixture,much,naturally,nature,network," +
                          "never,New,next,now,number,obtain,OMG,opinion," +
                          "opinionated,order,ourselves,packed,panel," +
                          "paradigm,Part,partners,people,per,performance," +
                          "play,playing,point,pointed,points,power,present," +
                          "presentation,prevailing,primarily,principles," +
                          "private,problem,product,proposition,provide," +
                          "public,Publications,put,quote,quotes,rather," +
                          "real,referred,registered,relationships,relies," +
                          "remarkable,removes,Reserved,respected,returned," +
                          "Rhody,Richard,Rick,ridiculous,Rights,Ross,saw," +
                          "Scott,Sean,sean@sys-con,security,seeing,seemed," +
                          "serve,server,service,services,session,share," +
                          "shift,Shinka,shop,show,SilverStream,simple," +
                          "simplification,simply,site,smaller,social," +
                          "software,Soley,Sonic,stack,States,Stay,stopped," +
                          "stuff,success,Sun,swift,SYS-CON,system,systems," +
                          "take,technical,technologies,technology,three," +
                          "tire,tires,tools,top,topic,topics,trademarks," +
                          "trading,traffic,transition,translate,trivial," +
                          "tuned,two,Tyler,UDDI,Unfortunately,United,usage," +
                          "used,useless,value,variety,vast,vendors,version," +
                          "vocal,wares,way,Web,WebGain,WebLogic,week," +
                          "widespread,work,world,York";
entry.item[37].page = "archives/0102/conference/index.html";
entry.item[37].description = "Web Services Edge 2001 - The Show Goes On";
entry.item[38].keywords = "$50-150,ability,abstracted,abstracting," +
                          "abstractions,access,accessible,accessing," +
                          "accommodates,accomplishing,account,achieve,add," +
                          "additional,additions,adopted,aggregate," +
                          "agreements,allow,allows,answer,APIs,apparent," +
                          "application,applications,approach,approaches," +
                          "archived,audit,authenticate,Author,automated," +
                          "avenue,average,B2B,back,back-end,based,Basic," +
                          "bean,beef,begin,beginning,best,Big,bill,billed," +
                          "billing,bills,binding,Bio,bite,Both,boxes," +
                          "breaks,browse,browsing,build,building,built," +
                          "business,cable,called,card,care,caring,case," +
                          "catalog,cataloging,catalogs,cause,cell,cellular," +
                          "challenge,challenges,change,changes,charger," +
                          "charges,client,code,coding,coherent," +
                          "collaboration,collaborations,com,commit," +
                          "committed,Community,companies,company,compare," +
                          "competition,complex,complexity,complicated," +
                          "component,components,computers,Computing," +
                          "Conclusion,connections,consider,considerable," +
                          "consume,consumer,consumers,consumption," +
                          "container,context,contexts,contract,contracted," +
                          "convenient,copy,Copyright,copyrights,CORBA," +
                          "corresponding,costly,countries,create,created," +
                          "creating,creation,credit,customer,customers," +
                          "customize,daemon,data,database,days,deal,debit," +
                          "decide,Decisions,define,defined,defines,deliver," +
                          "depicting,deployed,design,designer,desktop," +
                          "details,developer,developers,devices,Dias," +
                          "Different,differentiate,direct,discrepancies," +
                          "display,distinct,distribute,Distributed," +
                          "document,doesn,dollar,don,down,downloaded," +
                          "dreamed,drive,EAI,easily,easy,ebXML," +
                          "economically,effectively,effort,EJB,EJBs,E-mail," +
                          "EML,enable,enabling,encrypt,end,engine,Enormous," +
                          "ensure,enterprise,entity,environment,example," +
                          "exchange,exchanged,exciting,existed,existing," +
                          "exists,expect,expose,exposed,Exposing,exposure," +
                          "extensive,extremely,feasible,Figure,find,first," +
                          "five,fleshing,flexible,flow,flows,focus," +
                          "following,format,formatted,found,friend," +
                          "fulfillment,fully,function,functionality," +
                          "Further,future,get,give,go-round,hand,hand-code," +
                          "Handcoding,Hand-coding,handheld,happy,hiding," +
                          "higher,high-level,home,hosting,hypothetical," +
                          "identify,IDL,ignore,image,imagine,implement," +
                          "implementation,implemented,important,Inc," +
                          "incorporate,increases,independent,individual," +
                          "inexpensive,info@sys-con,information," +
                          "infrastructure,initiated,integrate,integration," +
                          "interface,interfaces,Internet,interoperate," +
                          "investment,IONA,isn,issue,issues,J2EE,Java," +
                          "Java-based,JAX,JNDI,joy,JSRs,justify,know,known," +
                          "label,labels,large,leads,legal,less,Let,level," +
                          "levels,leverage,leverages,likely,line,listen," +
                          "little,location,logging,logic,long,long-lived," +
                          "look,looking,lost,Macintosh,made,mail,main," +
                          "mainframe,maintain,major,makes,manager,managing," +
                          "manner,marks,Media,meet,message,messages," +
                          "messaging,Microsoft,Microsystems,minimize,model," +
                          "modify,monitor,monitoring,monthly,MP3,MP3s,much," +
                          "multiple,music,naming,necessary,need,needed," +
                          "needs,negligible,negotiating,negotiation,NET," +
                          "network,never,new,nontrivial,non-trivial,nor," +
                          "notifies,number,Object,objective,Objects," +
                          "obtaining,occurs,offer,Often,order,Ordering," +
                          "organizations,original,originates,overall," +
                          "packaged,pages,paginate,Paradigms,parameters," +
                          "part,parties,partner,partnership,party,pass," +
                          "passed,passes,passing,pay,payment,people,per," +
                          "performance,persistence,persistent,perspective," +
                          "phone,phones,pipe,place,platform,platforms,POA," +
                          "point,points,policies,portable,portal,portals," +
                          "possibility,possible,potentially,prebuilt," +
                          "present,presented,price,primarily,primary," +
                          "Problem,problems,process,processes,product," +
                          "profit,programmatic,programmatically,proper," +
                          "properly,prove,provide,provided,Publications," +
                          "purchase,purchased,purchasing,qualities," +
                          "quarterly,questions,quickly,rdias@iona,reach," +
                          "real,realistic,reality,realize,real-world," +
                          "Rebecca,receipt,received,receives,refactoring," +
                          "referred,regarding,registered,registries," +
                          "registry,relationship,remote,represent," +
                          "repurpose,require,required,requirements," +
                          "requires,requiring,Reserved,resources," +
                          "restructuring,results,retrieve,revenue,Rights," +
                          "ROI,rolled,RPCs,runtime,S2ML,SAP,satisfy," +
                          "scalability,scalable,scale,scratch,searching," +
                          "secure,secured,security,seen,select,selects," +
                          "selling,semantics,send,sends,sense,Serialized," +
                          "servants,server,server-side,service,Services," +
                          "servicing,session,shared,shop,short-lived," +
                          "should,shouldn,simple,simply,single,site,snail," +
                          "SOAP,solution,solve,song,songs,speak,specifies," +
                          "SSL,standard,standards,Starting,starts,state," +
                          "stateful,stateless,States,steps,still,stream," +
                          "structure,subset,Sun,switch,SYS-CON,system," +
                          "systems,tackle,take,takes,Taking,taught," +
                          "technical,technologies,technology,Telco,telecom," +
                          "thing,think,thinking,third,threading,tie,tied," +
                          "time,time-consuming,times,too,Tools,touch," +
                          "trademarks,trader,trail,transaction," +
                          "Transactional,transactions,transformation," +
                          "transforming,translating,translation,traverse," +
                          "turn,two,two-phase,type,types,UDDI,unable," +
                          "underlying,understood,unfeasible,United," +
                          "unmanageable,upgrade,use,used,users,using," +
                          "vacation,variant,vendor,vendors,via,Visual," +
                          "wants,way,ways,Web,well-understood,weren," +
                          "Whereas,Windows,won,wouldn,years";
entry.item[38].page = "archives/0102/dias/index.html";
entry.item[38].description = "Web Services: Enabling Technology or New " +
                             "Programming Paradigm";
entry.item[39].keywords = "ability,acceptable,access,accesses,accessing," +
                          "accurate,achieved,achieving,acquire,acts,added," +
                          "addition,additional,Additionally,address," +
                          "advance,advancement,advantageous,aggregated," +
                          "aggregation,agree,aim,alliance,alliances,allow," +
                          "allowing,allows,analyst,anonymous,applicable," +
                          "approach,approaches,appropriate,aren,arriving," +
                          "article,aspects,assessments,assign,associated," +
                          "association,attempt,attractions,attractiveness," +
                          "audiences,Author,automate,automated," +
                          "automatically,automating,automation,automotive," +
                          "avenue,award,awarded,back,balance,band,base," +
                          "based,basic,basis,behalf,behind,benefit,bind," +
                          "binding,Bio,Bloomberg,boundaries,broker,burdens," +
                          "business,businesses,business-specific,Cacheon," +
                          "capabilities,capital,capitalize,capture,care," +
                          "carry,case,center,centers,certain,change," +
                          "channels,check,chosen,clear,clearly,clusters," +
                          "coherent,collection,com,combined,comfort,coming," +
                          "commerce,commercial,commercialization," +
                          "commodities,community,Companies,company," +
                          "competencies,com-petencies,complete,complex," +
                          "complexities,compliant,compromise,computer," +
                          "computing,concerns,Conclusion,conduct,connected," +
                          "connecting,Consider,consortium,constantly," +
                          "contact,containing,content,context,contribute," +
                          "control,controlled,conversations,converted," +
                          "converting,Copyright,core,corporate,costly," +
                          "costs,couldn,countries,create,criteria,critical," +
                          "CTO,Darren,data,database,databases," +
                          "data-unifying,dawn,decide,deciding,de-couple," +
                          "de-coupling,define,delegate,delivered," +
                          "delivering,demand,demand-driven,depending," +
                          "deposited,describe,described,Description,Design," +
                          "details,develop,developed,dgovoni@metadapt," +
                          "diametric,dictionary,different,difficult,direct," +
                          "disaggregated,Discovery,discuss,discussed," +
                          "discussion,disparate,distributed,distribution," +
                          "distributors,dividends,documents,doesn,don," +
                          "dormant,duplicated,duties,duty,dynamic," +
                          "dynamically,e-businesses,ebXML,economic,effect," +
                          "effective,effectively,efforts,electronic," +
                          "elsewhere,E-mail,e-mails,emerge,employed," +
                          "enables,encapsulate,enforce,engines,enhanced," +
                          "enhances,ensure,enter-operate,enterprise," +
                          "Enterprises,entities,entity,entries,especially," +
                          "establish,establishing,establishment,etc," +
                          "evolution,example,exchange,exclusive," +
                          "exclusively,execute,exist,existed,expect," +
                          "expertise,explores,expose,exposure,extent," +
                          "external,externalization,extracting,extranet," +
                          "extranets,facilities,fact,falls,fee,feedback," +
                          "fees,few,Figure,Financial,find,finder," +
                          "fine-grained,flow,form,formatted,formatting," +
                          "Fortunately,founder,freely,front-end,front-ends," +
                          "Furthermore,gather,gathered,gathering,general," +
                          "get,given,gives,glue,goal,going,governing," +
                          "Govoni,greater,group,hand,handle,hardware," +
                          "having,health,here,hides,high-volume,hone,host," +
                          "housed,housing,human,idea,identify,identity," +
                          "implementation-independent,Importance,important," +
                          "improves,Inc,incentives,including,increase," +
                          "increasing,independent,indicate,individual," +
                          "individuals,industry,info@sys-con,information," +
                          "infor-mation,infrastructure,infrastructures," +
                          "Integration,intelligence,intend,interaction," +
                          "interbusiness,intercompany,interconnected," +
                          "interest,interesting,interface,interfaces," +
                          "interfacing,internal,internally,Internet," +
                          "interoperable,interoperate,intranet,introduced," +
                          "inventory,inverse,involved,involves,issue," +
                          "issues,Java,Java-based,join,Journal," +
                          "justification,justify,kinds,know,known,language," +
                          "large,later,latter,lead,let,levels," +
                          "Lexxus/Nexxus,locations,looking,low,lure," +
                          "maintain,maintained,maintenance,make,manage," +
                          "management,managing,manner,market,markets,marks," +
                          "Markup,marts,mass,masses,match,meanings,means," +
                          "meant,mechanism,media,meet,member,members," +
                          "messages,Metadapt,metadata,metalanguage,method," +
                          "methods,metropolitan,Microsystems,mined,mix," +
                          "model,models,modus,monetization,monetizing,much," +
                          "multiple,multiplied,natural,naturally,necessary," +
                          "need,needed,needs,network,networks,Nonetheless," +
                          "nonsensitive,nor,normalizing,Nothing,now,number," +
                          "numerous,objective,obtained,occurs,oddly,offer," +
                          "offerings,often,on-demand,online,ontologies," +
                          "operandi,operate,organizations,outside,outsider," +
                          "outsourcing,overcome,own,owners,pages,part," +
                          "participate,participation,parties,partners," +
                          "partnership,passive,payments,periodic," +
                          "periodically,permissions,permit,permits," +
                          "permitting,picture,pieces,place,platform," +
                          "platforms,policies,policy,poll,Popular," +
                          "possibility,practical,precisely,presence," +
                          "presented,prevented,primary,proactively,problem," +
                          "process,processes,produce,profitability,profits," +
                          "program,promote,protected,protects,protocol," +
                          "protocols,provide,provided,provider,Providers," +
                          "provides,providing,provisioned,provisioning," +
                          "proxy,Publications,publish,publishing,pull," +
                          "pushing,qualified,queries,racing,rapidly,rather," +
                          "raw,reap,reasons,receive,re-distributed," +
                          "re-distribution,refer,referral,referring," +
                          "regarding,regardless,region,registered,registry," +
                          "relies,remains,repair,repositories,repository," +
                          "representation,requests,require,research," +
                          "researching,Reserved,resources,responsibilities," +
                          "restrict,results,retrieve,retrieved,Reuters," +
                          "revenue,reward,rich,Rights,role,routinely,run," +
                          "safe,sake,scalable,scaling,Scenario,schemas," +
                          "scope,seamless,search,searchable,searches," +
                          "searching,sectors,secure,security,seek,seekers," +
                          "seen,segregated,self-described,semantic," +
                          "semantically,semantics,sensitive,separate," +
                          "separation,service,services,sets,share,shared," +
                          "sharing,shields,shown,simply,single,situation," +
                          "SOAP,software,sold,sorted,source,sources," +
                          "special,specific,Specifically,sponsor,sponsors," +
                          "spontaneous,standards,States,stations,stems," +
                          "strategic,Street,strong,stymied,subscribe," +
                          "subscribers,subscribing,subscription,Sun," +
                          "sundown,supplies,suppose,sustainable,syndicate," +
                          "syndicates,syndication,SYS-CON,system,systems," +
                          "tailored,takes,tangible,tap,targeted,technical," +
                          "technologically,technologies,Technology,term," +
                          "terms,therein,time,tire,tires,toll,too," +
                          "trademarks,traditional,Traditionally,transact," +
                          "transacted,transactions,transmissions,trends," +
                          "trick,turn,turned,two,twofold,UDDI,understand," +
                          "United,Universal,updated,up-to-date,usable,use," +
                          "used,useful,user,users,using,utilizing,valuable," +
                          "value,valued,variety,vast,vehicle,vertical," +
                          "verticals,via,viability,view,virtual," +
                          "volume-driven,volumes,Wall,warehouse," +
                          "Warehousing,way,ways,weathering,Web,Webs," +
                          "Whenever,whether,work,works,WSDL,XML,XML-based," +
                          "years";
entry.item[39].page = "archives/0102/govoni/index.html";
entry.item[39].description = "Information Syndication Using Web Services";
entry.item[40].keywords = "a-1231-483f,a318f871-bd15-4c5b," +
                          "a4b9-36104341ba78,a74-7c01383771b7,abstract," +
                          "Access,accessed,accessPoint,ACE1-8584D43B7703," +
                          "activities,address,addressed,addresses," +
                          "advantages,agree,Airport,airports,allow," +
                          "allowing,allows,American,Andy,api,appear," +
                          "application,Applications,article,associated," +
                          "assume,Author,authorizedName,automatically," +
                          "based,Basics,behind,bigger,binding,bindingKey," +
                          "bindingTemplate,bindingTemplates,Bio,both," +
                          "building,business,businessEntity,businesses," +
                          "businessKey,businessService," +
                          "c0b9fe13-179f-413d-8a5b,c1acf26d,c1acf26d-9672," +
                          "c1acf26d-9672-4404-9d70-39b756e62ab4,c48719," +
                          "c48719-52dc-49d2,capabilities,Cape,CapeScience," +
                          "Categorization,categorized,categoryBag," +
                          "cate-goryBag,centralized,change,Check,Checks," +
                          "classification,classifications,classified,Clear," +
                          "client,cloud,Code,cofounded,collection,com," +
                          "com/AirportWeather,com/ccgw/GWXmlServlet," +
                          "com/discoverybusinessKey,com/uddi,combination," +
                          "companies,company,compatible,concept,Conclusion," +
                          "confusing,connect,connecting,consumers,contacts," +
                          "contains,context,contexts,contractual,contrary," +
                          "Copyright,CORBA,core,Corporation,countries," +
                          "covered,create,creation,d70-39b756e62ab4," +
                          "d8d19e88,d-902468790f8c,data,database,db8e5bb2," +
                          "dc-49d2-9a74-7c01383771b7,DCOM,defined,defines," +
                          "definition,demonstrates,depart,depending," +
                          "describe,described,describing,Description," +
                          "designed,detailed,details,developed,developer," +
                          "dialect,different,differs,discover,discovered," +
                          "Discovery,DNS,document,documents,docu-ments," +
                          "D-U-N-S,e49a8d6-d5a2-4fc2-93a0," +
                          "E4B4CDA-3448-4B88," +
                          "E4B4CDA-3448-4B88-ACE1-8584D43B7703,E-mail," +
                          "enable,enabling,encoding,endpoint,ensure," +
                          "entities,entity,entries,entry,environments," +
                          "equivalent,example,existing,experience,expose," +
                          "extensive,f-a4b9-36104341ba78,file,find," +
                          "find_tModel,finite,firewall,first,format,four," +
                          "fragment,framework,Fundamentals,general,generic," +
                          "geo,given,good,graphic,great,Green,Grove," +
                          "GROVE@capeclear,guaranteed,head,hosted,HTTP," +
                          "human,IBM,Identification,identified,Identifier," +
                          "implement,implementation,implementations," +
                          "implementation-specific,implies,important,Inc," +
                          "include,including,independent,industry," +
                          "info@sys-con,Information,infrastructure," +
                          "instance,instanceDetails,instanceParms,Instead," +
                          "Integration,interaction,interface,internal," +
                          "international,Internet,intranet,intranets," +
                          "Introducing,invoking,isn,ISO3166,Issue,issues," +
                          "J2EE,Java,Java-based,key,keyedReference,keyName," +
                          "keyValue,know,lang,language,languages,likely," +
                          "limit,list,listed,listing,lists,locate,location," +
                          "logically,look,main,make,making,manager,marks," +
                          "maxRows,meaning,Media,message,Microsoft," +
                          "Microsystems,minimize,multiple,NAICS,name," +
                          "nameAirport,nameCape,namespace,name-value," +
                          "nature,needs,new,next,North,now,number,numbers," +
                          "Object,object-oriented,offered,offers,office," +
                          "operations,operator,operators,Orbware,org," +
                          "org/2001,org/2001/XMLSchema,organizations," +
                          "overviewDoc,overviewURL,Pages,pain,pair," +
                          "paradigm,parameters,perhaps,platform,play,point," +
                          "pointing,private,problems,product,products," +
                          "programmatic,proliferation,Protocol,protocols," +
                          "provide,provided,provides,public,Publications," +
                          "publish,published,Publishers,publishing,purpose," +
                          "queried,Quote,rather,real-world,refer,reference," +
                          "references,referred,referring,register," +
                          "registered,Registering,relationships,replicated," +
                          "repositories,repository,represent,represented," +
                          "representing,represents,request,Reserved," +
                          "resulting,Rights,RMI,role,roughly,rules,Runtime," +
                          "sample,saw,scope,searches,section,seen," +
                          "separation,server,service,serviceKey,services," +
                          "short,should,shown,shows,Simple,simply,site," +
                          "sites,SMTP,SOAP,Software,solve,Source," +
                          "specification,specifications,standard," +
                          "standardized,standards,starting,States,step," +
                          "still,Stock,structure,structures,Sun,supported," +
                          "supporting,SYS-CON,system,systems,Table," +
                          "taxonomies,taxonomy,technical,techniques," +
                          "technology,telephone,template,templates,term," +
                          "terms,three,tModel,tModelInstanceDetails," +
                          "tModelInstanceInfo,tModelKey,tModelKeys,tModels," +
                          "tools,trademarks,truly,two,type,types,UDDI," +
                          "uddi-org,understand,understanding,Unique,United," +
                          "Universal,Universally,unlikely,UNSPC,URL," +
                          "URLType,urn,usable,use,used,usefulness,uses," +
                          "using,UUID,valid,validity,value,values,vendor," +
                          "vendors,Vol,way,Weather,Web,White,write,WSDL," +
                          "wsdlSpec,WSJ,www,wwwlcapescience,xments,XML," +
                          "XML-based,xmlns,XMLSchema-instance,xsd,xsi," +
                          "Yellow";
entry.item[40].page = "archives/0102/grove/index.html";
entry.item[40].description = "Understanding UDDI tModels and Taxonomies";
entry.item[41].keywords = "ability,accept,acceptance,accepted,accessible," +
                          "accomplished,accustomed,achieve,achieved," +
                          "achieving,acquisitions,adopt,adoption,adult," +
                          "alternatives,amount,angle,application," +
                          "applications,architect,areas,Author," +
                          "availability,B2B,background,bandwidth,base," +
                          "based,basic,begin,Beginning,behind,belabor," +
                          "beneficial,best,best-of-breed,Bio,both,bought," +
                          "BPML,breakthroughs,bring,browser,business," +
                          "businesses,capabilities,capability,cases,chain," +
                          "challenge,chance,change,changed,changes,chief," +
                          "choice,clear,climate,code,collaboration," +
                          "collaborative,COM,Combine,combined,commerce," +
                          "commonly-accepted,communication,companies," +
                          "compatible,compelling,compete,components," +
                          "concept,concepts,consider,Consulting,consumer," +
                          "conversations,Copyright,cost,counted,countries," +
                          "create,created,creates,critical,cross-platform," +
                          "CSC,cutting-edge,day-to-day,dealt,Decisions," +
                          "deliver,demanded,demonstrated,describe," +
                          "described,Description,design,desire,determined," +
                          "developed,developer,development,dictate," +
                          "direction,disconnect,discussed,doesn,driver," +
                          "drivers,drove,due,e-business,e-commerce,EDI," +
                          "efficiencies,efficiency,efficient,elsewhere," +
                          "E-mail,emerged,emergence,emerging,enterprise," +
                          "Enterprises,environment,escalating,essence," +
                          "established,event,example,existed,existing," +
                          "exists,expect,extend,extension,externally,few," +
                          "field,finally,First,focused,focuses,force," +
                          "forward,foundation,freedom,frequent," +
                          "functionality,functions,further,given,goal," +
                          "grasped,greater,ground,Group,growing,growth," +
                          "hardware,here,hold,host,impact,implement," +
                          "important,importantly,impossible,Inc,included," +
                          "increased,increasing,increasingly,independence," +
                          "independent,industry,info@sys-con,interest," +
                          "interested,interface,internally,Internet," +
                          "intrusive,invented,investment,J2EE,Java," +
                          "Java-based,Karecki,large,layer,Leave,lecturer," +
                          "less,level,light,limited,little,longer," +
                          "long-held,look,looking,luck,make,making,map," +
                          "marks,matured,means,Media,meet,Microsoft," +
                          "Microsystems,model,modified,modular,move,moved," +
                          "moves,name,need,needed,needs,negative,Net," +
                          "networked,never,new,now,number,Object-oriented," +
                          "offer,offered,often,opened,operating," +
                          "opportunities,organizations,origination,own," +
                          "owned,paradigm,paradigms,part,parties,partner," +
                          "partners,past,path,Performance,performed,Phil," +
                          "PKARECKI@CSC,place,platform," +
                          "platform-independent,platforms,playing,point," +
                          "popular,possibilities,possible,potential," +
                          "powerful,presents,primary,primed,process," +
                          "processes,provided,Publications,purely,purposes," +
                          "puts,quirks,rather,reach,reached,real,reasons," +
                          "reduced,regardless,registered,reliability," +
                          "remained,remains,required,Reserved,resposible," +
                          "review,Revolution,Rights,risk,robust,roots,run," +
                          "scalability,Second,sector,seen,self-inflicted," +
                          "sell,separate,service,services,services-based," +
                          "shape,shed,short,should,significant,simple," +
                          "single,sites,slow,SOAP,sold,solution,soon," +
                          "specific,speed,stand,standard,standardized," +
                          "standards,States,Subjects,succeed,success," +
                          "suffered,Sun,supply,support,swapped,syndrome," +
                          "SYS-CON,system,systems,Table,talking,tech," +
                          "technologically,technologies,technology," +
                          "tendency,term,terms,theory,things,Think,three," +
                          "tied,took,tool,tools,trademarks,trend,trends," +
                          "true,truly,Try,two,UDDI,under,understand," +
                          "understood,United,Updates,usage,use,users," +
                          "variety,viable,view,viewed,vision,way,Web,weren," +
                          "wherever,Whether,widely,willing,willingness," +
                          "withstanding,work,worked,working,world,wouldn," +
                          "write,written,wrote,WSUI,XML,years";
entry.item[41].page = "archives/0102/karecki/index.html";
entry.item[41].description = "Web Services Fundamentals: From Whence It Came";
entry.item[42].keywords = "ability,access,accessed,accessible,accurate,act," +
                          "adaptable,add,adding,addition,address,addresses," +
                          "adopted,advantage,advisory,aggregation,agile," +
                          "agreed-upon,agreements,allow,allowed,allowing," +
                          "allows,appealing,application,Applications," +
                          "applied,appropriate,architect,architecture,area," +
                          "article,articles,aspects,assembled,assets," +
                          "associated,assuming,Author,automate," +
                          "automatically,automation,back-end,bandwidth," +
                          "based,basic,battle,begin,benefit,benefits," +
                          "best-of-breed,Bio,blocks,board,books,both," +
                          "boundaries,box,broad,browse,browser,browsers," +
                          "budget,build,builders,building,built,business," +
                          "businesses,business-to-consumer,busload,buy," +
                          "capabilities,capitalize,case,catalog,catalogs," +
                          "central,certain,chain,chains,changing,Classes," +
                          "client/server,climate,closer,COBOL,code,COM," +
                          "combination,combined,combines,committee," +
                          "companies,company,competitive,complete,complex," +
                          "complexity,complimentary,component," +
                          "component-based,components,comprehensive," +
                          "computing,concept,concepts,concerned," +
                          "conferences,conflicting,confusion,connected," +
                          "consider,considering,consumed,content," +
                          "content-based,content-centric,Content-Rich," +
                          "contract,contracts,controlled,Copyright,core," +
                          "corporation,corporations,costs,countries," +
                          "coupled,create,created,creating,creation," +
                          "criteria,critical,CRM,crucial,customer," +
                          "customers,data,databases,data-centric,deal," +
                          "deals,decade,defined,delivered,delivery," +
                          "department,depend,deploy,deployed,deployment," +
                          "described,descriptors,details,develop,developed," +
                          "Developer,development,device,devices,different," +
                          "Dif-ferent,directors,discard,disconnected," +
                          "discovered,Discovery,discussion,distinguished," +
                          "distributed,distribution,document,Documentum," +
                          "domain,down,drive,driven,Due,dynamic," +
                          "dynamically,Earlier,easily,easy,e-business," +
                          "ebXML,economic,economy,eContent,ecosystem," +
                          "eco-system,effectively,efficiencies,EJBs,E-mail," +
                          "embrace,emerged,employees,enable,enables," +
                          "Enabling,encapsulated,enterprise,enterprises," +
                          "entire,environment,e-procurement,ERP,essence," +
                          "events,eventual,ever-changing,evident,evolution," +
                          "evolve,evolved,examine,example,examples," +
                          "exchange,exist,existing,explosive,expose," +
                          "exposed,exposing,extend,extended,Extending," +
                          "extent,external,extremely,facing,faster,few," +
                          "Figure,fill,financial,find,flows,forming,forth," +
                          "foundation,foundations,four,freely,front-end," +
                          "fulfill,full,fully,function,functionality," +
                          "functions,gave,generation,get,GIF,given,global," +
                          "glue,goal,going,good,grew,growth,happened,hard," +
                          "having,heard,heart,higher,highlight,hosted,HTTP," +
                          "huge,human,human-based,hundreds,illustrate," +
                          "images,impact,implementations,implemented," +
                          "importance,important,importantly,inbox,Inc," +
                          "include,incorporated,increased,increasing," +
                          "incurred,independent,indispensable,industry," +
                          "info@sys-con,information,infrastructure," +
                          "in-house,initially,installed,Instead,integrate," +
                          "integrating,integration,integrations," +
                          "integrators,intelligence,interact,interaction," +
                          "interactions,interenterprise,interestingly," +
                          "interface,interfaces,internal,Internet," +
                          "interoperability,intra,intraenterprise," +
                          "introductory,investment,investments,invoke," +
                          "invoked,invoking,involve,involved,involves," +
                          "isolation,issues,J2EE,Java,Java-based,JPEG," +
                          "Kearns,key,language,large,largely,last,leads," +
                          "legacy,legal,let,level,levels,leverage," +
                          "leveraging,likely,lists,little,loath,logic,long," +
                          "longer,look,looked,loosely,machine-to-machine," +
                          "made,magazine,main,mainframe,mainly,major,makes," +
                          "manage,managed,management,managing,manner," +
                          "manual,market,marks,mechanism,Media,meet,member," +
                          "merges,merging,Microsystems,mind,misleading," +
                          "model,models,money,move,moving,much,multiple," +
                          "name,natural,nature,need,needs,negotiation,NET," +
                          "network,networked,neutral,never,new,Next," +
                          "next-generation,norm,notion,now,nowadays,number," +
                          "OASIS,object-oriented,occurs,offer,offering," +
                          "offerings,offers,often,online,open,operational," +
                          "opportunities,ORG,organizations,overall,own," +
                          "pace,part,participant,participate,parties," +
                          "partners,partnerships,party,pay-per-service," +
                          "pay-per-usage,PDF,person,personalized,PIP,PIPs," +
                          "platform,plenty,plug-and-play,plugged,poll," +
                          "popular,portal,portals,portlet,portlets," +
                          "potential,power,Powering,pressing,pricing," +
                          "primarily,problems,process,process/workflow," +
                          "processes,produce,product,products,programmatic," +
                          "programmers,programming,provide,providers," +
                          "providing,Publications,publish,published," +
                          "publishing,pushing,questions@documentum,quickly," +
                          "Quite,quote,radius,rapid,rapidly,rather,ratings," +
                          "RDBMS,read,readily,real,realization,realized," +
                          "reasons,recap,recognized,reducing,reduction," +
                          "regardless,registered,registries,registry," +
                          "relation,released,remain,remotely,reports," +
                          "represent,representative,represents,required," +
                          "requirements,research,Reserved,resides,resolved," +
                          "respects,responses,responsible,restaurants," +
                          "result,revolution,revolutionize,RFP,RFPs,rich," +
                          "Rights,role,roles,RosettaNet,RossettaNet,run," +
                          "sales,scalability,scalable,scale,Scenarios," +
                          "schema,seamless,seamlessly,search,seen,select," +
                          "self-contained,sell,semi-conductor,separation," +
                          "server,servers,service,services,ser-vices," +
                          "services-based,She,shortage,show,simple,site," +
                          "sites,size,SKUs,SOAP,software,solutions,solve," +
                          "SOP,sources,spanning,specifications," +
                          "spokesperson,stack,Stage,standard,standards," +
                          "standpoint,started,States,step,still,stock," +
                          "strategy,streamlining,structured,subscribed," +
                          "subscriptions,substantial,Sun,suppliers,support," +
                          "supports,SYS-CON,system,systems," +
                          "system-to-system,take,technology," +
                          "telecommunication,tell,text,think,third," +
                          "third-party,thought,tighter,time,trademarks," +
                          "traditional,transformation,transformed," +
                          "translation,travel,two,types,UDDI,ultimate,Una," +
                          "understandable,unified,United,UNIX,unless," +
                          "Unparalleled,unstructured,updates,up-to-date," +
                          "usage,use,used,useful,user,users,using,value," +
                          "value-added,Vendors,versioning,view,vital,W3C," +
                          "Web,WebTop,Windows,wiring,word,work,workflow," +
                          "World,written,WSDL,XCBL,XML,year,years";
entry.item[42].page = "archives/0102/kearns/index.html";
entry.item[42].description = "Content Management & Web Services";
entry.item[43].keywords = "acceptable,access,achieving,adaptable," +
                          "Additionally,address,ads,advantage,advice," +
                          "agents,America,application,area,areas," +
                          "assessment,attracting,Author,auto-body," +
                          "Automotive,Avoid,base,based,began,beginning," +
                          "believed,benchmarking,benefits,best,big,Bio," +
                          "body,Bowstreet,brand,branding,brands," +
                          "brand-targeted,bring,bringing,broad-reaching," +
                          "build,building,built,business,businesses,call," +
                          "capability,capture,car,catching,Catherine," +
                          "challenge,Challenges,characteristics,charted," +
                          "charts,chemistry,chose,Classified,clear," +
                          "clerical,clients,Closely,Coatings,code," +
                          "collision,color,com,combination,coming," +
                          "communicating,companies,company,competitive," +
                          "competitors,complex,compliance,Computer," +
                          "concerns,concurrent,connecting,considerable," +
                          "considering,consists,constituents,Construction," +
                          "consultants,content,context,continents,control," +
                          "converge,Copyright,Corporation,cost," +
                          "cost-effectively,costs,countries,create," +
                          "creating,critical,CSC,custom,customer,Customers," +
                          "customizable,customization,customized,cutting," +
                          "Data,day,December,decided,decisions,Decrease," +
                          "deliver,deployments,Designing,desire," +
                          "determining,developers,development,didn," +
                          "different,differentiation,Directory,disparate," +
                          "dispersal,disposing,distributing,distributor," +
                          "distributors,divided,documentation,down,DPC," +
                          "DuPont,early,easier,easy,e-business,e-commerce," +
                          "economy,efficiencies,efficient,effort,efforts," +
                          "electronically,eliminating,e-mail,employ," +
                          "employees,employment,enabled,enterprise,ERP," +
                          "especially,Europe,evaluated,ever-growing," +
                          "exception,expectancy,expects,expertise,F500," +
                          "face,faced,Factory,fax,final,financial,find," +
                          "Finishes,firm,first,five,flexible,focus,focused," +
                          "forced,formed,found,foundation,frequently,fully," +
                          "functional,future,fuzzy,global,globally,GmbH," +
                          "goal,going,got,grew,hardware,hardwire,having," +
                          "Hecker,held,help,Herberts,Hewlett-Packard,high," +
                          "highly,holds,ideal,impractical,improvement,Inc," +
                          "include,including,increased,increasingly," +
                          "independent,Industrial,industry," +
                          "industry-leading,info@sys-con,information," +
                          "infrastructure,initial,initiative,initiatives," +
                          "Ink,inks,input,instant,Intangible,interest," +
                          "Internal,Internet,investment,iPlanet,isn,issues," +
                          "Java,Java-based,Jet,keying,kind,large,largest," +
                          "late,leading,leaner,led,legal,levels,leverage," +
                          "life,line,links,live,localized,long,long-term," +
                          "loyalty,maintain,major,managed,management," +
                          "manager,managers,managing,mandatory,manuals," +
                          "manufacturer,manufacturers,March,Marchand," +
                          "MARCHAND@USA,market,marketed,marketing,markets," +
                          "marks,mass,mass-production,materials,Media," +
                          "Meeting,method,Michigan,Microsystems,models," +
                          "move,multiple,Nason,need,needed,needs," +
                          "NetBusiness,new,news,next,North,now,numerous," +
                          "obsolete,OEM,offer,one-way,online,operating," +
                          "operations,ordering,orders,organization," +
                          "original,own,paint,paper,partner,partners," +
                          "paybacks,people,Performance," +
                          "performancecoatingsdupont,personal,personnel," +
                          "phone,plan,planning,plans,platform,Plus,point," +
                          "portal,portals,position,positions,possible," +
                          "potentially,Powder,Practice,practices," +
                          "preferences,present,printing,privacy," +
                          "problem-fixing,Product,products,professional," +
                          "profile,programmers,programming,promotions," +
                          "Properly,proved,provide,provides,providing," +
                          "Publications,quickly,rank,rapidly,rather,real," +
                          "recognize,recognizes,reducing,Refinish," +
                          "refinishing,regional,registered,registration," +
                          "regulatory,related,relationships,releases," +
                          "relies,relieving,rely,remained,repair,required," +
                          "requirements,requiring,research,Reserved," +
                          "resource,resources,respond,responsible,result," +
                          "Rights,road,runs,safety,sales,saving,savings," +
                          "scalability,Scale,schedules,Sciences,scoped," +
                          "second-largest,security,selected,sells," +
                          "sensitive,September,Server,servers,service," +
                          "services,several,she,Sheets,shops,significant," +
                          "simple,simultaneously,single,skilled,slightly," +
                          "solidify,solution,solutions,specialties," +
                          "specific,Spies,sports,Standox,standpoint," +
                          "starting,States,stock,strategic,strategies," +
                          "strategy,strong,stronger,strongly,Sun,supplier," +
                          "support,SYS-CON,system,Systems,take,targeted," +
                          "team,technical,technology,time,timely,tool," +
                          "tools,trademarks,training,tuned,turned,two-way," +
                          "Ultimately,understand,underway,unique,unit," +
                          "United,units,University,updates," +
                          "up-to-the-minute,use,user,users,using,valuable," +
                          "value,variety,vendor,view,views,vigilant,wanted," +
                          "wants,weather,Web,Web-based,week,Well-Planned," +
                          "work,world,world-renowned,worldwide,www,XML," +
                          "years";
entry.item[43].page = "archives/0102/marchand/index.html";
entry.item[43].description = "Connecting to Customers with Web Portals";
entry.item[44].keywords = "accepted,ACID,address,addressing,adoption," +
                          "affects,afford,aggregate,aggregated,agreed," +
                          "agreements,annoying,anonymous,APIs,appearance," +
                          "application,applications,apply,approaches," +
                          "architected,aren,arena,ask,aspects,Assertions," +
                          "assessments,associated,Atomicity,attributes," +
                          "authentication,Author,availability,B2B,back," +
                          "backup,beginning,behaved,believe,best,Bio,bit," +
                          "Biztalk,board,boundaries,BPMI,break,broadly," +
                          "browser,build,building,Business,buy-and-own," +
                          "call,calling,calls,card,care,carefully,case," +
                          "category,cell,Certainly,chain,change,charge," +
                          "charging,check,code,collection,colors,COM," +
                          "coming,commit,commits,community,companies," +
                          "company,compensating,complete,complex," +
                          "complexity,component,components,concerned," +
                          "confines,consider,Consistency,consists," +
                          "consortia,contain,content,control,controlled," +
                          "convinced,copy,Copyright,core,corporate,costly," +
                          "countries,coupled,coupling,covered,credit," +
                          "critical,customers,data,databases,DataChannel," +
                          "dawn,days,deal,dealing,declaring,defined," +
                          "deliver,delivering,delivery,deployed,deployment," +
                          "described,describing,descriptions,designed," +
                          "designers,develop,devices,difficulty,dig," +
                          "directors,disconnect,discos,discovery,discrete," +
                          "dispersed,distinguish,distribute,Distributed," +
                          "doesn,don,doomed,driven,drugs,Durability," +
                          "dynamic,dynamically,easier,easily,easy," +
                          "e-business,ebXML,economy,EDI,editor,efforts,EJP," +
                          "electronic,else,E-mail,e-marketplaces,emerge," +
                          "Emerging,enabled,engines,ensure,enterprise," +
                          "Enterprises,entire,entities,entity,environments," +
                          "error-handling,especially,etc,events,everyday," +
                          "evidenced,Examples,exception,exchange,excited," +
                          "exciting,execute,exist,existing,experience," +
                          "expert,explicitly,extend,extended,Extending," +
                          "externalized,extranet,fail,fast,few,figure," +
                          "finally,find,finding,first,fix,focus,follow," +
                          "following,fonts,format,forms,forth,founding," +
                          "full,future,Generation,geographically,get,gets," +
                          "getting,glue-code,goes,going,Gone,good,goods," +
                          "gratification,great,guidelines,guys,handful," +
                          "happen,happened,hard,harder,hardwired,having," +
                          "heart,heavy,help,hit,holds,hopefully,HTML,HTTP," +
                          "httpr,hurdles,Hype,IBM,imagine,implicitly,Inc," +
                          "include,including,increased,increasing," +
                          "independent,individual,industry,info@sys-con," +
                          "information,Informational,infrastructure," +
                          "initiatives,instant,integral,integrate," +
                          "integration,integrity,interactions,interchange," +
                          "interchangeable,interested,interesting," +
                          "Interface,interfaces,internationally,Internet," +
                          "Internet-ready,Internet-scale,intranets," +
                          "introduce,involved,isn,Isolation,i-technology," +
                          "Java,Java-based,Journal,JSP,kids,killer,kinds," +
                          "know,knowledge,known,landscape,Language,Larger," +
                          "large-scale,later,leader,leads,lend,let,likely," +
                          "limited,listen,locate,log,logically,look," +
                          "looking,loosely,machine-to-machine,made,magic," +
                          "make,management,market,marketplaces,markets," +
                          "marks,Markup,means,Media,Medium,member,message," +
                          "messaging,messaging-oriented,method,methods," +
                          "Microsoft,Microsystems,Mikula,mind,mission," +
                          "model,much,multiple,name,nature,need,needed,Net," +
                          "Networks,new,news,Next,nicely,nodes,none," +
                          "Norbert,norbert@datachannel,novel,now,number," +
                          "numerous,OASIS,OASIS/UN-CEFACT,Objects,offer," +
                          "often,old-fashioned,old-style,online,open,order," +
                          "overall,overcome,overwhelmed,package,paradigm," +
                          "parameters,part,participating,participation," +
                          "parties,partners,Passport,past,pay,paying," +
                          "Payment,PDAs,people,per,perspective,pervasive," +
                          "phones,place,plan,planning,platforms,plumbing," +
                          "portals,power,practice,practices,prefer,pretty," +
                          "private,probably,problem,problematic,problems," +
                          "procedure,process,Processes,processing,product," +
                          "programmatically,promise,promising,proprietary," +
                          "Protocol,Protocols,provide,provided,providers," +
                          "providing,public,Publications,publish,purpose," +
                          "quantities,quotes,rate,rather,Reach,read," +
                          "reality,realize,realm,reasons,recognized," +
                          "recurring,regain,registered,registries," +
                          "regularly,relevant,Reliable,remote,reports," +
                          "required,requires,research,Reserved,respect," +
                          "Returning,reusable,revenue-stream,Right,Rights," +
                          "roll,rollback,Rosetta,RPC,RPC-type,rules,scale," +
                          "scenario,schema,schemas,SDK,seamless,Secondly," +
                          "Security,seem,seems,self-service,serves,service," +
                          "service-based,services,share,short,shortcomings," +
                          "Should,showing,side,sign-on,single," +
                          "single-sign-on,site,slow,Small,smaller,SOAP," +
                          "Software,solve,sooner,speaks,specific," +
                          "specifications,SSO,standardized,standards," +
                          "Standards/Vertical,started,starting,States," +
                          "still,stock,stored,straightforward,strategic," +
                          "structures,style-related,suggesting,suite," +
                          "Summary,Sun,suppliers,support,surprising," +
                          "SYS-CON,system,systems,talk,talking,technical," +
                          "technologies,technology,term,thing,things,think," +
                          "tied,tighter,time,tools,trademarks,Trading," +
                          "traffic,transaction,Transactions,transform," +
                          "transparent,transport,treat,true,Trust,turn," +
                          "tutorials,two,two-phase,types,ubiquitous," +
                          "Unfortunately,United,unknown,Unless,unlikely," +
                          "use,used,user,users,using,valid,valuable,value," +
                          "vendor,vendors,vertical,vice-chairman,vision," +
                          "visionaries,visual,wait,way,ways,weather,Web," +
                          "well-known,weren,whereas,whether,willing,wired," +
                          "wizards,won,word,words,work,workflow,working," +
                          "world,worries,worry,wrap,WSFL,Xmethods,XML," +
                          "years";
entry.item[44].page = "archives/0102/mikula/index.html";
entry.item[44].description = "Mission Critical Web Services";
entry.item[45].keywords = "adapting,adherence,adoption,age,applies,aren," +
                          "battle,BEA,board,brick,business,buy,carve," +
                          "CD-ROM,challenge,challenges,champions,change," +
                          "chicken-and-egg,classic,cleaned,clocks,com," +
                          "committee,companies,company,competing," +
                          "components,connectivity,contribute,countries," +
                          "create,critical,definitions,disks,distinguished," +
                          "doesn,dot-com,drawing,drive,drives,Dun,early," +
                          "eBay,electronic,E-mail,embodies,emerging," +
                          "enabling,established,face,fact,failing,fees,few," +
                          "financial,first,floppy,fluid,folks,force,forms," +
                          "frequent,funding,grand,ground,group,high," +
                          "high-density,IBM,ideological,ignored," +
                          "implementation,Inc,increased,independent," +
                          "individual,industries,industry,info@sys-con," +
                          "information,instead,interconnectivity," +
                          "interesting,issue,Java,Java-based,keep,large," +
                          "left,Let,like-that,lines,liquidity,long,looked," +
                          "market,markets,marks,mass,matter,Media," +
                          "Microsoft,Microsystems,models,mortars,moving," +
                          "myriad,needs,NET,new,obtaining,Open,order,own," +
                          "paradoxes,part,partially,partnerships,people," +
                          "piece,players,plethora,point,possible,power," +
                          "principles,problem,problems,proposed," +
                          "propositions,provide,provides,providing," +
                          "Publications,quick,quickly,regard,registered," +
                          "Remember,replacements,resulted,revolutionary," +
                          "seize,service,services,showed,significant,site," +
                          "Sites,small,software,solution,spirit,spot," +
                          "stages,standards,state,States,staying,strict," +
                          "Sun,superior,SYS-CON,taking,technological," +
                          "technologies,technology,theories,trademarks," +
                          "traffic,transaction,true,turf,underlying,United," +
                          "use,used,uses,using,usual,utopian,value,Vendors," +
                          "vision,wallet,Web,widespread,work";
entry.item[45].page = "archives/0102/rhody/index.html";
entry.item[45].description = "The Information Paradox";
entry.item[46].keywords = "ability,accommodated,acquisition,activities," +
                          "adaptive,address,advances,advantage,advantages," +
                          "afforded,aid,aids,align,alignment,alternatives," +
                          "and/or,application,applications,applied," +
                          "approximated,areas,arise,array,article,articles," +
                          "associated,auction,Author,automation," +
                          "availability,backlog,basic,behind,benefits,best," +
                          "Bind,BindPartner,bindsys,Bio,both,bottlenecks," +
                          "boundaries,Breadth,bring,broad,buffer,buffers," +
                          "business,businesses,capable,capacity,category," +
                          "chain,change,choose,claims,clearer,cofounder," +
                          "collaborate,collaboration,collaborations," +
                          "Collaborative,colocate,com,combine,combined," +
                          "commerce,Companies,company,compatible," +
                          "competitive,complete,complex,component,compound," +
                          "comprising,computing,concerned,Conclusion," +
                          "concrete,consider,considerate,considered," +
                          "Considering,considers,constraints,context," +
                          "cooperation,cooperative,Copyright,cost," +
                          "cost-effective,costly,costs,countries,coupling," +
                          "creating,critical,cross-section,CTO,cum," +
                          "customer,customers,data,David,dealing,defects," +
                          "definition,deliver,delivering,delivers,demand," +
                          "demands,dependency,Depth,derives,describes," +
                          "design,detail,detailing,developed,developing," +
                          "development,develops,dictionary,dip,discuss," +
                          "discussion,distributed,diverse,downward," +
                          "dr@bindsys,drive,drives,driving,Dublin,dynamic," +
                          "effect,Effective,effectively,efficiencies," +
                          "efficiency,efforts,electronic,elements,E-mail," +
                          "employed,enable,endeavor,engage,engaged,English," +
                          "entire,entities,entitled,entity,essential," +
                          "etymology,evolution,example,examples,execute," +
                          "exist,expedient,facilitate,facilitated,fact,far," +
                          "favorite,few,fewer,final,fine,flexible,focus," +
                          "follow,following,forecasting,forecasts," +
                          "framework,frequently,front,full,fundamental," +
                          "gains,generalized,generates,Given," +
                          "goods/inventory,greater,greatly,growth," +
                          "guarantees,help,Here,high,highly,hows," +
                          "identifying,immediately,impact,impacted," +
                          "implementing,impressive,improve,Improves,Inc," +
                          "increased,incremental,independent,industries," +
                          "industry,inefficiencies,info@sys-con," +
                          "information,infrastructure,inherent,initial," +
                          "integration,interaction,interactions," +
                          "inter-business,inter-enterprise,international," +
                          "Internet,Internet-based,involved,Ireland,issue," +
                          "Java,Java-based,jointly,journal,key,labor," +
                          "laborare,Latin,leading,less,let,lifecycle," +
                          "likely,limitations,lives,lofty,logistics,long," +
                          "loose,lower,lowest-bidder,make,makes,Making," +
                          "manage,management,manage-ment,managing," +
                          "marketplaces,marks,Media,merger,Microsystems," +
                          "minimizing,model,modelling,much,nature," +
                          "necessary,need,needs,negotiations,new,number," +
                          "occasion,offering,open,operating,operation," +
                          "operational,opportunities,Opportunity,option," +
                          "outward-facing,overall,overheads,participants," +
                          "parties,partner,partners,pen,permit,permitting," +
                          "pertinent,pervasive,pitting,planned,planning," +
                          "Platform,positively,possibilities,possibility," +
                          "potential,predicated,present,prevention,preview," +
                          "price,prices,principally,problems,process," +
                          "product,production,products,projected,promises," +
                          "proposition,prototyping,provides,Publications," +
                          "pure,quick,rapid,rather,readily,realize," +
                          "realized,recognizable,redesign,reduced," +
                          "reduction,regardless,registered,related,remain," +
                          "replenishment,required,requirement,Reserved," +
                          "result,resultant,returns,revenue,Revenues," +
                          "Rights,Russell,scenarios,seamlessly,secure," +
                          "seizing,sensitive,sentiment,services,share," +
                          "shared,sharing,significant,simple,simply," +
                          "simulation,software,spectrum,spelled,spirit," +
                          "state,States,step,streamlined,streams,strong," +
                          "structure,suffers,Sun,supplier,suppliers," +
                          "support,sustain,sustainable,SYS-CON,systems," +
                          "targeted,task,technological,technologies," +
                          "technology,tell,tight,time,Timely," +
                          "time-to-market,tools,trade,trademarks,trading," +
                          "translates,transport,turn,two,type,types," +
                          "unified,United,valuable,value,vendor,viable," +
                          "ways,Web,wide,word,words,Work,works,wrote,www," +
                          "XML,yields";
entry.item[46].page = "archives/0102/russell/index.html";
entry.item[46].description = "Understanding the Depth and Breadth of the " +
                             "Business Opportunity";
entry.item[47].keywords = "$19,Access,accessible,achieve,address,advent," +
                          "agents,agreed-on,agreement,Alan,allows," +
                          "Alternatively,analogy,answer,applications," +
                          "approach,architecture,area,areas,aren,arrival," +
                          "article,associate,associated,assume," +
                          "asynchronous,Author,automated,automation,back," +
                          "back-end,background,Based,behave,beige,Best,Bio," +
                          "black,blocks,both,Bringing,Brown,build,building," +
                          "built,business,business-to-business,buy,call," +
                          "calls,carrier,carriers,catalog,chain,check," +
                          "choices,chunks,classic,classical,coarse-grained," +
                          "coarser,color,colors,com,combination," +
                          "communication,company,comparison,compete," +
                          "complement,complements,Complex,components," +
                          "composing,computing,Conclusion,connect," +
                          "connectivity,Consider,considered,constructed," +
                          "containing,content,context,contrary,Contrast," +
                          "control,convenient,conversation,conversations," +
                          "Conversely,Conway,conway@iona,coordination," +
                          "Copyright,CORBA,correctly,couldn,countries," +
                          "coupled,coupling,create,data,data-oriented,days," +
                          "definition,delegate,deliver,depend,deployed," +
                          "derived,Description,design,designed,developers," +
                          "dictates,didn,different,difficult,Discovery," +
                          "distributed,Document,document-exchange," +
                          "document-oriented,documents,doesn,don,due," +
                          "easier,easy,EJB,electronic,E-mail,emerging," +
                          "enable,Enabled,enables,end-to-end,engineer," +
                          "enterprise,enterprise-grade,enterprises," +
                          "enterprise-specific,entire,entry,envelope," +
                          "established,events,example,examples,Exchange," +
                          "existing,experience,explicitly,explore,expose," +
                          "extension,extensive,facade,familiar,fashion," +
                          "fedora,fedoras,few,fill,find,fine-grained,finer," +
                          "first,five,flavor,flavors,follows,form,formats," +
                          "found,gaining,gathered,give,going,good,got," +
                          "Granularity,hand,hard,hat,having,here,heritage," +
                          "high,highly,high-performance,hope,HTTP,ideal," +
                          "imagine,implement,implemented,implementing," +
                          "important,Inc,include,independent,indirectly," +
                          "info@sys-con,infrastructure,inside,integrating," +
                          "Integration,interaction,intercommunicating," +
                          "interest,interface,Interfaces,internal," +
                          "internally,Internet,invokes,IONA,J2EE,Java," +
                          "Java-based,keen,key,kind,knew,know,knowing," +
                          "knowledge,knows,language,Larger,later,letter," +
                          "level,list,live,location,longer,look,looks," +
                          "Loose,loosely,Looser,mail,mail-order,make," +
                          "making,management,manufacturing,map,mapping," +
                          "marks,meaningless,means,Media,medium,mentioned," +
                          "Microsystems,misgivings,model,much,multiple," +
                          "natural,need,needed,needs,network,new," +
                          "nondistributed,non-distributed,note,nothing,Now," +
                          "numbers,object,object-oriented,objects,often," +
                          "old-fashioned,opening,operations,order,oriented," +
                          "Outbound,overhead,own,packages,paper," +
                          "paper-based,paradigms,parsing,partners,pass," +
                          "people,perform,performance,phone,phrase," +
                          "platforms,points,poorly,popularity,portable," +
                          "pretty,price,prices,probably,problem,process," +
                          "processes,programming,progression,protocol," +
                          "proven,provide,provides,Publications,quantity," +
                          "question,rapidly,rather,read,Reading,reasons," +
                          "receive,reflect,registered,regulatory," +
                          "reinventing,relation,Replies,reply," +
                          "representation,request,request/response," +
                          "requesting,requests,required,requirement," +
                          "requires,Reserved,resources,respectively," +
                          "response,richer,Rights,robust,run,salespeople," +
                          "salesperson,scalability,scalable,schema,seem," +
                          "self-describing,send,sending,senior,sense," +
                          "service,services,session,shared,shop,short," +
                          "should,shouldn,Simple,simply,single,size," +
                          "smaller-grained,SOAP,spans,stable,standards," +
                          "States,step,strong,structured,structures," +
                          "subsequent,sufficiently,suited,Sun,Suppose," +
                          "switch,Synchronous,SYS-CON,system,systems," +
                          "system-wide,take,talk,talking,tasks,technical," +
                          "techniques,technologies,technology,telecom," +
                          "telephone,tells,tempting,Things,think,Tight," +
                          "times,top,trademarks,trading,traditional," +
                          "transport,tremendously,turn,type,types,UDDI," +
                          "underlying,underpinning,understand,understands," +
                          "United,Universal,unlikely,upcoming,use,used," +
                          "useful,using,version,veteran,waiters,way,Web," +
                          "well-defined,Well-designed,wheel,word,work," +
                          "workflow-based,works,world,WSDL,XML,years";
entry.item[47].page = "archives/0103/conway/index.html";
entry.item[47].description = "Web Services and Distributed Objects: Roles " +
                             "for both in total business integration " +
                             "Competing or Complementary?";
entry.item[48].keywords = "acceptance,accessible,accounting,acquired," +
                          "adding,adoption,advantage,aggregation,allow," +
                          "allows,application,approach,architecture,asleep," +
                          "assemble,assembled,attractive,Author,automate," +
                          "bank,banks,based,behind,Bio,board,both,bottom," +
                          "broker,browser-oriented,budget,build,building," +
                          "bumps,business,businesses,buyer,capabilities," +
                          "car,central,chains,chairs,changed,Colin,com," +
                          "commonplace,companies,company,compensate," +
                          "competence,complex,components,computer," +
                          "computers,computing,conditions,connect," +
                          "connectable,connected,connections,consortium," +
                          "consume,consumer,consumers,converting,Copyright," +
                          "corporate,Corporation,countries,create,critical," +
                          "custom,customers,cycles,Dad,data,dealers,decade," +
                          "decision,degree,describe,desktops,developers," +
                          "development,device,devices,director,directors," +
                          "discrete,dispute,DNS,driving,drunken,early,easy," +
                          "e-business,electronic,E-mail,embraced,employees," +
                          "employer,empowering,enormous,environment," +
                          "equivalent,ERP,eSkepticism,Evans,evans@intel," +
                          "executive,expansion,expectations,expertise," +
                          "exploited,explosion,exponentially,expose," +
                          "exposed,extension,external,externally," +
                          "extraordinary,factory,feed,few,financial,First," +
                          "flexibility,floor,fly,focus,focused,Following," +
                          "forever,Forrest,forward,full,fuss,generate," +
                          "generic,getting,given,global,grabbed,Group,grow," +
                          "growth,Gump,happens,hard,hardware,haven,highly," +
                          "history,hit,hoc,home,Hook,HTML,HTTP,implement," +
                          "implemented,important,impressive,Inc,including," +
                          "increase,independent,individual,individuals," +
                          "industries,info@sys-con,information," +
                          "information-management,initiative,insurance," +
                          "integrate,integrators,Intel,interactions," +
                          "internally,international,Internet," +
                          "Internet-based,interoperability,intervention," +
                          "intuitive,invent,investments,Java,Java-based," +
                          "joined,justify,keep,know,Knowledge,Lab,laptop," +
                          "large,laser,later,Law,layer,lead-time,learned," +
                          "legacy,let,life,line-of-business,little,locate," +
                          "logic,long,look,Looking,made,major,make,managed," +
                          "manager,manufacturing,margins,marks,massive," +
                          "Media,mergers,Metcalf,Microsystems,mobile,money," +
                          "mosaic,mother,moved,much,multicompany,Mum," +
                          "natural,need,needed,New,nobody,nontechnical,nor," +
                          "notify,Now,OASIS,obsessively,offers,office,open," +
                          "opportunities,outsourcing,overflowing,own," +
                          "partners,past,PCs,peer,people,peoples,personal," +
                          "pieces,possible,potential,power,powerful," +
                          "pressure,processes,producer,product," +
                          "productivity,products,programmatically,project," +
                          "promise,protagonists,Publications,publish," +
                          "published,pull,putting,rate,reach,real," +
                          "realization,Real-time,reason,receiving," +
                          "registered,relationships,required,requiring," +
                          "Reserved,resources,responsible,rest,revolution," +
                          "rich,right,Rights,rise,road,RosettaNet,said," +
                          "sailor,scale,scenarios,Second,semiconductor," +
                          "service,services,shorter,simply,Sites," +
                          "situations,size,small,smart,SOAP,software," +
                          "Solutions,speed,spending,standards," +
                          "standards-enabled,start,starting,States,stock," +
                          "stood,strategy,subscribers,Sun,suppliers,supply," +
                          "support,SYS-CON,system,systems,tackle,taken," +
                          "taking,technology,three,too,tools,tougher,track," +
                          "trademarks,trading,travel,trivially,true," +
                          "ubiquity,UDDI,uncertainty,understand,unique," +
                          "United,unleash,unprecedented,unsophisticated," +
                          "use,useful,users,using,valuable,value,variable," +
                          "views,virtually,warp,way,ways,Web,whether,Wide," +
                          "work,World,WSDL,WWW,XML";
entry.item[48].page = "archives/0103/evans/index.html";
entry.item[48].description = "Beyond Scratching the Surface";
entry.item[49].keywords = "(contd,accept,accepted,accepting,act,adaptive," +
                          "addition,adhering,adjust,administrative," +
                          "adoption,advantage,Advantages,advertisement," +
                          "aggregate,Aggregating,aggregation,agreements," +
                          "airline,alliances,allow,allowing,allows,amount," +
                          "analysis,and/or,applicable,application," +
                          "applications,approach,appropriate,Architect," +
                          "Architecture,architectures,area,argument," +
                          "article,attitude,auctions,authentication,Author," +
                          "automation,b2b,B2Bi,back,back-end,Based," +
                          "behavior,benefits,bigger,bind,binding,Bios," +
                          "blublinsky@hotmail,Boris,both,bound,boxes," +
                          "broker,building,built-in,business,businesses," +
                          "caching,call,capabilities,case,catalogs," +
                          "categories,Central,certified,change," +
                          "characteristics,chat,checks,Chicago,Choice," +
                          "chunks,client,closer,collaborating," +
                          "collaboration,Collaborations,collection,College," +
                          "colocated,com,combined,commerce,communications," +
                          "community,companies,company,compare,compared," +
                          "Comparison,compensating,compiled,complete," +
                          "complex,complexity,component,component-based," +
                          "components,computers,conclude,Conclusion," +
                          "conducting,connect,connection,connectionless," +
                          "consumers,contain,content,Coping,Copyright," +
                          "CORBA,Corporation,countries,coupled,coupling," +
                          "courses,create,created,creating,Creation,credit," +
                          "criteria,critical,crucial,customers,customize," +
                          "cXML,cycles,data,DCOM,degree,degrees,delivers," +
                          "delivery,describe,described,describes," +
                          "Description,descriptions,designers,details," +
                          "developed,development,dhs,different," +
                          "differentiating,Director,Directory," +
                          "disadvantages,disconnected,discovery,discussed," +
                          "distributed,distribution,document,domain," +
                          "dominated,don,dramatically,duration,Dynamic," +
                          "dynamically,EAI,easily,effectively,E-mail," +
                          "enable,enables,enabling,encapsulated," +
                          "encapsulation,engagements,Engineer,engineering," +
                          "enterprise,enterprises,environmental," +
                          "environments,equivalent,established," +
                          "establishment,etc,event,example,Examples," +
                          "excellent,execution,experience,exposed,extended," +
                          "Extensibility,Externalization,extra,fabrication," +
                          "failure,Farrell,favoring,features,fee,fee-based," +
                          "feeds,few,fewer,Figure,find,firewall,fit,fixed," +
                          "Flexibility,following,foresee,form,found," +
                          "foundation,founded,framework,free,frequently," +
                          "functionality,fundamental,garbage,general,get," +
                          "global,great,grouped,guarantee,guaranteed," +
                          "happening,Here,heterogeneous,high,highly,host," +
                          "hosting,HTML,HTTP,http-based,ideal,IDL," +
                          "IDL-based,implementation,Implementations," +
                          "implemented,implementer,implementing,important," +
                          "Inability,Inc,include,including,increase," +
                          "independent,info@sys-con,information," +
                          "infrastructure,infrastructures,installations," +
                          "Instead,insulate,intact,integration," +
                          "integrations,Intel,interface,Intermediate," +
                          "internal,internally,Internet,interoperability," +
                          "introduction,Inventa,invocation,invocations," +
                          "invoking,Iowa,issue,Java,Java-based,Journal," +
                          "Just-in-time,keep,key,Language," +
                          "language-independent,large,large-scale,layer," +
                          "layers,LDAP,leader,left,legacy,level,leveraged," +
                          "life,limited,limiting,link,located,long,loosely," +
                          "looser,lower,Lublinsky,machines,made,main," +
                          "maintenance,Major,make,marketplaces,marks," +
                          "marshaling/unmarshalling,means,measure," +
                          "mechanism,mechanisms,Media,message," +
                          "message-oriented,messages,mfarrell@iowa,Michael," +
                          "Microsystems,middleware,mind,minimize," +
                          "minimizing,mission-critical,model,models,Modern," +
                          "multiple,naming,need,needs,negotiation,new,news," +
                          "nicely,nonregistered,number,object,objects," +
                          "obstacle,obtain,offer,opinion,optimization," +
                          "order,org,outsourcing,overall,oversees,page," +
                          "Pages,pair,parsing,part,participate,people," +
                          "periods,personalization,pick,place,platform," +
                          "platforms,Platinum,play,plays,plumbing,points," +
                          "popular,portals,possible,potentially," +
                          "prerequisite,prerequisites,presented,presents," +
                          "Prior,private,problem,Process,processes,product," +
                          "products,programmatically,programmer," +
                          "programming,projects,prominent,Promise,promises," +
                          "promising,proper,proposition,protocol,provide," +
                          "provided,provider,provides,providing,public," +
                          "Publications,publish,purpose,query,questionable," +
                          "quite,quotes,rather,readily,readiness,reality," +
                          "reasonable,Reduced,reference,references,Region," +
                          "Regional,registered,relationships,reliability," +
                          "remain,remote,reply,reports,representation," +
                          "request,request/reply,request/response," +
                          "requester,requests,required,requirements," +
                          "requires,reservations,Reserved,return,returned," +
                          "returning,revolution,rich,richer,Rights,RMI," +
                          "robust,role,run,running,runtime,scalability," +
                          "schedules,Security,self-configuring," +
                          "self-contained,semiconductor,Senior,serve," +
                          "server,serves,service,service-oriented,Services," +
                          "share,shared,shop,should,shown,sides,simple," +
                          "single,situations,slightly,SOAP,software," +
                          "solidify,solve,spanning,specification,SSA,stack," +
                          "standard,standards,stands,stateless,States," +
                          "statically,still,stock,string,string-based," +
                          "strong,strongly,structuring,stubs/proxies," +
                          "Substitution,Sun,suppliers,support,supported," +
                          "Synchronization,SYS-CON,System,Systems,Table," +
                          "Tables,take,taxonomy,Technical,technologies," +
                          "Technology,thin-client,things,three,thus,ticket," +
                          "time,tools,track,trademarks,trading,trainer," +
                          "transaction,transactional,transactions,transfer," +
                          "true,truly,turn,two,type,typed,types,typing," +
                          "UDDI,underlying,understanding,United," +
                          "universally,University,unlike,unlikely," +
                          "unpredictable,updates,upfront,URL,usage,use," +
                          "used,useful,user,users,uses,using,value," +
                          "viability,virtual,Vol,wants,way,weather,Web," +
                          "Webification,widespread,worrying,wrapped," +
                          "wrapping,WSDL,xCBL,XML,XML-based,years,Yellow," +
                          "yield,yields";
entry.item[49].page = "archives/0103/farrell/index.html";
entry.item[49].description = "Web Services and Distributed Component " +
                             "Platforms (PART 2)";
entry.item[50].keywords = "A2A,abilities,Access,actions,activities,adding," +
                          "additional,address,adjustable,adjusts,advantage," +
                          "advantages,advertise,advertising,affect," +
                          "alternative,alternatives,analogous,analysis," +
                          "angle,answer,answers,API,APIs,apparent," +
                          "application,applications," +
                          "application-to-application,approach,approaches," +
                          "April,architect,architecture,areas,article," +
                          "articles,associated,assumptions,attached," +
                          "attributes,Auction,Author,authored,automation," +
                          "AUTOURL,availability,avoid,awareness,B2B,bang," +
                          "Bartlett,based,BEA,bean,Beans,behaves,big," +
                          "binary,binding,Bio,Body,book,borderless,both," +
                          "bottleneck,bpmi,bridge,broadcasting,broken," +
                          "Broker,browser-based,browsers,building,builds," +
                          "bulb,business,business-to-business,busy,called," +
                          "calls,CanPerformWebServices,capability,capacity," +
                          "categorizations,categorized,CCM,central," +
                          "centralization,certain,changes,chaos," +
                          "characteristics,churns,class,classes,classify," +
                          "clear,client,client/server,Close,Cobb,Code," +
                          "CoffeeCup,collaborative,Collection,COM," +
                          "com/sunone,commerce,commodities,commoditization," +
                          "common-denominator,community,companies,company," +
                          "Comparisons,compatibility,complete,component," +
                          "Components,computer,computing,concept," +
                          "concerning,Conclusion,Concurrency,conditions," +
                          "conferences,conjunction,connect,connected," +
                          "Connecting,considered,construct,contacts," +
                          "container,context,contrast,contributed," +
                          "conventional,conventions,convergence," +
                          "coordinating,copies,Copyright,CORBA,cost,costs," +
                          "countries,coupled,create,creating,creation," +
                          "criteria,CRM,currency,Customer,cycle,data,Date," +
                          "DateApril,deal,decision-making,dedicated," +
                          "default,degrades,delivery,demand,democratic," +
                          "departure,depend,Description,descriptions," +
                          "design,desktop,DetailResult,deterministic," +
                          "develop,Developer,development,device,different," +
                          "differentiate,direction,Directions,Directory," +
                          "Discovery,discrete,discuss,disruptive," +
                          "distinguish,distributed,DL2XML,document," +
                          "documents,doesn,dot-com,down,downloaded," +
                          "downloads,drawbacks,driven,dumb,dynamic,eAI," +
                          "early,ebXML,e-commerce,Edition,efficiently," +
                          "effort,efforts,eight,EJB,Electronic,element," +
                          "Elements,e-mail,embodies,enabled,encoding," +
                          "encodingStyle,encodingSytle,encompassing," +
                          "encouraged,end,engine,engineering,enhance," +
                          "Enterprise,entities,entity,entry,envelope," +
                          "Environment,established,EUDORA,Event,events," +
                          "evidenced,examining,example,excel,exchange," +
                          "exhibits,existing,expand,expose,eXtended," +
                          "external,Externalization,facade,facilitate," +
                          "factory,faster,features,feedback,fetch,field," +
                          "Figure,file,file-sharing,First,flexibility," +
                          "flexible,fluid,following,form,format,foundation," +
                          "framework,franca,froma,FTP,function,functions," +
                          "future,Gao,gao@central,gap,general,geography," +
                          "giant,global,good,Green,grew,Group,grouped," +
                          "growth,handles,happen,Hathdata,Header," +
                          "headquarter,heavy,help,helped,hierarchical," +
                          "hierarchy,high,high-level,history,holds,home," +
                          "host,hosted,href,HTML,HTTP,hypothetical,IBM," +
                          "identical,identifiers,IDL2XML,IDs," +
                          "implementation,implementations,implemented," +
                          "important,improvisation,improvisation-based,Inc," +
                          "include,includes,including,increased,increases," +
                          "increasing,independent,industry,info@sys-con," +
                          "information,infrastructure-level,ingredient," +
                          "initiatives,innovation,Instead,integration," +
                          "Intelligent,intelligently,interactions," +
                          "Interchange,Interface,interface-driven,internal," +
                          "Internet,interoperability,Interoperable," +
                          "Introducing,invalidate,investigate,invoke," +
                          "involve,IONA,Issue,issues,J2EE,Jane,Java," +
                          "Java-based,JAXB,JAXM,JAXP,JAXR,JAX-RPC,JMS,JNDI," +
                          "Johnny,Journal,journals,June,Juxtapose,JXTA," +
                          "keep,Key,knowledge,known,Language,Large,latest," +
                          "leading,length,Let,level,Licensing,lies,Life," +
                          "light,likely,lingua,links,Linux,list,Listing," +
                          "listings,load,local,locality,located,locations," +
                          "logic,look,looking,loosely,low,low-cost," +
                          "machines,macro-level,mainframe,mainframes,makes," +
                          "manageability,Management,manages,March,mar-ket," +
                          "marketplace,marks,matured,means,mechanisms," +
                          "Media,meeting,Message," +
                          "message-oriented-middleware,messages,Messaging," +
                          "Meta,metadata,metadatas,metarepositories," +
                          "metarepository,Microsystems,model,modeled," +
                          "models,modules,MOM,Moreover,Multi-Language," +
                          "multiple,multiply,music,mustUnderstand,Naming," +
                          "necessary,need,Needata,needing,needs,net," +
                          "network,networked,new,next,Next-Generation," +
                          "nondeterministic,Norway,Notification,notion," +
                          "noun,November/December,n-tier,number,numerous," +
                          "oasis-open,object,object-oriented,objects," +
                          "observed,obsolete,occurred,offer,offerings,OMG," +
                          "OnlinePetWebServices,OOA,OOD,Open,operation," +
                          "operational,operations,optimize,optional,ORB," +
                          "org,org/cefact,org/soap/encoding," +
                          "org/soap/envelope,org/TR/SOAP,org/TR/wsdl," +
                          "originated,Oslo,outside,overall,Overview,P2P," +
                          "Pages,PANDA,Paper,papers,Paradigm,paradigms," +
                          "parallel,pattern,peer,peer-to-peer,performance," +
                          "performs,persistence,Persistent,perspectives," +
                          "PetName,PetNameZOOBA,phenomenon,phone,platform," +
                          "play,plays,PLC,pointers,points,policy,popular," +
                          "portability,portable,possible,possibly,powerful," +
                          "practical,practice,predefined,presentation," +
                          "primary,principles,problem,problems,Processing," +
                          "product,programs,Project,projects,Prolog," +
                          "prominent,properties,Property,proposals," +
                          "protocol,protocols,provide,provider,providers," +
                          "provides,providing,Publications,publishing," +
                          "quality,Query,questioning,questions,quickly," +
                          "quote,quotes,radical,radio,ranging,rapid," +
                          "rapidly,rate,Ray,Raymond,Reading,receiving," +
                          "recognized,redistributes,reduce,Re-examining," +
                          "registered,registries,registry,related," +
                          "Relationship,reliability,rely,remote,replaced," +
                          "Reply,represent,request,requests,requires," +
                          "Reserved,resource,resources,respect,respond," +
                          "responds,Result,ResultConfirmed,retaining," +
                          "retrieval,retrieve,reusable,reuse,reusing," +
                          "Rights,risk,role,roles,RPC,rule,sales," +
                          "scalability,scale,scaling,schd,schemas,security," +
                          "seek,seemingly,self-regulated,sending,server," +
                          "server-centric,servers,service," +
                          "service-registrars,Services,session,settings," +
                          "SetupAppointment,SetupAppointmentResponse," +
                          "several,sharp,Shift,shifting,show,shown,shows," +
                          "significant,Simple,Simplification,single,sites," +
                          "situations,small,smaller,Smart,SOAP," +
                          "SOAP/WSDL/UDDI,SOAP-ENV,software,solution," +
                          "solving,Source,sources,specific,specify,speed," +
                          "spoken,sponsored,spread,stability,stages," +
                          "standard,standardized,standards,stands,state," +
                          "States,static,steering,still,strength,stresses," +
                          "stressing,succeed,Suggested,sun,Support," +
                          "supported,supporting,surroundings,SYS-CON," +
                          "system,systems,talk,technical,techniques," +
                          "technologies,technology,tends,terminals,three," +
                          "Time,Time10,tns,tool,tools,tower,trademarks," +
                          "Trading,Transaction,transactions,transform," +
                          "transformed,translates,transmission,treated," +
                          "trend,try,TypeOfService," +
                          "TypeOfServicevaccination,types,UDDI,Under," +
                          "understanding,unece,unexpectedly,unique,United," +
                          "units,Universal,unnecessarily,unprecedented," +
                          "unpredictable,URL,URLs,urn,use,used,useful,user," +
                          "users,using,UTF-8,utility,Vaccination,valued," +
                          "verb,version,viable,Vol,wants,wave,way,Web," +
                          "Web-service,White,Wide,words,work,workflow," +
                          "Working,Works,workstation,workstations,World," +
                          "wrote,WSDL,WSJ,www,xmethods,XMI,XML,XML-based," +
                          "xmlns,xmlsoap,Yellow,ZOOBA";
entry.item[50].page = "archives/0103/gao/index.html";
entry.item[50].description = "Web Services and ZOOBA";
entry.item[51].keywords = "ability,access,accounting,achieve," +
                          "Acknowledgment,activity,add,addition,addressed," +
                          "advantage,aforementioned,age-old,alerts," +
                          "Alexander,altogether,amount,applications," +
                          "applies,appointed,architect,Architecturally," +
                          "areas,aren,arguments,article,articles,ask," +
                          "aspects,asset,assignment,attempts,auditing," +
                          "Author,authorization,authorize,availability," +
                          "average,back,back-end,bad,base,beginning,begun," +
                          "behalf,beneficial,benefit,better-suited,Bill," +
                          "billing,bills,Bio,block,blown,bogus,boost,both," +
                          "bottom,breathing,bridging,bring,brought,buck," +
                          "bunch,business,buzz,camp,card,care,carefully," +
                          "case,cast,catch,causing,chances,change,changes," +
                          "channel,chase,Check,claim,clear,client,Clinton," +
                          "code,collaborating,collecting,com,commercial," +
                          "companies,company,component,componentization," +
                          "components,computing,concentrate,concerns," +
                          "consider,consideration,considerations," +
                          "consistently,constantly,constitutes,consumer," +
                          "consumers,contact,content,contributes," +
                          "conversation,converters,cool,Copyright," +
                          "corporate,cost,costly,countries,Courtney,create," +
                          "created,creating,credentials,credit,crucial," +
                          "Culprit,currency,customer,customers,Cutting," +
                          "cycle,Dallas,databases,date,Dave,deal," +
                          "deep-seated,denied,departments,deploy,deployed," +
                          "deployment,derive,derives,describe,described," +
                          "designed,develop,developed,developers," +
                          "development,devoting,Dhoward@thenetworkeffect," +
                          "difficult,digital,Digital-Signature,dim," +
                          "disappointed,discuss,distributed,documentation," +
                          "doesn,doubt,down,downtime,drop,easier,easily," +
                          "economy,efficiency,effort,elaborate,electronic," +
                          "elsewhere,elusive,E-mail,embedding,emergency," +
                          "end-to-end,energy,enormous,ensure,ensuring," +
                          "enterprise,enterprise-scale,entire,error," +
                          "Especially,etc,events,eventualities,evolution," +
                          "examples,existing,expectations,expecting," +
                          "experience,experiments,explanations,exposing," +
                          "extend,Extending,extracts,extras,facade,face," +
                          "facilities,fact,facts,fairly,Fame,far,fashion," +
                          "favorite,feasible,features,few,figure,Finally," +
                          "financial,financially,find,finding,firm,first," +
                          "first-generation,Flexibility,flight,focus,folks," +
                          "foremost,former,fortune,forwarder,forwarders," +
                          "found,founding,framework,free,freelancing,front," +
                          "fulfill,fulfilling,fulfillment,full,fully," +
                          "function,functionality,functions,future,gain," +
                          "Garnering,generate,generating,get,gets,getting," +
                          "gives,going,good,gracefully,great,greatly," +
                          "groundwork,group,growth,gut,handled,Happening," +
                          "happens,happy,hard,hashes,having,health,hear," +
                          "help,helper,helpful,Here,high-level," +
                          "high-quality,history,hook,hosted,Howard,hype," +
                          "idea,identification,identify,ignore,Imagine," +
                          "implement,implementations,implemented,important," +
                          "improve,Inc,include,incoming,inconvenient," +
                          "independent,index,indexes,info@sys-con," +
                          "information,informed,infrastructure,in-house," +
                          "innovative,inspection,integrate,integration," +
                          "intended,interested,interfaces,intermediates," +
                          "Internet,interoperability,invoke,invoked," +
                          "invokes,involved,irritate,issues,Java," +
                          "Java-based,job,justify,keep,keeps,key,kind," +
                          "knock,know,Lack,lacking,lackluster,laid,lately," +
                          "later,latter,least,leaves,left,legacy,less,Let," +
                          "level,Levels,leveraged,libraries,life,light," +
                          "likely,limits,line,little,live,living,long,look," +
                          "looked,loop,low-cost,loyal,Luckily,machine,made," +
                          "maintenance,make,makes,Making,management," +
                          "managing,market,marks,maturity,meaning,means," +
                          "Media,member,messages,method,Microsystems," +
                          "migration,mind,minimize,miss,modal,modalities," +
                          "modern,Money,monitor,monitoring,monitors,months," +
                          "motives,much,narrow,natural,necessary,need," +
                          "needed,needs,net,new,newly,next,nonintrusive," +
                          "notice,notifications,notified,notify,Notoriety," +
                          "novel,now,number,ObjectSpace,observation," +
                          "occurrences,offer,offering,offerings,offline," +
                          "often,old,one-time,OpenBusiness,open-source," +
                          "operating,opt,option,organization,original," +
                          "originally,outside,outsource,outsourced," +
                          "outsources,Partitioning,pat,paths,patterns," +
                          "Pedestrian,people,perceived,perfectly," +
                          "performing,permission,person,piece,place,places," +
                          "plain,planning,platform,platforms,play,plenty," +
                          "point,popped,portal,potential,preferred," +
                          "premature,present,presented,presenting," +
                          "President,prizes,probably,problem,problems," +
                          "process,processes,product,production,profile," +
                          "profitable,programs,project,proposed,provide," +
                          "provider,providers,provides,provisioning,public," +
                          "Publications,publicly,publish,published,pulling," +
                          "purpose,put,qualities,quality,query,question," +
                          "Quite,rather,Reach,read,real,realize," +
                          "recognition,records,refer,registered,registries," +
                          "relates,reliably,rely,remain,remains," +
                          "repackaging,request,requests,Reserved,responses," +
                          "responsibilities,rest,return,returning,returns," +
                          "reuse,reveal,revenue,rewrite,Rights,ring,road," +
                          "roadblocks,ROI,rug,running,Russell,said," +
                          "SalCentral,scale,scenario,scheme,scoping," +
                          "security,seems,seen,sent,service,services," +
                          "Several,shift,short,shortcomings,should,Show," +
                          "side,signature,signatures,simple,simply,site," +
                          "situation,slow,small,SOAP,solid,solution," +
                          "solutions,sounds,space,Speaking,Special," +
                          "specific,specification,spend,stable,stance," +
                          "standards,staring,start,States,statistics," +
                          "steady,steer,still,stipulate,stores,strategies," +
                          "strategists,stream,stupid,style,submit," +
                          "submitted,subsystems,success,sum,Sun,support," +
                          "supports,surface,SYS-CON,system,systems,take," +
                          "taking,talking,tasks,team,technical,technology," +
                          "Tell,temperature,term,terms,Texas,theory,thing," +
                          "things,think,third-party,time,time-boxed,timely," +
                          "told,too,tools,top,toys,track,tracked,tracker," +
                          "trackers,tracking,trademarks,transmission," +
                          "tremendously,true,truly,turn,tweaked,twice,type," +
                          "types,UDDI,under,unexpectedly,unfortunate," +
                          "United,upgrade,upgrades,uptime,usage,use,used," +
                          "useful,User,users,using,valid,validating," +
                          "validators,validity,valuable,value,view,visit," +
                          "visited,Wallace,watch,way,ways,Web,week,weighty," +
                          "whether,Wide,widgets,words,work,working,World," +
                          "wouldn,written,WSDL,xmethods,yanked,Yielding";
entry.item[51].page = "archives/0103/howard/index.html";
entry.item[51].description = "Leveraging Web Services";
entry.item[52].keywords = "ability,abstract,abstraction,access,accessPoint," +
                          "accomplish,act,address,addresses,agreeing,ails," +
                          "allow,allows,analogies,analogous,analogy," +
                          "anceDet,API,application,Applications," +
                          "architected,arena,article,assist,associated," +
                          "Author,authorizedName,B2B,background,based," +
                          "behind,best,bin,binding,bindingKey,bindings," +
                          "bindingTemplate,Bio,body,both,bound,broad," +
                          "business,businesses," +
                          "c1acf26d-9672-4404-9d70-39b756e62ab4," +
                          "c3d124-e967-4ab1-8f51," +
                          "c756d1-3374-4e00-ae83-ee12e38fae63,calls," +
                          "canonical,case,categorization,categorizations," +
                          "categorized,categoryBag,certain,chain,child," +
                          "Circle,classifications,classified,clear,clearly," +
                          "client,Code,codebase,com,com/publish," +
                          "com/services/uddi,combining,commerce," +
                          "communicate,communication,community,companies," +
                          "Companions,company,complementary,comprehending," +
                          "concept,Conclusion,concrete,consideration," +
                          "considered,constructs,contain,contains,contents," +
                          "contract,convention,conventions,cookbook," +
                          "Cookbooks,Copyright,Core,corollary,Corporation," +
                          "correctly,correspond,corresponding,corresponds," +
                          "countries,create,created,critical,d93d95fac91a," +
                          "data,DCOM,decision,decisions,decouple,decoupled," +
                          "decoupling,define,defined,defines,definition," +
                          "definitions,delineate,demonstrates,describe," +
                          "describes,Description,design,designed," +
                          "design-time,details,developers,developing," +
                          "different,ding,direct,directory,directs," +
                          "discover,discovered,Discovery,disparate," +
                          "distinction,division,dlbestpractices-V1,doc," +
                          "document,don,down,draws,drill,drilling," +
                          "dynamically,ecosystem,EDI,electric,element," +
                          "E-mail,emerge,enabling,endpoints,enduring," +
                          "engenders,enormously,entire,entirely,entity," +
                          "entries,entry,environment,environments," +
                          "essential,examine,example,exciting," +
                          "f2bc6b-a6de-4be8-9f2b-2342aeafaaac,fact,false," +
                          "fashion,fax,few,field,Figure,file,files,find," +
                          "find_business,finding,fingerprints,flourish," +
                          "follow,following,foreign,formal,forward,found," +
                          "fragment,Full,fundamental,Fundamentally,further," +
                          "future,generates,generic,getting,goals,grammar," +
                          "grasp,group,guaranteeing,Healthcare,helps,here," +
                          "heterogeneous,highly,host,hosted,house,html," +
                          "https,human,IBM,identified,IDL,implementation," +
                          "Implementations,implemented,implications," +
                          "importance,important,inaccurate,Inc,includes," +
                          "independent,individually,industry,info@sys-con," +
                          "information,infrastructure,initiatives,inquire," +
                          "inquiry,Inside,Inst,instance,InstanceDetail," +
                          "Integration,intention,interact,interacting," +
                          "interested,interface,interfaces," +
                          "interoperability,interpreting,invoke,invoked," +
                          "involved,issue,Issuing,Januszewski,Java," +
                          "Java-based,Karsten,karstenj@microsoft,key," +
                          "keyedReference,keyedReferences,keyName,keyValue," +
                          "kind,kinds,know,knows,landscape,lang,Language," +
                          "lightweight,link,Listing,location,locations," +
                          "looking,M99,machine,makes,management,manager," +
                          "manifest,marks,massive,mechanism,mechanisms," +
                          "Media,meeting,member,messages,metadata," +
                          "Microsoft,Microsystems,misconception,misleading," +
                          "model,Moreover,moved,moves,Moving,multiple,name," +
                          "nameuddi-org,natural,naturally,necessary,needs," +
                          "network,new,next-generation,nodes,normalized," +
                          "nothing,noting,object-oriented,obtained," +
                          "offering,offers,Open-200106,operator," +
                          "opportunity,org,org/pubs/ws," +
                          "org/schema/2001/uddi_v1,org/specification," +
                          "org/wsdl/inquire_v1,org/wsdl/publish," +
                          "org/wsdl/publish_v1,outdated,outside," +
                          "overviewDoc,overviewURL,overviewURLhttp,own," +
                          "Pages,partner,passed,Perhaps,perspective,piece," +
                          "place,point,populate,port,ports,possibility," +
                          "potential,potentially,powerful,practices," +
                          "primary,procedure,Production,program," +
                          "programmatically,project,protocol,protocols," +
                          "provide,provided,provider,provides,providing," +
                          "proxy/stub,publication,Publications,publish," +
                          "published,publishing,queries,query,realized," +
                          "receive,recipe,Recipes,reduce,refer,reference," +
                          "referred,refers,register,registered,registering," +
                          "registries,registry,relate,relationship,relies," +
                          "remote,represent,represents,required,Reserved," +
                          "reside,resource,resources,result,results,return," +
                          "right,Rights,robust,runtime,say,scenarios," +
                          "schema,schemas,scope,search,semantically," +
                          "semantics,send,sense,separately,server,Service," +
                          "serviceKey,services,shares,short,shown," +
                          "simplifying,simply,SOAP,SOAP-based,soapSpec," +
                          "software,solely,Source,specification," +
                          "specifications,specifics,specified,stack," +
                          "standard,standardized,standards,states,stores," +
                          "structure,structured,Sun,supply,syntax,SYS-CON," +
                          "system,systems,talk,tapped,task,taxonomies," +
                          "taxonomy,technical,technology,template," +
                          "templates,things,three,Thus,time,tModel," +
                          "tModelBag,tModelDetail,tModelInstanceDetails," +
                          "tModelInstanceInfo,tModelKey,tModelKeyuuid," +
                          "tModels,tools,trademarks,trading,transport," +
                          "truly,truncated,Two,type,types,UDDI,uddi-org," +
                          "undercut,Understanding,uniquely,United," +
                          "Universal,update,URLType,urn,usage,use,used," +
                          "useful,user,users,uses,using,uuid,valid," +
                          "validity,vendor-neutral,version,vertical,viable," +
                          "Vol,way,Web,Web-based,whether,White,won,words," +
                          "work,worked,Working,write,writing,written,WSDL," +
                          "wsdlSpec,WSJ,www,XML,XML-based,xmlns,xmlSpec," +
                          "xsd,Yellow";
entry.item[52].page = "archives/0103/januszewski/index.html";
entry.item[52].description = "UDDI and WSDL: Natural Companions";
entry.item[53].keywords = "abetted,accessible,add,added,adding,address," +
                          "addresses,afoot,agreement,agreements,aid,aided," +
                          "algorithmic-level,algorithms,amount,amounts," +
                          "analogy,Andy,andy@blueskyline,answers," +
                          "application,applications,applied,architecture," +
                          "area,arena,article,aspect,association,assume," +
                          "assumption,assumptions,authenticated," +
                          "authentication,authenticity,Author,availability," +
                          "back,ball,based,basic,basis,bearings,behind," +
                          "beings,benefit,benefits,binding,Bio,blocks,blue," +
                          "body,both,box,bring,building,built,business," +
                          "businesses,business-to-business,buy,bytes," +
                          "caches,came,cannot,capability,centers,central," +
                          "centrally,certain,change,charge,client,coin," +
                          "Collaboration,colleague,COM,combination," +
                          "commodity,communities,community,companies," +
                          "company,compartmentalize,component,components," +
                          "compression,Computing,conclusion,condemned," +
                          "conference,connectivity,consider,consist," +
                          "consistent,consists,consultant,consumers," +
                          "contain,containing,context,contracts,Copyright," +
                          "CORBA,countries,creation,cryptography,daily," +
                          "danger,dangerous,data,DCE,decade,decision," +
                          "decisions,degree,deliver,description,design," +
                          "determinants,developed,developers,different," +
                          "digital,digitally,directory,discarded," +
                          "discounting,discussed,discussion,distributed," +
                          "DNS,document,documents,doesn,do-it-yourself,don," +
                          "drives,due,dynamic,dynamically,earlier,early," +
                          "easy,e-business,ebXML,echo,e-commerce," +
                          "ecosystems,EDI-style,educator,Efforts," +
                          "electronic,elusive,E-mail,enabling,engines," +
                          "entries,Environment,equivalent,everyday,example," +
                          "exchange,existing,exists,expectations," +
                          "explaining,Exploding,exposed,facing,fair,fairly," +
                          "fall,familiar,familiarity,far,few,figures,final," +
                          "finance,Financial,find,first,five,flexible,form," +
                          "formal,forth,fortunes,forward,found,Foundation," +
                          "foundations,framework,free,future,gain,gains," +
                          "gathering,gazing,geared,George,get,Given,Global," +
                          "globally,goes,Going,good,great,greater,ground," +
                          "guarantee,hackers,hampered,happen,hardware," +
                          "having,heard,heavyweight,help,here,high,HTML," +
                          "HTTP,huge,Human,hy-perbole,ibm,idea,identify," +
                          "IDL,important,improve,improvements,Inc," +
                          "including,increasing,independent,industry," +
                          "info@sys-con,information,infrastructure," +
                          "initiatives,Instead,integrations,interact," +
                          "intermediaries,intermediary,Internet,involved," +
                          "isn,issue,issues,itml,J2EE,JamCracker,Java," +
                          "Java-based,jurisdiction,key,largely,last,law," +
                          "leads,learn,learning,least,left,legacy,legal," +
                          "lessons,level,lines,links,list,listed,local," +
                          "long,Longshaw,look,lost,lower,machine,made," +
                          "magnitude,main,makers,making,mapping,market," +
                          "markets,marks,match,maximum,means,mechanism," +
                          "mechanisms,Media,message,messages,Microsoft," +
                          "Microsystems,minimal,minute-by-minute,minutes," +
                          "model,models,modern,Moore,movement,much,Myth," +
                          "name,namely,names,naming,nature,need,needed," +
                          "negotiated,neutral,new,next,non-repudiable," +
                          "nonrepudiation,noting,number,occupies,occur," +
                          "on-off,Open,opinion,opinions,order,orders," +
                          "organizations,original,origins,overview,own," +
                          "owned,owners,paid,paper,parallels,part,partly," +
                          "parts,pass,passed,passes,past,paucity,payload," +
                          "pdf,people,per,perceived,per-use,philosopher," +
                          "pieces,place,platform-independent,popular," +
                          "portal,portals,positioning,positions," +
                          "potentially,power,powerful,practices,premium," +
                          "price,primarily,privacy,problem,proceed,process," +
                          "processing,processor,produced,producers,product," +
                          "Profiles,promoted,Protocol,prototypical,prove," +
                          "provide,provider,provides,providing,proving," +
                          "public,Publications,put,quality,question," +
                          "Questioning,rather,rating,readily,real,reality," +
                          "record,reflected,registered,registries,Registry," +
                          "reinventing,Rejecting,relationship," +
                          "relationships,reliability,rely,remember,repeat," +
                          "replaced,replacing,repositories,Repository," +
                          "requests,required,Reserved,Resources,respect," +
                          "respectively,respond,response,responsibility," +
                          "returning,rich,rigging,Rights,RPC,run,Rush,said," +
                          "Santayana,say,seamlessly,search,searched," +
                          "searches,searching,secure,Security,seem,seems," +
                          "seen,select,selection,sell,server,servers," +
                          "service,services,sessions,settled,several," +
                          "shared,shops,short,shouldn,side,sidelined," +
                          "signed,signing,similarities,simple,simply," +
                          "sketching,sky,small,smart,SOAP,SOAP/UDDI/WSDL," +
                          "sockets,Software,solved,sort,specializing," +
                          "specific,speeds,spend,spent,SSL,standard," +
                          "standards,standstill,stated,States,steel,still," +
                          "story,Sun,supplier,suppliers,surrounding," +
                          "survive,swap,SYS-CON,system,systems,takes,Talk," +
                          "talking,technical,technologies,technology," +
                          "tempted,term,terms,things,think,thus,time," +
                          "timing,too,trade,trademarks,traditional,trainer," +
                          "transaction,Transactions,transparency,truly," +
                          "trusted,trustworthiness,two,type,ubiquitous," +
                          "UDDI,UDDI/WSDL,ultra-dynamic,under," +
                          "underestimated,undermined,underpinnings," +
                          "underpins,United,unknown,Unless,unrealistic,use," +
                          "used,user,using,value,variety,versus,vertical," +
                          "visions,vital,way,ways,weak,Web,Web/EDI," +
                          "Web-based,weight,widely,won,wonder,work,works," +
                          "world,writer,written,wrong,WSDL,www,www-106,XML," +
                          "XML-based,years";
entry.item[53].page = "archives/0103/longshaw/index.html";
entry.item[53].description = "Exploding Web Services Myths";
entry.item[54].keywords = "accepted,accomplish,acknowledges,admit," +
                          "advantages,advocates,afford,agnostic,agreement," +
                          "allows,Analysts,Annrai,answer,answers," +
                          "application,applications,apps,arguments,arrival," +
                          "arriving,asked,asking,ASP,assurances,assures," +
                          "attained,Author,Baker,base,basis,bat,BEA,Beans," +
                          "begin,behemoth,belief,Bernstein,best," +
                          "best-selling,bet,beta,bickering,bids,big,bigger," +
                          "biggest,Bill,Bio,blisteringly,block,Bob,book," +
                          "Borland,boss,both,boxes,bridge,bring,bucks," +
                          "budget,build,building,business,businesses," +
                          "buying,buzz,call,camp,campaign,capabilities," +
                          "Cape,Case,cause,cautious,cell,cents,chairman," +
                          "Chew,choice,choices,choosing,Chordiant,chunk," +
                          "Clear,clicks,closing,code,cofounder,com,comfort," +
                          "coming,commitment,commitments,community," +
                          "companies,company,compatibilities,compatibility," +
                          "complex,conclusive,Conference,Connectivity," +
                          "Conner,consultancy,consultants,contrast," +
                          "contributing,Conversely,cooperation,core," +
                          "corporate,Corporation,cosmetics,counted," +
                          "countries,covered,cracking,created,creating," +
                          "cross-platform,crowd,CTO,customer,customers," +
                          "cutting-edge,dates,David,day,days,deal,deciding," +
                          "decision,decision-makers,decision-making," +
                          "decisions,decisive,deliver,demand,demonstrated," +
                          "demonstration,deployed,deployments,designed," +
                          "desired,desktop,determined,developer,Developers," +
                          "development,differ,differences,different," +
                          "direction,director,diverse,divide,don,door," +
                          "DotCom,dramatic,dust-up,early,Ease,easily,easy," +
                          "effort,elaborates,elegant,E-mail,emerge," +
                          "emphatic,encouraging,end,entering,enterprise," +
                          "entirely,envision,equally,era,Eric,evangelism," +
                          "evangelists,evidence,evolves,exchange,execution," +
                          "executive,executives,explains,extend,extending," +
                          "extremely,fact,factor,factors,faith,fallout," +
                          "fans,far,fast,faster,favor,feature,features,few," +
                          "field,fight,figure,final,firm,flexibility," +
                          "flexing,focused,formats,Forrester,foundation," +
                          "Frank,front-end,full,full-fledged,fundamental," +
                          "fundamentally,future,Galantine,gap,Gates,geared," +
                          "general,generation,genuinely,George,Get,Giga," +
                          "give,given,goal,goes,Good,GraphON,Grigoryev," +
                          "ground,Group,Hackers,half-dozen,handhelds," +
                          "handle,hard,Hardly,heart,heavyweight,hedge," +
                          "Heffner,here,high,high-end,Higher-up,high-level," +
                          "Hold,huge,hunting,IBM,ideal,implement," +
                          "implementation,implementing,improbable," +
                          "improvements,Inc,include,includes,including," +
                          "incompatibility,independent,indictment,industry," +
                          "info@sys-con,Information,infrastructure,initial," +
                          "initiative,innovative,inside,insights," +
                          "installations,installed,instance,integrator," +
                          "intensifies,interact,interfaces," +
                          "interoperability,interview,investigation," +
                          "investment,involves,IONA,Irish,iron-clad,isn," +
                          "issue,issues,J2EE,Jack,Java,Java-based,John," +
                          "Jumping,keenly,keep,key,kick,kid,knock,Know," +
                          "known,landslide,languages,larger,large-scale," +
                          "later,lead,leader,leap,least,legacy,level," +
                          "levels,likely,limited,line,LINUX,Listen,little," +
                          "load,lock-in,Logic,longer,look,Looking,looms," +
                          "made,magazines,Magee,mainly,major,make,making," +
                          "manager,managers,mantra,mark,market,marketing," +
                          "marks,massive,McGarvey,means,meantime,Media," +
                          "members,message,Microsoft,Microsoft-centric," +
                          "Microsystems,middleware,mini-computers,minutes," +
                          "mobile,moment,mouse,mouthful,moving,much,Muglia," +
                          "multiple,Multi-vendor,multi-year,muscles,need," +
                          "needs,NET,NET-J2EE,neutral,never,new,news,next," +
                          "nobody,noise,nonetheless,notable,notice,now," +
                          "nudge,numerous,October,offer,offered,offers," +
                          "open-source,operating,Operations,opinion," +
                          "opportunity,option,Oracle,order,organization," +
                          "organizations,oversold,Page,pairing,parity,part," +
                          "patching,pause,PDC,performance,Persuaded,Pete," +
                          "phones,pick,picked,places,Placing,Plainly," +
                          "planned,platform,platforms,play,players,plenty," +
                          "plug,plus,point,points,portability,portable," +
                          "position,possible,pounding,practices,prepares," +
                          "president,Primitive,pro,probably,problem," +
                          "process,prodding,produces,product,products," +
                          "Professional,professionals,program,project," +
                          "projects,pronounced,prove,proven,provides," +
                          "publications,publicity,put,Putting,question," +
                          "questions,quick,quickly,race,raised,Ralph,ran," +
                          "Randy,ranging,rarely,reaches,reality,real-world," +
                          "recognize,Redmond,registered,release,religious," +
                          "remains,reported,reports,represent,request," +
                          "Research,resolved,resources,Review,rewriting," +
                          "ride,right,Robert,Rudder,rules,run,running,safe," +
                          "said,say,saying,says,scalability,scalable,scale," +
                          "Security,seems,seen,sees,sell,senior,serves," +
                          "service,services,sets,shape,she,shop,Should," +
                          "shrewdly,shrink-wrapped,side,significant,simply," +
                          "single,sit,sizable,slender,slice,Slootman,slow," +
                          "smaller,smart,smile,smooth,Software,sole," +
                          "solicit,solution,solutions,soon,sore,Sound," +
                          "speaking,speed-up,spot,sprawling,stable,stacks," +
                          "stakes,staking,standard,standardization," +
                          "standardize,standards,standing,start,starting," +
                          "States,Steve,still,story,streetfight,strength," +
                          "strengths,substantial,succeeds,sucked,Sun," +
                          "supersedes,support,supported,surprising," +
                          "surveyed,SYS-CON,systems,take,takes,talk," +
                          "tangible,technically,technological,technologies," +
                          "technology,tell,telling,terms,tested,things," +
                          "third,thumb,tilt,time,times,tipping,tires,too," +
                          "took,tool,Toole,tools,top,trademarks,transform," +
                          "tweaked,two,uncertainties,Understand," +
                          "understanding,United,UNIX,unknown,unmistakable," +
                          "Upside,upwards,urges,use,used,user,users,uses," +
                          "using,vendor,vendors,viable,vice,virus,votes," +
                          "wager,Walicki,war,watching,way,ways,Web,whereas," +
                          "whichever,wide,widely,wildly,Win,Windows," +
                          "Wireless,woe,won,words,Work,working," +
                          "workstations,world,write,writer,writers,written," +
                          "wrong,XML,years";
entry.item[54].page = "archives/0103/mcgarvey/index.html";
entry.item[54].description = ".NET or J2EE - Street Fighting Comes to Web " +
                             "Services";
entry.item[55].keywords = "achieve,activity,Add,added,admits,admitting," +
                          "adopt,advocate,advocates,aggressively,agreed," +
                          "agreement,aimed,allow,amazing,amidst,amount," +
                          "ample,analogy,Analyst,Angeles,announced," +
                          "announcement,announcements,Annrai,Answer," +
                          "applaud,applications,apps,architecture,ardent," +
                          "argument,arms,articulate,asks,assertion," +
                          "attended,attendees,Author,B2B,back,Barry,based," +
                          "BEA,began,beginning,behind,belief,believe,Ben," +
                          "benefits,Benfield,best-selling,betting,big," +
                          "bigger,biggest,Bill,Bio,Bits,book,bored,Borland," +
                          "bottle,Bottom,Bowstreet,Brauer,bridge,bring," +
                          "bubble,built,bullet,burst,business,button,buzz," +
                          "byproduct,Call,capabilities,Cape,care,case," +
                          "catch-phrase,cause,center,central,CEO,certainly," +
                          "chairman,change,changing,Chappell,characterizes," +
                          "Charles,Chazin,Chief,citing,Clara,Clear,closely," +
                          "coherent,collaborated,com,commonplace,community," +
                          "Companies,comparatively,complicated,computing," +
                          "concedes,concept,concern,conference,consensus," +
                          "consultant,consulting,contention,contributing," +
                          "copacetic,cost,costs,couldn,countries,coupled," +
                          "cover,covered,crucial,CTO,customer,Customers," +
                          "Daryl,Data,David,days,debate,debates,debuted," +
                          "decade,decisions,defined,deliver,delivered," +
                          "Delphi,demonstrated,deploy,deployments,details," +
                          "developer,developers,director,disagree," +
                          "disagreement,disagreements,dispute,Dissonance," +
                          "divide,doesn,don,DotCom,doubt,dramatically," +
                          "drive,driving,dueling,E2A,early,earn,earned," +
                          "easier,easily,easy,e-business,economically,Edge," +
                          "editor-in-chief,effectively,effortlessly,Eileen," +
                          "E-mail,emerged,emerging,enable,enabling," +
                          "enterprise,enterprises,enthusiasm,evangelist," +
                          "evolution,evolutionary,evolved,Exciting," +
                          "executive,existing,expand,expect,expected," +
                          "expressed,extension,fact,factor,fans,fast," +
                          "fasten,fast-track,father,few,fight,Finally,find," +
                          "finding,firm,firmly,first,first-wave,focusing," +
                          "forth,foundation,free,fretting,future,Gartner," +
                          "Gates,gave,get,give,going,Goldfarb,Goliath,gone," +
                          "good,go-slower,got,Graf,greatest,ground,Group," +
                          "groups,grow,Guess,hammers,happened,heard,heart," +
                          "heavily,heavyweights,hectic,held,help,helping," +
                          "here,Hewlett,hiding,historians,Hitesh,Hold,home," +
                          "hot,HTML,huge,IBM,idea,important,importantly," +
                          "improved,Inc,include,including,increased," +
                          "incredible,independent,industry,inflection," +
                          "info@sys-con,Information,infrastructure," +
                          "Infravio,initiative,inside,insists,instance," +
                          "integration,interest,interesting,intranets," +
                          "intriguing,invested,investments,IONA,isn,issue," +
                          "J2EE,jabs,Java,Java-based,Jdeveloper,Journal," +
                          "keep,key,keynote,Kit,know,lagging,large,last," +
                          "late,laying,leader,leaders,leave,left,let,lets," +
                          "leverage,Lico,likely,line,lined,Liquid," +
                          "liveliest,lives,look,lookup,Los,low-cost,lower," +
                          "machine,machines,magazines,mainly,mainstream," +
                          "major,making,manager,market,marketer,marketing," +
                          "marketplace,marks,massive,matter,mature," +
                          "McGarvey,McNealy,meaningful,means,Meantime," +
                          "Media,message,Microsoft,Microsystems,mid-90s," +
                          "mind,misremember,missing,moderator,momentous," +
                          "months,Morris,move,much,muscle,must-have,mySAP," +
                          "Nathaniel,need,nemesis,NET,never,new,news,next," +
                          "nirvana,nobody,non-attendees,nonetheless,notice," +
                          "November,now,observes,October,offered,old,open," +
                          "opening,openly,Operation,opportunities," +
                          "opportunity,optimistic,Oracle,Oracle9i,Orbix," +
                          "orders,organization,outside,overarching," +
                          "over-hyped,overpromised,own,package,Packard," +
                          "Palmer,panel,panelist,parade,paradigm,part,PDC," +
                          "perhaps,Peter,platform,player,players,plenty," +
                          "Plummer,point,points,poised,potential,power," +
                          "powerful,prediction,predicts,president,Probably," +
                          "problems,proclaims,produce,product,productivity," +
                          "profits,progress,promise,promises,proof," +
                          "proponents,proven,publications,push,put,puts," +
                          "question,questions,quite,ranging,reach,readily," +
                          "real,realistic,reality,realized,reap,reason," +
                          "recognizes,Redmond,registered,related," +
                          "relationships,remain,results,Review,revived," +
                          "revolution,revolutionary,rewards,Rhody," +
                          "Richardson,right,Robert,rock,route,said,Santa," +
                          "SAP,say,says,Schmidt,Scott,Sean,second,seeing," +
                          "seemed,seen,sees,SEI,senior,service,Services," +
                          "Seth,sets,sexy,shift,should,show,significant," +
                          "silver,Silverline,SilverStream,simple,six," +
                          "skeptical,small,smaller,SOAP,software,solution," +
                          "solve,solves,Sonic,soup,spacey,speaker,spent," +
                          "sprawling,stage,stance,standardized,standards," +
                          "start,Starter,States,stay,stepping,steroids," +
                          "Steve,still,stoke,story,strategy,structure," +
                          "suggests,Sun,suppliers,SYS-CON,systems,take," +
                          "take-away,Talamantes,talk,target,technical," +
                          "technologies,Technology,tell,test-beds,themes," +
                          "thing,things,think,thinking,thought,thoughts," +
                          "three,time,told,too,tool,Toole,tools,torpid," +
                          "trademarks,transform,tremendous,trenches," +
                          "tumultuous,twelve,UDDI,underline,unimaginable," +
                          "United,unmistakably,unveiled,unveiling,upbeat," +
                          "Upside,usability,usable,use,useful,users,using," +
                          "values,vaporous,vendors,verging,vibrancy,vice," +
                          "Victoria,view,viewpoint,vividly,waiting,wasn," +
                          "watch,watched,wave,way,ways,Web,week,weighed," +
                          "weren,West,West/XML,Whew,wholly,wide,wine," +
                          "Wireless,wish,wishes,wonder,Woodstock,work," +
                          "worked,world,writer,XML,XMLEdge,Year,years";
entry.item[55].page = "archives/0103/mcgarvey2/index.html";
entry.item[55].description = "The Week That Was";
entry.item[56].keywords = "ability,access,accessible,accomplished," +
                          "adaptability,addressed,Admittedly,adopt,Agility," +
                          "allow,allows,analyzed,apparent,application," +
                          "applications,approach,approaches,appro-priate," +
                          "architected,Architects,architecture,article," +
                          "associated,assumes,Author,backbone,back-end," +
                          "balanced,bandwagon,basis,belt-tightening," +
                          "beneficial,benefit,benefits,best,Bio,board,both," +
                          "bother,bottom,boundaries,brave,bring,broker," +
                          "brought,browser,build,building,bus,business," +
                          "calculations,case,caution,cell,certainly," +
                          "Challenge,chance,Change,changing," +
                          "characteristics,charging,Cheaper,choose,closing," +
                          "code,COM,COM/DCOM,companies,company,Compare," +
                          "competitive,complex,complexity,component," +
                          "components,Conclusion,configurable,conflicting," +
                          "consider,considerable,considerably," +
                          "consideration,consist,consumed,contexts," +
                          "controlled,Convert,cooperate,cope,Copyright," +
                          "CORBA,core,corporate,correctly,cost," +
                          "cost-efficient,costly,costs,couldn,countries," +
                          "create,creation,cultural,Customer,customers,cut," +
                          "data,DataChannel,data-mapping,days,deal,dealing," +
                          "defining,Definition,degrees,deliver,delivering," +
                          "demanded,dependent,described,describing,designs," +
                          "develop,developed,developers,development," +
                          "different,differing,directors,discussed," +
                          "discussion,distant,diverse,diversified," +
                          "diversity,don,dramatically,dynamic,easier," +
                          "e-business,economy,editor,effort,efforts,e-mail," +
                          "emphasize,enable,enterprise,enterprises," +
                          "environment,envision,envisioned,equation," +
                          "Especially,establish,examine,example,exception," +
                          "exciting,executives,existing,exp-ected," +
                          "expensive,experience,expert,extend,extended," +
                          "extent,external,Externally,extranet,factors," +
                          "fairly,fashion,Faster,few,file,firewall," +
                          "flexibility,focus,focuses,force,forcing,forget," +
                          "format,founding,functions,further,Furthermore," +
                          "future,general,generation,generic,get,going," +
                          "happy,hard,harvest,haven,hearts,help,Here," +
                          "heterogeneous,higher,highly,holds,hope," +
                          "hopefully,horizontal,HTTP,idea,illusive," +
                          "immediate,important,improve,improved,Inc," +
                          "including,incompatible,Increased,increasing," +
                          "independent,industry,inevitable,inflexible," +
                          "info@sys-con,infrastructure,infrastructures," +
                          "inside,instead,intangible,integral,integrate," +
                          "integrated,Integration,integrative,intensive," +
                          "interactive,interfaces,internal,Internally," +
                          "internationally,Internet,Internet-based," +
                          "intranet,Investment,investments,involved," +
                          "inzternally,issues,Java,Java-based,Journal,jump," +
                          "keep,kind,kinds,know,Language,large,last,Lastly," +
                          "layout,leads,learn,learned,least,let,level," +
                          "library,limited,lines,lingering,link,live,long," +
                          "long-term,look,looking,lost,lower-level," +
                          "machine-to-machine,magnitude,maintain,major," +
                          "make,map,mapping,marketplace,marks,means," +
                          "measure,Media,meets,member,mention," +
                          "message-oriented,methods,metrics,Microsystems," +
                          "middleware,Mikula,mind,minds,minimal,mix,model," +
                          "modeling,models,modified,MOM,month,much," +
                          "multiple,names,nature,need,needed,needs,net," +
                          "nevertheless,new,next-generation,nightmare," +
                          "Norbert,NORBERT@DATACHANNEL,norm,normal,note," +
                          "notion,not-so-distant,now,number,Numerous,OASIS," +
                          "objects,offering,often,opportunity,organization," +
                          "overcome,packaged,packages,Paradigm,parameter," +
                          "parameterized,part,partner,partners,past," +
                          "patterns,pay,PDAs,personnel,perspective," +
                          "pervasive,phones,pick,piece,pioneers,plan," +
                          "planning,platforms,plus,political,portal," +
                          "portals,potentially,pragmatic,pressures,problem," +
                          "problems,processes,product,productivity," +
                          "products,programmer,project,promising,proposal," +
                          "protocols,provide,provided,providers," +
                          "Publications,questions,quick,quite,rapidly," +
                          "rather,reach,react,realities,realized," +
                          "recognized,records,reducing,reengineering," +
                          "regardless,registered,regular,reintroduce," +
                          "relationship,relationships,release,relevant," +
                          "require,required,requirements,requires,research," +
                          "Reserved,resort,respective,result,Return," +
                          "returns,reusability,reusable,reuse,revenue," +
                          "Rights,risks,road,ROI,rubber,rules,said," +
                          "Satisfaction,satisfy,scale,schemas,scraping," +
                          "scratch,screen,scrutinized,seconds,section,seem," +
                          "seems,seen,sell,separate,serves,service," +
                          "services,Shift,shifts,shine,shipping,should," +
                          "sides,significant,simple,situation,skill,small," +
                          "SOAP/http,software,solution,sounds,sources," +
                          "specialized,specific,specification,standardized," +
                          "standards,standards-based,started,States," +
                          "staying,still,strategic,strong,stronger," +
                          "sufficiently,Sun,supplier,suppliers,support," +
                          "SYS-CON,system,systems,take,taken,takes," +
                          "tangible,targeted,technical,technologies," +
                          "technology,term,tested,testing,think,Thinking," +
                          "thus,time,time-intensive,took,toolbox,tools," +
                          "trademarks,traditional,training,translate," +
                          "transport,true,truly,type,types,ultimately," +
                          "undertaking,United,universal,unless,unlikely," +
                          "unrelated,upgrading,Upside,use,used,using," +
                          "utilize,utilizing,valid,vendors,vertical,via," +
                          "vice-chairman,walls,warrant,way,ways,Web," +
                          "Web-based,well-developed,well-known,whether," +
                          "work,workspaces,world,write,writing,wrote,WSDL," +
                          "Y2K,years";
entry.item[56].page = "archives/0103/mikula/index.html";
entry.item[56].description = "Web Services - What Have You Done for Me " +
                             "Lately?";
entry.item[57].keywords = "Access,accessing,accompanied,adapter,adopt," +
                          "alluded,analyze,and/or,announced,answer,Ant," +
                          "Apache,API,application,applications,approach," +
                          "approaches,appropriate,arbitrarily,architecture," +
                          "Archive,area,asking,assemble,asynchronous," +
                          "attachment,attachments,August,Author,automated," +
                          "automatically,availability,average,awkward,bad," +
                          "based,Basic,Basic-based,BEA,bean,beans,begin," +
                          "beginning,best,bind,binding,bindings,Bio,both," +
                          "bringing,browsers,bubbling,build,built,business," +
                          "buzzwords,Call,called,calling,calls," +
                          "capabilities,case,challenging,change," +
                          "characteristics,choose,class,classifies," +
                          "CLASSPATH,client,client/server,clients,closer," +
                          "code,coded,com,compare,compared,compile,Complex," +
                          "complexity,compliant,component,components," +
                          "configuring,connection,consequence,considered," +
                          "consisting,consultant,consulting,contains," +
                          "context,converting,Copy,Copyright,correct," +
                          "countries,coupled,Creating,creative,data," +
                          "database-related,day,decision,define,defines," +
                          "depending,depends,deploy,Deploying,deployment," +
                          "describing,Description,descriptor,design," +
                          "designed,designing,details,develop,developed," +
                          "developer,developing,development,difficult," +
                          "directives,directory,distributed,dll,document," +
                          "documentation,documented,doesn,download," +
                          "downloaded,downside,drawbacks,dynamic," +
                          "dynamically,ear,earlier,easier,easily,easy," +
                          "ebXML/SOAP-based,EJB,EJB-based,elements,E-mail," +
                          "embedded,emerging,enabling,Enterprise,envision," +
                          "equate,error,especially,etc,example,examples," +
                          "excited,existing,Explaining,extended,extension," +
                          "extensions,extensive,extensively,factory,few," +
                          "field,Figure,file,files,fill,find,firm,flagged," +
                          "fold,follow,footprint,forces,free,fully," +
                          "functionality,fundamental,further,future,gauge," +
                          "general,generate,generated,generating,get," +
                          "Getting,given,goes,good,guide,guiding,handle," +
                          "handled,happens,having,help,helping,Here,host," +
                          "idea,ignore,immediate,implement,implementation," +
                          "implemented,implementing,implements,Inc,include," +
                          "included,independent,info@sys-con,initial," +
                          "innovative,inputs,instantiated,instead," +
                          "integrating,integration,interface,interfaces," +
                          "Internet,interpret,interpretation,interpreted," +
                          "involving,issues,J2EE,Jakarta,jar,Java," +
                          "Java-based,Jersey,jmitchko@rcn,JMS,job,Joe,keep," +
                          "know,knowledge,Language,layer,leading,legacy," +
                          "level,libraries,library,license,limitations," +
                          "limited,little,logic,long,looking,made,major," +
                          "make,makes,managed,manually,mapped,marks," +
                          "matching,Media,meg,message,message-based," +
                          "message-driven,messages,messaging,Microsoft," +
                          "Microsystems,mind,minds,Mitchko,Moreover,move," +
                          "moves,much,name,navigate,necessary,need,needs," +
                          "new,Next,nice,nothing,not-too-distant,now," +
                          "number,Object,obtain,Obtaining,one-dimensional," +
                          "opinion,org/ant,output,Overall,overnight," +
                          "Overview,own,packaged,parameter,parameters,part," +
                          "passing,perfect,performing,Phase,placing," +
                          "platform,playing,plenty,plethora,plus,points," +
                          "poses,prepared,pretty,primarily,principle," +
                          "Procedural,process,products,professionals," +
                          "program,progress,Project,proprietary,Pros," +
                          "Protocol,provide,provides,proxy,Publications," +
                          "questions,queues,realized,registered,regression," +
                          "release,Remote,reply,represent,representation," +
                          "represented,request,requests,require,required," +
                          "requires,requiring,Reserved,resident,response," +
                          "résumés,return,review,right,Rights,rolling,RPC," +
                          "RPC-based,run,running,scene,schema,scope," +
                          "self-learning,senior,sense,separately,serve," +
                          "server,servers,service,services,servlet,session," +
                          "shifting,should,Simple,site,small,SOAP," +
                          "SOAP-based,software,Sound,specializing,specific," +
                          "specifications,specify,speed,standard,standards," +
                          "starting,stateless,States,static,step,still," +
                          "streamlined,strictly,structure,structures," +
                          "subsequently,substantial,Sun,support,supporting," +
                          "surprise,synchronous,SYS-CON,system,systems," +
                          "taken,technology,test,tested,testing,thin," +
                          "things,thought,tightly,time,to-morrow,too,took," +
                          "tools,top,trademarks,transaction,transform," +
                          "transparent,truly,two,type,types,underlying," +
                          "United,use,used,useful,uses,using,utilities," +
                          "utility,values,variables,vendors,version,Visual," +
                          "way,Web,WebLogic,whether,WLS,wonderful,words," +
                          "work,working,world,wrapper,wrapping,wrestle," +
                          "write,WSDL,WSGEN,XML,XML-based,yesterday";
entry.item[57].page = "archives/0103/mitchko/index.html";
entry.item[57].description = "WebLogic Server 6.1 by BEA Systems";
entry.item[58].keywords = "ability,adapt,adopted,adoption,advances,age," +
                          "agreed,agreements,album,apropos,articles," +
                          "assembly,attention,august,Author,bandwidth," +
                          "basis,Bio,bit,breath,broader,brokers,brought," +
                          "catch,change,changes,City,clear,collective,com," +
                          "communication,company,components,concept," +
                          "confident,connection,considering,consists," +
                          "consolidating,consultant,controlled,Copyright," +
                          "countries,covered,craze,database,David,deal," +
                          "debate,debated,defined,deployed,development," +
                          "differentiators,discover,discovered,Discovery," +
                          "discussed,discussion,distinct,don,easily,East," +
                          "Edge,edition,editorial,editor-in-chief,ELO," +
                          "E-mail,end,Enjoy,enterprise,enterprises,entire," +
                          "entitled,entry,example,expect,expects,expert," +
                          "expose,extremely,fashion,feature,few,first," +
                          "flurry,focus,found,given,global,gone,Gosling," +
                          "great,guarantees,happen,head,hit,holds," +
                          "Hopefully,HTML,idea,identify,implementability," +
                          "implementation,important,improved,improvement," +
                          "Inc,incarnation,included,including,independent," +
                          "industry,industry-by-industry,info@sys-con," +
                          "integral,intended,intense,interface,internal," +
                          "Internet,introduced,investigate,issues,James," +
                          "Java,Java-based,joined,Journal,key,know,leading," +
                          "least,led,less,Light,Little,Litwack,locate,look," +
                          "machine-to-machine,markedly,Market,marks," +
                          "massively,mechanism,mechanisms,Media," +
                          "meta-information,method,Microsystems,mind,minds," +
                          "model,month,music,Napster,neat,need,Net,network," +
                          "never,New,next,number,opinion,option,oriented," +
                          "overall,overlap,own,owner,panel,part,past," +
                          "peer-to-peer,people,perhaps,period,play,players," +
                          "pointed,pointing,positions,pre-emptive,prior," +
                          "probable,probably,proposition,Publications," +
                          "purposes,put,question,rather,reality,received," +
                          "redundant,registered,released,representatives," +
                          "required,Reserved,respected,Rhody,Rick,Rights," +
                          "Ross,RPC,saw,scenarios,Sean,sean@sys-con," +
                          "September,service,service-level,services," +
                          "several,shed,Shine,should,show,showing," +
                          "significant,simple,size,skeptical,songs," +
                          "speaking,spotlight,stable,States,still,strike," +
                          "Sun,support,SYS-CON,systems,technologies," +
                          "textually,theory,third-party,thought,time,took," +
                          "topic,topics,trademarks,trying,two,UDDI," +
                          "underlying,United,use,usefulness,users," +
                          "versioning,via,wanted,way,Web,work,wouldn,WSDL," +
                          "XML-based,year,years,York";
entry.item[58].page = "archives/0103/rhody/index.html";
entry.item[58].description = "Shine a Little Light";
entry.item[59].keywords = "ability,abstract,accept,acceptable,addition," +
                          "additional,address,advanced,afterthought,agree," +
                          "algorithms,all-or-nothing,allow,allows,alter," +
                          "analogies,answered,anyType,APIs,appear," +
                          "application,applications,approach,Approaches," +
                          "architectures,Ariba,arrives,article,assembled," +
                          "associate,assume,asynchronous,attach,attempted," +
                          "attributes,Author,automated,automating," +
                          "automation,avoids,background,base,based,basic," +
                          "behind,benefits,binary,binding,bindings,Bio," +
                          "BizTalk,body,both,boundaries,breed,built-in," +
                          "business,capabilities,carried,categorized,cause," +
                          "central,certain,certainly,changes,circumstances," +
                          "claimID,ClaimRequest,claim-requests," +
                          "ClaimResponse,ClaimServer-interface,classified," +
                          "client,coarse-grained,Code,cofounder," +
                          "collaborative,collection,COM,com/claim," +
                          "com/ClaimServer-interface,com/getclaim," +
                          "combination,combine,combined,communication," +
                          "companies,compilation,complex,component," +
                          "component-based,components,composed,comprise," +
                          "Conclusion,concrete,conform,conforms,confusing," +
                          "connectionless,construct,consume,consumption," +
                          "contain,containers,Contract,contributed," +
                          "Copyright,CORBA,cornerstone,corporate," +
                          "corresponding,countries,co-worker,creating," +
                          "creation,critical,CTO,curve,custom,data," +
                          "declaration,declared,deep,deeper,default,define," +
                          "defined,defines,definition,definitions,deployed," +
                          "deployment,describe,described,describes," +
                          "describing,Description,design,designed,designs," +
                          "detail,details,developer,developers,development," +
                          "different,difficult,discovery,distributed," +
                          "distributedobjex,distribution,division,document," +
                          "documents,doesn,domains,don,doxinc,driving," +
                          "duplicating,dynamic,dynamically,earlier,early," +
                          "ease,easy,efforts,EJB,electronic,element," +
                          "elements,e-mail,employed,encoded,encoding," +
                          "encodingStyle,endpoint,endpoints,engineered," +
                          "enhance,enhanced,Enterprise,entities,entry," +
                          "environment,envision,error-prone,essential,etc," +
                          "evidence,evident,examine,examined,example," +
                          "examples,existing,expands,experience," +
                          "experienced,experiment,experts,explains,expose," +
                          "exposed,expressing,extensible,external," +
                          "extremely,facade,familiarity,fashion,few,final," +
                          "firm,First,flexible,Flow,focusing,followed," +
                          "following,force,forethought,form,format,formats," +
                          "forms,Fortune,forward,found,foundation,four," +
                          "fragment,frequent,FTP,function,functions," +
                          "fundamental,fundamentally,further,Furthermore," +
                          "future,general,generated,generation,GET," +
                          "GetClaim,GetClaimService,GetClaimServiceBinding," +
                          "glance,good,granular,growth,hardware,helpful," +
                          "higher,highly,home,href,html,HTTP," +
                          "human-readable,IBM,IDL,illustrates,illustrating," +
                          "implement,implementation,implementations," +
                          "implemented,implements,imple-ments,importance," +
                          "important,inability,in-between,Inc,include," +
                          "included,including,increased,independent," +
                          "industry-standard,influx,info@sys-con," +
                          "information,infrastructure,inherently,input," +
                          "inspect,inspection,instead,InsuranceClaimsPort," +
                          "Integration,intent,interaction,intercomponent," +
                          "interface,Interface-Based,interfaces,internal," +
                          "interoperate,interposition,intimate,introduces," +
                          "Introduction,invocations,invoke,invoked,isn," +
                          "Issue,Java,Java-based,JavaBeans,JMS,job,JWSDL," +
                          "keep,keeping,key,knowledge,known,Language," +
                          "languages,last,later,leads,learning,lend,let," +
                          "level,leverage,leveraging,likely,limitations," +
                          "limiting,Listing,located,location,locations," +
                          "logic,logical,look,made,mail,major,majority," +
                          "make,manipulating,manipulation,manner,manual," +
                          "marks,markup,marshalling,mechanism,mechanisms," +
                          "Media,mentoring,message,messages,messaging," +
                          "metadata,Microsoft,Microsystems,Mike,mind," +
                          "minimal,missing,model,models,modular,motivation," +
                          "Move,mrichardson@Doxinc,much,multiple,name," +
                          "namespace,namespaces,nature,need,needs,network," +
                          "never,new,nicely,non-reusable,noted," +
                          "notification,Now,number,numerous,object," +
                          "object-oriented,objects,Objex,official,often," +
                          "one-way,operating,operation,operations,opposed," +
                          "ORB,order,org/1999/XMLSchema,org/soap/encoding," +
                          "org/soap/http,org/tr/wsdl,org/wsdl," +
                          "org/wsdl/soap,output,pair,paradigm,parameters," +
                          "part,parts,patterns,perspective,physical," +
                          "physically,piece,pluggable,point,polymorphism," +
                          "popular,port,ports,portType,possess,possible," +
                          "preceding,precise,precursor,predicting," +
                          "preferred,present,Presenting,problem,procedural," +
                          "procedure,procedure-oriented,process,processed," +
                          "processes,program,Programming,promises,promotes," +
                          "proponents,protocol,protocol-agnostic,protocols," +
                          "protocol-specific,providers,providing," +
                          "Publications,publicly,published,purpose,puzzle," +
                          "questions,ramifications,rather,RDF,reality," +
                          "received,referred,regardless,regards,registered," +
                          "registry,reliance,relies,rely,remain,remember," +
                          "represent,representation,represented," +
                          "representing,represents,request/response," +
                          "require,requires,Reserved,reside,Resource," +
                          "resources,respond,return,reusability,reusable," +
                          "Richardson,Rights,RMI/IIOP,root,rpc,RPC-based," +
                          "rtf,rules,run-time,Sample,scalability,scalable," +
                          "Schema,Schemas,SCL,second,section,seem,seen," +
                          "self-contained,self-describing,Semantic," +
                          "semantics,sending,sent,separated,separation," +
                          "serialization,serve,server,servers,serves," +
                          "service,Service-based,service-oriented,Services," +
                          "serving,session,seven,several,shift,should," +
                          "shown,simple,simply,single,sites,SMTP,SOAP," +
                          "soap/servlet/rpcrouter,soapAction,software," +
                          "solicit/response,solutions,soon,Source,specific," +
                          "specification,specified,specify,spirit,standard," +
                          "standardize,standardized,standards,standpoint," +
                          "state,stated,stateless,states,StatusCode,still," +
                          "string,Structure,structures,style,subsystem," +
                          "success,Sun,support,supports,syntax,SYS-CON," +
                          "system,systems,targetNamespace,team,technical," +
                          "techniques,technologies,technologist,technology," +
                          "tempted,terms,text,think,Toolkit,toolkits,tools," +
                          "trademarks,tradition,traditional,training," +
                          "transactional,transform,transformation," +
                          "transmitting,transparency,transport,trend,truly," +
                          "two,type,types,UDDI,ultimately,underlying," +
                          "understanding,understood,unfortunate," +
                          "Unfortunately,unique,unit,United,Universal," +
                          "unless,urn,use,used,using,UTF-8,utilize," +
                          "utilized,Utilizing,vendors,version,versioning," +
                          "vocabulary,Vol,wave,way,ways,Web,Web-based," +
                          "WebMethods,whereas,Wide,WIDL,wire,wishes,words," +
                          "work,workflow,workflow-based,workflow-centric," +
                          "working,World,WSDL,WSJ,www,XLANG,XML,XML-based," +
                          "xmlns,xmlsoap,XSD,years";
entry.item[59].page = "archives/0103/richardson/index.html";
entry.item[59].description = "An Introduction to WSDL - A Critical Part of " +
                             "an Automated Web";
entry.item[60].keywords = "abstract,access,achieve,achieved,Add,adding," +
                          "addition,address,ADO,aim,allows,alternative," +
                          "application,applications,approach,appropriate," +
                          "architectures,article,asmx,asmx/SayHello," +
                          "asmxWSDL,ASP,ASP/COM,ASP/COM-based,ASP-based," +
                          "aspects,aspURL,aspx,associated,associates," +
                          "asynchronous,Author,auto-generated,automated," +
                          "automatically,AUTOURL,B2B,based,basic,behind," +
                          "benefit,benefits,Beta,bind,binding,bindings,Bio," +
                          "BizTalk,blocks,Body,both,boundaries,bridge," +
                          "browser,Browsing,building,builds,built-in," +
                          "business,call,called,capability,challenging," +
                          "Change,chief,choose,class,classes,client,Code," +
                          "code/sample,coherent,collection,collectively," +
                          "com,com/biztalk,com/biztalk/techinfo/framwork," +
                          "COM/DCOM,com/developer/techOverview," +
                          "com/downloads,com/downloads/release,com/net," +
                          "com/vstudio/nextgen/default,com/Webservices," +
                          "COM-based,commerce,commitment,communicate," +
                          "communicated,communicating,communication," +
                          "communications,company,complete,complex," +
                          "Component,components,composed,compositedoc," +
                          "computer,computing,conceived,Conclusion," +
                          "connected,connecting,Console,consulting,consume," +
                          "consumer,contains,content,contract,Copyright," +
                          "core,corporate,countries,coupled,create,created," +
                          "CreateObject,creates,creating,creation,custom," +
                          "customers,customizable,data,databases,debugging," +
                          "de-facto,default,define,defined,defines," +
                          "defining,definition,definitions,delivery," +
                          "DemoApp,de-partment,departments,deployed," +
                          "deploying,deployment,describe,describes," +
                          "description,descriptions,designed,develop," +
                          "developed,Developer,developer/architect," +
                          "developers,developing,development,different," +
                          "difficult,Dim,Directory,disco,discovering," +
                          "discovery,discuss,disparate,dissemination,DLL," +
                          "document,documents,DTDs,dynamic,EAI,easily,easy," +
                          "e-business,echo,Edition,effectively,electronic," +
                          "E-mail,emerged,enables,encoding,encompass," +
                          "endpoints,enterprise,enterprise-based,entry," +
                          "Envelope,environment,environments,establish,etc," +
                          "EUDORA,evangelist,examine,exchange,Exchanges," +
                          "executing,exist,existing,expands,experience," +
                          "explore,explored,Explorer,expose,extend," +
                          "extended,extension,extensive,external,fashion," +
                          "fashions,faster,feature,feature-complete," +
                          "features,Figure,files,find,firm,first,flavor," +
                          "flexibility,flows,focus,focused,focusing," +
                          "following,form,format,formats,forms-based," +
                          "forward,foster,foundation,fourth,framework," +
                          "Framework-based,frameworks,full-featured," +
                          "functions,generated,generates,generation," +
                          "getting,given,global,going,goods,group,GUI," +
                          "happens,Header,HelloService,help,here,Hitesh," +
                          "homepage,horizontal,hosted,href,html,HTTP," +
                          "HTTP/HTTPS,implementation,implemented," +
                          "implements,important,impossible,Inc,includes," +
                          "including,independent,individual,industry," +
                          "inevitable,info@sys-con,information,initiative," +
                          "instance,integrated,Integration,integrations," +
                          "intend,intended,interact,interaction," +
                          "interdepartmental,interface,internal,Internet," +
                          "interoperability,intranet,intrasystem,invoke," +
                          "invoked,invokes,ISAPI,Issue,Java,Java-based,key," +
                          "knew,known,language,languages,large,later,layer," +
                          "leaving,Let,leverages,libraries,library,linked," +
                          "Listener,Listing,lists,little,local,localhost," +
                          "localhost/Web," +
                          "localhost/WebServices/HelloService,locate,logic," +
                          "looking,looks,loosely,main,major,make,makes," +
                          "management,manufacturing,mappings,marks,markup," +
                          "materials,mechanism,Media,message,Messages," +
                          "messaging,metadata,method,methods,micro," +
                          "Microsoft,Microsystems,migrate,migration,mobile," +
                          "Model,models,MSDE,MSDN," +
                          "msdn-files/027/001/580/msdn,msg,MSSOAP," +
                          "mssoapinit,multiple,name,namespace,natural,need," +
                          "needed,NET,NET-based,NETMyServices,Network,new," +
                          "next,next-generation,note,now,number,Object," +
                          "objects,offerings,Online,open,opening,operating," +
                          "operations,order,org,org/2001/XMLSchema," +
                          "org/2001/XMLSchema-instance,org/soap/envelope," +
                          "org/specification,org/TR/wsdl,organization," +
                          "outdated,Overview,own,packaged,page,Pages," +
                          "parameters,part,participating,partner,partners," +
                          "Personal,perspective,philosophy,platform," +
                          "pluggable,plumbing,popular,Portals,ports," +
                          "possible,Potentially,powerful,prebuilt," +
                          "pre-built,preparation,presentation,private," +
                          "problem,processed,processing,Production," +
                          "production-quality,Professional,program,project," +
                          "promote,proprietary,protocol,protocols,prove," +
                          "provide,provided,providers,provides,providing," +
                          "proxy,public,Publications,publicly,publish," +
                          "putting,queries,querying,Queuing,R/3,raw," +
                          "realize,reference,references,Referred,register," +
                          "registered,registries,registry,relational," +
                          "release,released,reliable,remote,remote/local," +
                          "rendering,represent,represents,Request,required," +
                          "requires,Reserved,response,return,returned," +
                          "returns,reusable,revision,revolutionize,rich," +
                          "Rights,runtime,said,SAP,SayHello," +
                          "SayHelloResponse,SayHelloResult," +
                          "SayHelloResultHello,scenario,scenes," +
                          "Schema-based,Schemas,script,scripts,SDK," +
                          "seamless,seamlessly,second,section,sections," +
                          "secure,separate,server,Servers,Service,services," +
                          "Services/HelloService,services-enabling,Seth," +
                          "seth@silverline,Setting,ships,shown,shows," +
                          "Siebel,silverline,Simple,simplifying,Simply," +
                          "single,slowly,SMTP,snippet,SOAP,SOAP/WSDL," +
                          "SOAP/WSDL-based,SOAP-based,SOAPClient,soft," +
                          "software,solutions,solving,soon,Source,sources," +
                          "SP2,space,speaking,specification,specifications," +
                          "SQL,stage,standard,standardize,standards," +
                          "standards-based,start,States,still,string," +
                          "structure,stub,Studio,submitted,Sun,supplier," +
                          "suppliers,support,supported,supporting,supports," +
                          "surfaced,syntax,SYS-CON,system,systems,Table," +
                          "tag,takes,targets,task,TCP/IP,Technical," +
                          "Technically,technologies,technology,test," +
                          "Testing,thing,three,tomorrow,tool,toolkit," +
                          "toolkits,tools,toolset,toolsets,top,TR/SOAP," +
                          "trademarks,traditional,traditionally," +
                          "transformation,transport,true,try,two,type," +
                          "types,ubiquitous,UDDI,umbrella,under,underlying," +
                          "unification,unit,United,Universal,unless," +
                          "upcoming,URI/URL,URL,use,used,useful,user,uses," +
                          "using,utf-8,utilize,utilized,vehicle,vendors," +
                          "version,versions,vertical,via,view,Visual,Vol," +
                          "vsdisco,W3C,wants,wave,way,ways,Web,Web-based," +
                          "WebMethod,WebService,well-defined,whether,Wide," +
                          "Windows,wireless/mobile,wizard,wizard-based," +
                          "work,workflow,world,worry,wrappers,WriteLine," +
                          "writing,written,wscript,WSDL,WSDL-based,WSJ,www," +
                          "XML,XML/SOAP-based,XML-based,xmlns,xmlsoap,xsd," +
                          "xsi,XSLT,Yellow";
entry.item[60].page = "archives/0103/seth/index.html";
entry.item[60].description = "Setting the Standards: Formalizing How " +
                             "Business Applications Communicate";
entry.item[61].keywords = "ability,adaptability,adaptable,adaptation,added," +
                          "advantages,allows,alternative,appearance," +
                          "applicable,application,applications,applies," +
                          "apply,applying,appropriate,architectural,Author," +
                          "benefit,benefits,Bio,black,bottom,bounded,box," +
                          "breaking,building,built,built-from-scratch," +
                          "Business,called,cases,CBD,CEO,change,changing," +
                          "characteristic,characteristics,Charles,cheaper," +
                          "clearly,CMEE,code,codes,cohesion,COM,complete," +
                          "complexity,component,component-based,components," +
                          "comprehensive,concept,confuses,confusing," +
                          "connections,constancy,constantly,construction," +
                          "contain,contract,Conversely,coordinate," +
                          "Copyright,core,countries,coupled,coupling," +
                          "creation,credited,customizable,decade,define," +
                          "deliver,deployed,deployment,describe," +
                          "descriptions,designed,developer,developers," +
                          "development,differences,difficult,direct," +
                          "disparate,documentation,ease,ecommerce,Edition," +
                          "EDITOR@FLASHLINE,effective,effectively," +
                          "efficiently,E-mail,enables,encapsulate," +
                          "Encapsulation,enormously,Enterprise,entirely," +
                          "equally,ever-increasing,evolution,excessively," +
                          "exclusively,exhibit,existing,exists,expecting," +
                          "experience,expertise,expose,extremely,fact," +
                          "famous,faster,first,Flashline,flexibility," +
                          "flexible,Ford,founder,founding,function," +
                          "functional,functionality,future,generic,given," +
                          "goal,granular,granularity,held,Henry,hidden," +
                          "high,high-quality,immutability,immutable,impact," +
                          "implement,implementation,implied,inaccurate,Inc," +
                          "include,incorporating,independent,info@sys-con," +
                          "initial,in-place,intended,interact,interacting," +
                          "interaction,interface,interfaces,Internet," +
                          "interrupting,inventor,issues,Java,Java-based," +
                          "job,key,know,large,leading,learned,lessons," +
                          "level,line,loosely,made,maintained,make,makes," +
                          "manage,managed,Manager,managing,mandates,marks," +
                          "matter,Media,method,methodologies,methods," +
                          "Microsystems,modality,models,modified," +
                          "modularity,monitored,monolithic,Much,multiple," +
                          "multitude,names,nearly,necessary,needs,negative," +
                          "never,next,offer,online,opportunities," +
                          "organizations,overhead,parallel,parts,passed," +
                          "patented,perform,performance,piece,portable," +
                          "predeployment,present,president,primary,prior," +
                          "productive,promoted,promotion,properly," +
                          "properties,provide,provider,public,Publications," +
                          "real,recognize,reduces,reflected,registered," +
                          "related,relatedness,reliability,remain," +
                          "represented,require,required,requirement," +
                          "requirements,requires,Reserved,response,retail," +
                          "Reusable,reuse,reused,rich,Rights,sample,SBD," +
                          "self-contained,series,service,service-based," +
                          "services,should,signature,signatures," +
                          "significant,similarities,simplicity,single," +
                          "sized,small,software,solutions,specific,spent," +
                          "Stack,standard,standards,States,step,still," +
                          "store,striking,subject,Sun,support,SYS-CON," +
                          "systems,tangible,tell,testing,too,tracked," +
                          "tracking,trademarks,traditional,tutorials,two," +
                          "ultimately,understandable,United,unlikely," +
                          "unrelated,upgrades,usage,use,utilize,variable," +
                          "variant,Web,well-thought-out,wisdom,years";
entry.item[61].page = "archives/0103/stack/index.html";
entry.item[61].description = "Effective Web Services";
entry.item[62].keywords = "access,accessing,activity,adapted,adding," +
                          "addition,adherence,adoption,aggregation," +
                          "aggregator,agreements,aligns,allows,amount," +
                          "anytime,API,applet,applicable,application," +
                          "applications,approaches,apps,architectural," +
                          "architecture,architectures,arranged,aspect," +
                          "aspects,assets,attempt,attributes,audience," +
                          "Author,automated,automobiles,Availability," +
                          "back-end,Based,behalf,benefits,best,billing," +
                          "billion,Bio,blocks,Blueprints,both,brand,breed," +
                          "bring,broadest,browser-centric,browsers," +
                          "business,businesses,business-to-consumer,called," +
                          "calls,capabilities,capable,captured,careful," +
                          "caused,cell,center,central,channel,channels," +
                          "clear,clicking,client,clients,client-side," +
                          "clipping,coauthor,collection,collections,com," +
                          "combination,combinations,coming,commerce," +
                          "communities,community,compared,compelling," +
                          "complexity,concept,conduit,conduits,connect," +
                          "connections,consider,construction,consulting," +
                          "consumer,consumers,content,content-oriented," +
                          "context,contrast,control,convenient,coordinate," +
                          "coordinating,coordination,Copyright,corporate," +
                          "cost,cost-effective,countries,coupled,couples," +
                          "cover,covering,create,critical,CTO,customer," +
                          "customers,customized,data,databases,day," +
                          "decision-making,decreased,deep,defined,deliver," +
                          "delivered,delivery,demand,demands,density," +
                          "described,design,Designing,desktop,develop," +
                          "developed,developers,developing,device,devices," +
                          "dictates,direct,directory,displays," +
                          "Distinguished,distributed,diversity,dominant," +
                          "dominates,dotcom,drive,driven,driver,driving," +
                          "dynamic,dynamics,easily,e-commerce,economic," +
                          "economy,editing,effect,effective,E-mail," +
                          "emphasis,employee,employees,enable,enabled," +
                          "encourage,end,enduring,enforcing,engine," +
                          "Engineer,engineering,enhances,enjoyed," +
                          "enterprise,enterprises,entire,entirely," +
                          "environment,environments,especially,established," +
                          "events,evolved,examine,example,executes," +
                          "existing,expand,expanded,expensive,experience," +
                          "external,Factor,failures,familiar,fashion," +
                          "feature,fed,feeds,field,finer-grained,firewall," +
                          "firmly,First,flexibility,flexible,flow,flows," +
                          "focus,focused,focuses,following,foothold,form," +
                          "formal,formats,foster,foundation,fueled,fully," +
                          "functional,functioning,functions,fundamental," +
                          "further,gained,generate,generation,generator," +
                          "generically,genesis,geographical,give,giving," +
                          "goals,governing,granularity,great,greatly,grow," +
                          "growing,growth,Hal,handled,handling,handset," +
                          "haven,headlines,heavier-weight,heavy,help,Here," +
                          "High,high-level,highly,history,hits,host,HTML," +
                          "ideal,identifies,identity,impacts,implosion," +
                          "implying,improved,Inc,include,includes," +
                          "including,inclusion,independence,independent," +
                          "individual,individuals,industry,influx," +
                          "info@sys-con,information,infrastructure," +
                          "infrastructures,inside,instance,instant,Instead," +
                          "integrated,integration,interact,interaction," +
                          "interactions,interest,interfaces,intermediating," +
                          "internal,Internet,investment,iPlanet,isolated," +
                          "ISPs,items,J2EE,Java,Java-based,knows,largely," +
                          "large-scale,LCD,leads,legacy,level,levels," +
                          "leveraging,life,lifting,likely,load,local," +
                          "location,logic,Logical,longer,loosely,lower," +
                          "loyalty,mainstay,major,make,management,maps," +
                          "market,marks,maximize,means,measured,mechanism," +
                          "media,meeting,memberships,message,messages," +
                          "method,methods,metrics,microservices," +
                          "Microsystems,milieu,mind,model,models,modes," +
                          "monitor,monolithic,move,multi-channel," +
                          "multiplicity,mundane,nature,navigating,nearly," +
                          "needs,network,networked,networks,new,news,next," +
                          "notification,now,number,object,objects,offer," +
                          "offers,off-the-shelf-approach,old,online," +
                          "opposed,orchestrating,order,ordering," +
                          "organization,output,overall,overload,overloaded," +
                          "overwhelming,packages,page,Pages,parameters," +
                          "partners,passive,past,PCs,perform,performing," +
                          "performs,personal,personalizing,phone,place," +
                          "platform,play,players,poised,policies,policy," +
                          "population,portal,portals,position," +
                          "possibilities,practical,predictable,preferable," +
                          "preferences,prepared,presence-enabled,present," +
                          "presentation,primary,prime,privacy,Private," +
                          "problem,process,process-driven,processes," +
                          "processing,produces,productivity,programs," +
                          "promises,promoted,proper,provide,provides," +
                          "providing,province,provisions,Publications," +
                          "quality,quickly,quotes,range,ranging,Rather," +
                          "recap,recognition,recognizes,recovery," +
                          "redistributes,refactoring,refers,reformatting," +
                          "regarding,registered,relationship,reliability," +
                          "rely,remains,represent,representing,request," +
                          "require,required,requirements,Reserved,response," +
                          "return,revenue,right,Rights,rise,role,roles," +
                          "rules,safely,satisfaction,satisfy,savings,scope," +
                          "second,second-generation,sections,security," +
                          "sense,sequencing,series,server,servers," +
                          "server-side,service,services,services-on-demand," +
                          "several,shallow,shields,shift,side,significant," +
                          "significantly,simply,sites,situation,smart,SMS," +
                          "SOAP,software,solid,solution,soon,sources,space," +
                          "specialized,specific,standards,States,static," +
                          "Stern,stern@sun,still,stock,story,streams," +
                          "substantially,Sun,support,surrounding," +
                          "switchboard,SYS-CON,systems,Taken,targeted," +
                          "tasks,technical,technologies,technology," +
                          "template,tempting,term,termed,terms,text,thick," +
                          "thick-client,thin,thing,thought,Thus,tightly," +
                          "time,trademarks,traditional,transaction," +
                          "transactional,transactions,trend,turned,two," +
                          "type,types,ultimately,underlying,understood," +
                          "United,universal,updates,use,used,user,users," +
                          "uses,using,value,value-added,vastly,vehicle," +
                          "viewing,views,Virtual,vision,wake,wave,way,ways," +
                          "weather,Web,well-managed,wireless,won,work," +
                          "workflow,world,XML,Yellow";
entry.item[62].page = "archives/0103/stern/index.html";
entry.item[62].description = "Second-Generation Portals";
entry.item[63].keywords = "A2A,adopt,adoption,advantage,affordable,align," +
                          "allow,allowing,announce,Application," +
                          "application-to-application,approach,area,arena," +
                          "argue,artifacts,assimilate,augment,augmented," +
                          "Author,B2B,based,bases,basis,beginning,behind," +
                          "Bio,birth,body,bootstrap,broader,Builders,built," +
                          "business,businesses,business-to-business," +
                          "capabilities,catalogue,catXML,clearly,co-author," +
                          "code,com,commerce,commercial,commercially," +
                          "commitment,communities,community,companies," +
                          "company,configured,consider,consistent," +
                          "consolidation,content,context,contribute," +
                          "control,controllable,Copyright,countries," +
                          "couplings,critical,customers,data,David,define," +
                          "definitions,departments,dependable,deployed," +
                          "designing,details,developed,development," +
                          "different,differentiate,direct,directories," +
                          "directory,drove,dynamic,EAI,easy,e-business," +
                          "ebXML,ebXML-based,ebXML-compliant,EDI,EDI-based," +
                          "efficient,electronic,E-mail,embeds,enable," +
                          "enabling,engine,enhance,enhanced,ensure," +
                          "Enterprise,enveloping,essence,example,excellent," +
                          "exchange,exchanges,existing,expansion,expected," +
                          "experience,extensive,eyes,facets,fact,factor," +
                          "factors,first,foundation,functions,fundamental," +
                          "fundamentally,future,Given,global,goal," +
                          "government,Green,groups,handling,HTML,http,IBM," +
                          "immediately,implement,implementation," +
                          "implementations,implementing,implements,Inc," +
                          "includes,independent,industries,industry," +
                          "info@sys-con,information,Informaton," +
                          "infrastructure,initiative,initiatives," +
                          "integration,interaction,interactions," +
                          "interchange,interchanges,interest,interface," +
                          "interfaces,interfacing,Internet," +
                          "interoperability,interoperable,investments,iWay," +
                          "iwaysoftware,Java,Java-based,keen,key,known," +
                          "Larger,least,level,long-term,low-level,machine," +
                          "machine-addressed,major,make,marks,mass,mature," +
                          "meaning,means,mechanisms,Media,message," +
                          "messaging,MHS,Microsystems,natural,need,needed," +
                          "needing,needs,networks,new,notions,November,now," +
                          "oasis-open,offer,old-style,open,opportunities," +
                          "org,org/committees/regrep,organizations," +
                          "original,overall,own,package,Packing,pages,part," +
                          "participants,partner,people,physical,piece," +
                          "place,platforms,play,player,players,position," +
                          "prerequisites,Press,process,processes," +
                          "processing,product,profile,profiles,promote," +
                          "provide,provides,Providing,Publications,puzzle," +
                          "queries,query,querying,quickly,range,reach," +
                          "realize,registered,registries,registry,related," +
                          "released,releases,relevance,reliable,remote," +
                          "replacing,represents,required,requirements," +
                          "Reserved,response,responses,responsible,return," +
                          "revolution,rich,Riders,Rights,robust,role,roll," +
                          "Routing,RPC,saw,scrambling,scripting,seek,seen," +
                          "semantics,Server,serves,service,service-based," +
                          "services,showcased,significant,simple,site," +
                          "sites,smooth,SOAP,SOAP-based,software," +
                          "specifically,specification,specifications," +
                          "sponsors,stable,standard,standards,States,steps," +
                          "strategic,structures,suite,Sun,support," +
                          "supporting,sustained,SYS-CON,system,systems," +
                          "take,team,Technologies,technology,things,tModel," +
                          "tools,toolsets,trademarks,trading," +
                          "transformation,Transport,TRP,two,ubiquitous," +
                          "UDDI,understand,underway,United,use,using,value," +
                          "vendor,Vendors,vital,Web,Webber,wide,Work," +
                          "working,www,XML,XML-based,xmlglobal,XTS,years," +
                          "Yellow";
entry.item[63].page = "archives/0103/webber/index.html";
entry.item[63].description = "Using ebXML & Web Services";
entry.item[64].keywords = "accept,access,accessed,accessible,accomplish," +
                          "acknowledged,acknowledgement,ActiveWorks," +
                          "adaptor,Adaptors,Administered,Administration," +
                          "agent,allow,allows,alternative,analysis,API," +
                          "application,applications,approach,appropriate," +
                          "architecture,aren,Author,Barbash,bbarbash@csc," +
                          "BEA,bind,binding,Bio,both,Brian,build,business," +
                          "called,calls,capability,centralized,choice," +
                          "choose,chooses,chosen,class,classes,client," +
                          "clients,com,commits,communicating,communication," +
                          "component,components,Computer,configurable," +
                          "Configuration,configure,connection,Connections," +
                          "connects,console,consultant,Consulting," +
                          "consumers,contains,control,controlled,Copyright," +
                          "Corporation,countries,cover,CPU,create,created," +
                          "creating,creation,data,database,databases," +
                          "default,defines,delivered,dependency,deployment," +
                          "descriptors,design,desired,destination," +
                          "destinations,details,determine,developer," +
                          "developers,Development,distributed," +
                          "documentation,don,driver,drivers,earlier,easier," +
                          "easy,Editor,EJBs,E-mail,enable,enhancements," +
                          "Enterprise,environment,establish,established," +
                          "etc,ETX,event,example,examples,executed,exist," +
                          "existing,extended,external,facilitate,factories," +
                          "factory,Figure,file,files,first,flavors," +
                          "flexibility,flexible,formats,framework,full," +
                          "fully,further,Future,Group,guidance,hand," +
                          "helpful,heterogeneous,housed,IBM,identified," +
                          "identify,III,illustrates,implementation," +
                          "implemented,Inbox,Inc,include,includes," +
                          "including,incorporate,incorporated,incorporates," +
                          "independent,independently,individual," +
                          "info@sys-con,information,initialization,inside," +
                          "Installation,installed,integrate,integration," +
                          "interacts,interface,interfaces,investments," +
                          "issued,items,Java,Java-based,JDBC," +
                          "JDBC-compliant,JMQ,JMS,JMS-compliant,JNDI,Last," +
                          "leading,legacy,leverage,leveraged,listed," +
                          "Listening,logical,lookup,machine,major," +
                          "management,managers,managing,marks,mechanism," +
                          "mechanisms,Media,Medway,mentioned,message," +
                          "message-driven,message-oriented,messages," +
                          "messaging,method,methods,Microsoft,Microsystems," +
                          "middleware,Milford,mode,modes,module,modules," +
                          "MOM,MQSeries,MSMQ,multi-plug,name,necessary," +
                          "neutralizing,new,newest,Note,object," +
                          "object-oriented,objects,obtain,obtained,ODI," +
                          "often,open,OpenTrade,optimized,option,options," +
                          "Oracle,Orbita,overall,paradigms,parameters," +
                          "party,Pentium,per,perform,placed,point-to-point," +
                          "predefined,presents,Price,prior,procedure," +
                          "process,processes,processing,products," +
                          "Professional,properties,proprietary,provide," +
                          "provided,provides,Publications,publish," +
                          "publish/subscribe,publishers,publishing,pure," +
                          "queue,queue-based,queueing,queues,raised,RAM," +
                          "range,reads,receiving,regards,registered," +
                          "registration,relational,released,releases," +
                          "reliable,relies,remaining,Rendezvous,reply," +
                          "repository,requests,Reserved,Retrieve," +
                          "retrieving,returns,review,Rights,Road,run-time," +
                          "RV5,RV6,SALES,sales@spirit-soft,sample," +
                          "scenarios,Sciences,second,send,sending,sent," +
                          "separate,Series,server,services,servlet,session," +
                          "several,should,simple,site,Software,sources," +
                          "specializes,specific,specifies,specify,Spirit," +
                          "SpiritAdmin,SpiritJMQ,SpiritSoft,SpiritWave," +
                          "Standard,startup,States,storage,stored," +
                          "straightforward,subscribe,subscribed,subscriber," +
                          "subscribers,subscribing,Subscription," +
                          "Subsequently,subsystem,Suite,Summary,Sun," +
                          "supplement,supplied,support,supports,SYS-CON," +
                          "system,systems,takes,task,technical,Tel,Test," +
                          "third,three,Tibco,ties,tool,topic,topics," +
                          "trademarks,transacted,transferring,transport," +
                          "transportation,transports,tree,two," +
                          "Unadministered,Under,underlying,unique,United," +
                          "Unix,use,used,user,users,uses,using,validate," +
                          "vendor,vendor-independent,vendor-specific," +
                          "Versant,version,via,Wave,WaveProfile," +
                          "WaveProfiles,ways,Web,WebLogic,WebSphere," +
                          "whether,Wildcards,Windows,Working,written,XML";
entry.item[64].page = "archives/0201/barbash/index.html";
entry.item[64].description = "SpiritWave from SpiritSoft";
entry.item[65].keywords = "A2B,abstract,access,accessed,Accessing," +
                          "accomplish,act,action,actionable,actions,add," +
                          "adding,addition,additional,address,adoption," +
                          "aforementioned,air,algorithms,allowing,allows," +
                          "amount,amounts,analysis,analyze,APIs,appears," +
                          "Appliance-to-Business,application," +
                          "application/x-www-form-urlencoded,applications," +
                          "apply,approach,architectural,arrive,arrives," +
                          "aspects,assets,attractive,authenticated," +
                          "authentication,Author,authorization,authorize," +
                          "authorized,automated,automatically,automobiles," +
                          "availability,behind,benefit,best,billing," +
                          "billions,Bio,bit,blurring,both,bound,brethren," +
                          "bring,browser-based,business,calculation,call," +
                          "calling,Canosa,capability,capable,Capturing," +
                          "cases,certain,chains,check,chemicals,chief," +
                          "circuit,circuits,clarify,cleaning,client,code," +
                          "collect,collected,collecting,com,combine," +
                          "combines,coming,commercial,communicate," +
                          "communicates,communications,companies,company," +
                          "compiler,complex,Complexity,complicated," +
                          "component,computer,computing,concept,concrete," +
                          "condition,conditioning,conferences,confuse," +
                          "connect,connected,connecting,connection," +
                          "considerations,constituencies,constrained," +
                          "constraints,consumables,contain,Content-Length," +
                          "Content-Type,contribute,control,copiers," +
                          "Copyright,Corporation,cost,costs,countries," +
                          "create,created,creating,credentials,critical," +
                          "customer,customizable,data,database,days," +
                          "decisions,defines,degree,delivered,Design," +
                          "designed,detected,determined,detractors," +
                          "developer,developers,device,devices,diagnosis," +
                          "diagnostic,diagnostics,didn,different,direction," +
                          "disappointing,discussion,dispenser,Dispensing," +
                          "distributed,document,doesn,dollar,dollars,don," +
                          "down,drawback,dreams,dynamically,earlier,earth," +
                          "ease,easily,e-commerce,efficiency,efforts," +
                          "eliminate,E-mail,embedded,enabling," +
                          "encapsulation,encoding,encryption,end," +
                          "end-to-end,engine,engineering,engines," +
                          "enterprise,environment,equipment,era,ERP," +
                          "especially,essence,Event,events,EventService," +
                          "EventService/EventServlet,evolution,exacerbate," +
                          "example,examples,execute,exist,existing,exists," +
                          "experience,expose,exposing,extensibility," +
                          "extract,extremely,face,failure,fantastic,faster," +
                          "fault,features,field,Figure,file,filter,find," +
                          "fine,firmware,fix,flexibility,follows,form," +
                          "Fortunately,Fortune,framework,full,full-blown," +
                          "fully,function,functionality,functions,further," +
                          "Furthermore,gain,gases,generating,generator,get," +
                          "giving,goal,goes,good,greater,hand,handle," +
                          "handling,hard-coded,hidden,high,high-end," +
                          "highlighted,highly,historical,History,hood,HTTP," +
                          "HTTP/1,humorous,imagination,Imagine,immediately," +
                          "implementation,implementations,Implementing," +
                          "implements,in-between,Inc,including," +
                          "incorporating,increasing,increasingly," +
                          "incredibly,independent,indicate,industry," +
                          "info@sys-con,information,input,inside,installed," +
                          "integrated,Integration,intelligence,intelligent," +
                          "interact,interface,interfaces,Internet," +
                          "Internet-enabled,intimidating,inventory," +
                          "invocation,invoke,invoked,involved,issue,Issues," +
                          "Java,Java-based,jcanosa@questra,John,June,keep," +
                          "kitchen,knowledge,language,large,LCD,less,Let," +
                          "Limited,lines,liquids,literally,little,local," +
                          "log,longer,lost,low-end,lower-end,lowly,Luckily," +
                          "magnitude,main,major,make,makes,making," +
                          "management,manufacturing,March,marks,matter," +
                          "means,mechanism,Media,memory,mentioned,message," +
                          "metering,microprocessor,microprocessors," +
                          "Microsystems,million,mobile,model,models," +
                          "monitoring,motion,motor,MotorFail,motors,moved," +
                          "moving,much,multiple,namely,native,needs," +
                          "network,networking,new,nnnn,Note,noticeably," +
                          "Notification,number,numerous,object-oriented," +
                          "offered,office,often,old,onerous,OOP,operating," +
                          "operation,operational,order,Ordering,org," +
                          "org/SOAP,org/TR/wsdl,Outbound,output,outsell," +
                          "Overview,parameters,parsed,parser,parsing,part," +
                          "parts,PDA,people,perform,performing,pervade," +
                          "pervasive,placed,plug,point,port,POST,power," +
                          "powerful,predefined,prehistoric,present," +
                          "presented,pretty,private,problem,problematic," +
                          "process,processing,processor,procurement," +
                          "produces,production,programming,proper," +
                          "proponents,proprietary,provide,provided," +
                          "provider,provides,providing,proxy,public," +
                          "Publications,publish,pumping,purported,put," +
                          "Questra,quickly,ranging,rapidly,rated,real," +
                          "realized,reduced,References,registered," +
                          "registries,remote,remotely,reordering," +
                          "replacement,replenishment,request,requests," +
                          "required,Reserved,Resource,resources,response," +
                          "rest,result,results,returned,revenues,Rights," +
                          "routine,routines,rules,satisfaction,say," +
                          "scenario,schedule,scientist,Security,seem,seems," +
                          "sending,sends,sense,sent,September,sequence," +
                          "series,served,server,service,services,sessions," +
                          "several,severe,shipped,short,should,shown,shows," +
                          "significantly,silent,simple,single,site,size," +
                          "small,SOAP,SOAP-encoded,software,sold,solution," +
                          "solutions,sounds,spare,speak,speaker,speaking," +
                          "specialty,specific,specifically,specification," +
                          "speed,standalone,standard,standards,started," +
                          "States,status,steps,still,stopped,storing," +
                          "submission,SubmitEvent,Submitting,suggested," +
                          "suited,Summary,Sun,supply,support,supporting," +
                          "supports,suppose,surrounding,SYS-CON,system," +
                          "system-level,systems,Take,takes,taking,talk," +
                          "targeted,task,tear,technician,technologies," +
                          "technology,tend,terms,things,thought,three,time," +
                          "too,tools,trademarks,trade-offs,training," +
                          "trapped,tremendous,trigger,trip,true,truly,turn," +
                          "tutorial,two,types,UDDI,ultimately,under," +
                          "Unfortunately,United,upgrades,ure,URL," +
                          "URL-encoded,usage,usage-based,use,used,user," +
                          "using,valuable,value,value-added,variety,vast," +
                          "verb,visit,W3C,warehouse,way,ways,wear,Web," +
                          "well-pared,Whether,wildest,wireless,workers," +
                          "workflow,workings,works,workstation,world,wrap," +
                          "wrapper,wraps,write,WSDL,www,XML,XML-based,year," +
                          "years";
entry.item[65].page = "archives/0201/canosa/index.html";
entry.item[65].description = "Bringing Web Services to Smart Devices";
entry.item[66].keywords = "`zip,access,accomplish,ACla,AClass,activation," +
                          "add,added,addition,additional,Admin,advisory," +
                          "alizer,ancestors,answer,apa,Apache,API," +
                          "application,applications,Approach,arbitrary," +
                          "arrived,article,assigned,assLoader,assume," +
                          "attempt,Author,back,Background,Base64,based," +
                          "basic,bat,batch,BClass,Bean,began,begin,best," +
                          "biggest,bin,binary,Bio,block,bootstrap,bos,Both," +
                          "bottom,browsing,builds,byte,byteArray," +
                          "ByteArrayInputStream,ByteArrayOutputStream,call," +
                          "callable,called,calls,case,catch,caught,chance," +
                          "change,che,class,ClassDefDirectory,ClassDefHost," +
                          "ClassDefPort,classes,ClassLoader,ClassNotFound," +
                          "ClassNotFoundException,classpath,client,close," +
                          "cnfe,Code,com,command,comments,compile," +
                          "complaints,complicated,consider,consists," +
                          "consults,contained,contains,contents,convert," +
                          "Converting,copy,Copyright,core,couldn,countries," +
                          "create,created,cut,dangerous,data,decode," +
                          "deerializer,default,delegate,delegates," +
                          "delegation,demonstration,deployed,deployment," +
                          "DeploymentDescriptor,Depository,depot,der," +
                          "Desciptor,describe,described,describing," +
                          "descriptor,deserialized,deserializer," +
                          "deserializers,determine,developers,development," +
                          "didn,difference,different,digging,directory," +
                          "discovered,discussed,disk,displayed," +
                          "documentation,don,do-nothing,dotted,download," +
                          "downloaded,earlier,Easton,ect,ectSerializer," +
                          "Edit,Edition,elegant,E-mail,encode,encoded," +
                          "encoding,encryption,engineer,entire,envelope," +
                          "environment,er/deserializer,example,examples," +
                          "Exception,exchange,execute,executed,expected," +
                          "explained,explaining,exposes,extension," +
                          "extensions,Extract,failing,familiar,few,Figure," +
                          "figuring,file,files,final,finally,find," +
                          "findClass,First,fit,flush,following,format," +
                          "forName,found,four,Framework,further,get," +
                          "getMyObject,getObject,getting,give,going,good," +
                          "got,Gui,guidance,hadn,half,handle,having,heavy," +
                          "here,home,host,html,http,hurdle,hurdles,IBM," +
                          "implement,implementation,implements,Inc,include," +
                          "independent,indications,info@sys-con,Input," +
                          "instance,instantiated,Instead,Interface," +
                          "interfaces,invoke,invoked,invoking,IObjDepot," +
                          "Issue,izer,J2SE,Jakarta,jar,Java,Java-based," +
                          "JavaBean,JavaMail,job,know,left,length,Life," +
                          "lifting,line,lines,list,Listing,listings,Little," +
                          "load,loaded,Loader,loaders,loads,localhost," +
                          "located,location,look,looked,looking,machine," +
                          "made,mail,mailing,main,makes,mapping,mappings," +
                          "marks,marshal,marshall,marshalled,Media," +
                          "mentioned,method,methods,Microsystems," +
                          "Mini-Course,mistake,model,modifications," +
                          "modifies,Modify,Move,MyURL,MyURLCl,MyURLClass," +
                          "MyUrlClassLoa,MyURLClassLoader,name,named,need," +
                          "needed,needs,network,new,Note,notice,now,null," +
                          "Obj,objde,ObjDepot,Object,ObjectDepot,ObjectIn," +
                          "ObjectInputStream,ObjectOutputStream,objects," +
                          "ObjectSerializer,ObjectToArray,ObjSe,objser," +
                          "ObjSerial,ObjSerializer,ObjSerializerLoader," +
                          "ObjToArray,ois,Okay,oos,org,org/site/binindex," +
                          "org/soap/index,org/xerces-j,original,originally," +
                          "override,own,package,page,parameter,parent," +
                          "Parser,part,pass,passed,paste,patent,path,place," +
                          "Platform,point,posted,pot,powerful,predefined," +
                          "prevent,println,probably,problems,Procedure," +
                          "programming,programs,project,properly," +
                          "properties,provide,public,Publications,purpose," +
                          "purposes,put,putStream,ran,reached,read,reading," +
                          "readObj,readObject,realized,receive,received," +
                          "receiver,refer,reference,referencing,referent," +
                          "refers,Reflection,register,registered,registry," +
                          "relay,remark,remarked-out,Remember,Remote," +
                          "remove,removed,Removing,reply,represent," +
                          "requires,Reserved,respectively,restriction," +
                          "retried,retrieved,retrieves,return,returned," +
                          "returns,rializer,right,Rights,ROPE,RPC,run," +
                          "Running,sample,saw,scale,scope,security,seen," +
                          "send,sender,sensitivity,sent,Seri,serializ," +
                          "Serializable,serialize,serialized,serializer," +
                          "SerializerLoader,serializers,server,service," +
                          "services,several,shall,should,show,shows,simple," +
                          "sink,site,sites,SOAP,soap/admin/index," +
                          "SOAPMappingRegistry,software,Source,spent," +
                          "Standard,Start,started,statements,States,stored," +
                          "Stream,String,subject,suggested,sun,supported," +
                          "SYS-CON,system,takes,Tapping,TcpTunnel," +
                          "TcpTunnelGui,technical,thought,three,throw," +
                          "thrown,throws,time,toByteArray,Tomcat,tool," +
                          "toolbox,toolkit,tools,top,trademarks,transfer," +
                          "transmitted,tried,true,trusted,try,trying," +
                          "turned,two,type,type-mapping,types,under," +
                          "understand,United,unmar,unmarshall,unmarshalled," +
                          "unmarshalling,upset,URL,URLClass,URLClassLoader," +
                          "use,used,uses,using,util,utility,value,variable," +
                          "Version,Vol,wasn,way,weaston@us,Web,webapps," +
                          "Whenever,window,Wire,wondered,word,words,work," +
                          "worked,working,works,workstation,write," +
                          "writeObject,written,WSJ,wssetup,Wyn,Xerces,xml," +
                          "years,zip";
entry.item[66].page = "archives/0201/easton/index.html";
entry.item[66].description = "SOAP on a ROPE - Requested Objects Passed " +
                             "Elegantly";
entry.item[67].keywords = "accessible,accounting,acquisitions,address," +
                          "advance,advanced,advantage,agencies,agent," +
                          "agreements,air,aircraft,airline,Airlines," +
                          "airport,airports,Airways,alive,Alliance,allowed," +
                          "allowing,American,analysts,application,approach," +
                          "approximately,apps,architecture,areas,ash," +
                          "attendance,Author,automating,back,backbone," +
                          "background,basis,beard,began,Benefits,best," +
                          "billing,Bio,biometric,bit,bleeding,both,British," +
                          "build,business,buzzword,calls,capital,captured," +
                          "cargo,cell,center,chain,chairman,challenge," +
                          "challenging,change,changes,Changing,cheaper," +
                          "check,cigar,Citrix,clearance,clearly,clients," +
                          "clock,close,closely,closer,clouded,cold," +
                          "collection,com,coming,communicate,companies," +
                          "company,complete,comprised,Computer,concentrate," +
                          "conception,considerable,consignments,consultant," +
                          "consumers,control,Copyright,core,cost-effective," +
                          "cost-prohibitive,costs,couldn,countries,covert," +
                          "create,critical,cultural,customer,customers," +
                          "Customs,cut,daily,data,days,day-to-day,deals," +
                          "decision,decisions,defined,deliver,delivered," +
                          "Dell,demanded,demanding,department,departments," +
                          "deploy,deployed,deployment,deregulation," +
                          "designing,desktop,developers,developing," +
                          "development,didn,difference,different," +
                          "differentiate,difficult,dispatch,dispatched," +
                          "divisions,door,door-to-door,DOS-based," +
                          "double-digit,driver,ease,East,EDI,efforts," +
                          "Ellingson,E-mail,embed,emerged,emergence," +
                          "employee,enabled,end,ending,enforce,ensured," +
                          "environment,equipment,especially,establish," +
                          "Europe,EVA,evaluated,event-triggered,everyday," +
                          "example,excess,exchange,expand,expenditure," +
                          "experience,experiencing,eXtend,Extranet,faced," +
                          "facilities,facing,failed,fairly,Far,FedEx," +
                          "feeder,feel,fees,few,field,fight,fighting,Fills," +
                          "fired,firm,first,firsthand,fit,flier,Flight," +
                          "float,flow,fly,focus,Folklore,forced,foreign," +
                          "format,forwarders,found,Fox,freelance,freight," +
                          "Frequent,front,front-end,full,functional," +
                          "functionality,functions,future,generated," +
                          "globalization,goals,going,goods,gray," +
                          "ground-handling,growth,hairs,handle,handling," +
                          "having,head,heads,high,hopes,host,house,houses," +
                          "huge,human,immediate,import,important," +
                          "impressive,inaccurate,inbound,Inc,independent," +
                          "individuals,industry,info@sys-con,information," +
                          "infrastructure,initial,Inland,integrated," +
                          "integration,integrators,Interfaces,internal," +
                          "international,Internet,intranet,inventories," +
                          "inventory,Investment,invoked,issues,Japan,Java," +
                          "Java-based,JIT,job,jobs,joint,jump,Just-In-Time," +
                          "keep,keeps,key,keying,King,kiosk,knew,know," +
                          "Korean,labor,laid,Larry,leader,left," +
                          "lellingson@biz-process,less,leverage,leveraged," +
                          "license,licensing,limited,list,location," +
                          "locations,lock,locked,logistics,long,longer," +
                          "look,looking,Lord,low-cost,lower,Lufthansa," +
                          "luring,made,major,majority,makes,mall,manage," +
                          "management,manner,manpower,Manual,manufacturing," +
                          "market,marketing,marks,massive,material," +
                          "meaningful,means,Media,meeting,Mergers,messages," +
                          "Microsystems,mid,million,mind,minute,model," +
                          "moment,money,months,move,movement,movements," +
                          "moving,much,Naperville,near,need,needed," +
                          "Needless,network,New,nights,norm,Now,nowhere," +
                          "numbers,offering,office,off-the-shelf,old," +
                          "On-airport,once-fierce,online,open,operating," +
                          "operation,Operational,operations,operators," +
                          "opportunity,Oracle,Oracle-based,organization," +
                          "outside,outsource,Outsourced,Outsourcing," +
                          "overall,package,painstaking,part,partners," +
                          "Passenger-facing,passengers,people,per,perfect," +
                          "performed,period,personnel,phase,philosophy," +
                          "phone,phones,pick,pieces,place,platforms,played," +
                          "player,players,points,Polar,portal,position," +
                          "possible,postponed,pounds,power,practices," +
                          "predetermined,present,presented,president,price," +
                          "prices,pricing,prior,Pro,probably,problem," +
                          "problems,process,processes,processor,produce," +
                          "product,production,products,programs,project," +
                          "Projected,prompted,provide,provided," +
                          "Publications,purchases,Purolator,put,quality," +
                          "quickly,quite,RAD,radical,raw,realized," +
                          "real-time,redesign,reengineering,referred," +
                          "regarding,registered,rekeying,relationship," +
                          "release,relevant,reminders,reported,required," +
                          "requirements,Reserved,resources,result,retailer," +
                          "Return,revenue,Rights,rivals,road,rock,rolled," +
                          "rollout,run,Sales,saved,saw,say,screens," +
                          "seamless,seat,seats,second,seen,self-service," +
                          "sent,served,Server,servers,service," +
                          "service-oriented,services,seven,severely,shed," +
                          "ships,SilverStream,simple,single,sit,six,skies," +
                          "sleepless,slow,small,snakeskin,soil,sold,solid," +
                          "Solution,soon,sophisticated,sounds,source," +
                          "sources,specializing,specific,spending,starts," +
                          "States,statistics,status,stay,staying,still," +
                          "stop,storage,stream,streamed,streamline," +
                          "strengths,strictly,structure,stuck,suc-ceed,Sun," +
                          "suppliers,supplies,supply,surge,swamped,SYS-CON," +
                          "system,systems,take,tend,Terminal,thin,thing," +
                          "think,three,ticking,time,time-to-market," +
                          "tonnages,trademarks,trading,traditional," +
                          "transform,transformation,transmit,travel," +
                          "traveler,travelers,tremendous,trucking,true," +
                          "turn,turned,two,uncovered,undergoing,underlying," +
                          "understand,Unfortunately,United,unlimited," +
                          "updates,UPS,use,used,user,users,using,Vendor," +
                          "via,vice,vision,volumes,wanted,warehouse,wasn," +
                          "way,Web,Web-enabling,whether,Windows,witnessed," +
                          "work,worked,working,Worknet,world,worldwide," +
                          "Wyse,XML,year,Zealand";
entry.item[67].page = "archives/0201/ellingson/index.html";
entry.item[67].description = "Transforming Alliance Airlines' Business " +
                             "Operations Using SilverStream eXtend";
entry.item[68].keywords = "accessed,accomplished,ActiveSync,add,addition," +
                          "application,applications,Apress,archive,area," +
                          "article,ask,asked,asmx,ASP,aspsymbols,assembled," +
                          "Assuming,attendance,Author,AUTOURL,a-zA-Z,back," +
                          "based,Basic,begin,bet,binaries,Bio,blocks,body," +
                          "book,both,box,brand,bring,Browse,building," +
                          "button,ByVal,call,called,calling,capabilities," +
                          "capable,case,Catch,certain,Chapter10Serv,chief," +
                          "choice,choose,chosen,Chr,class,Click,Client," +
                          "clients,Close,CLR,Code,CoEnvelope,com," +
                          "com/home/stocks/quotes," +
                          "com/mobile/downloads/emvt30,com/webservices," +
                          "com/webservices/getQuote,command,Command1_Click," +
                          "comments,communications,Compact,complicated," +
                          "computer,concerned,concludes,Conclusion," +
                          "connected,consists,contact,contents,context," +
                          "convey,copy,Copyright,Corp,corporate,countries," +
                          "create,created,CreateObject,CreateParameter," +
                          "Creating,CType,data,debugging,decimal," +
                          "declaration,declaring,default,demonstration," +
                          "Derek,derek@xb,develop,developer,developers," +
                          "Development,Device,devices,different,Dim,DISCO," +
                          "discussed,discussion,display,displaying,dll,don," +
                          "download,downloaded,easier,easy,elegantly," +
                          "E-mail,eMbedded,Emulation,emulator,End,Enter," +
                          "entered,Envelope,environment,equal,etc,EUDORA," +
                          "evangelist,event,example,excellent,exception," +
                          "excerpts,Exit,Expand,experience,experts," +
                          "Explorer,expose,exposed,expression,expressions," +
                          "Extensions,extracting,fairly,familiar,farm," +
                          "favorite,Fell,Ferguson,Figure,finally,Finance," +
                          "find,finish,first,focus,follow,followed,form," +
                          "formidable,forty,four,four-letter,framework," +
                          "Frameworks,free,FTP,fuel,full,Function," +
                          "functioning,fundamental,general,get,getQuote," +
                          "GetResponse,GetResponseStream,gets,given,good," +
                          "greatly,Group,headquarters,href,HTTP," +
                          "HTTPTransport,HttpWebRequest,HttpWebResponse," +
                          "hwreq,hwres,IHTTPTransportAdv,i-Mode,important," +
                          "imports,Inc,include,independent,indicate," +
                          "indication,industry,industry-standard," +
                          "info@sys-con,information,infrastructure," +
                          "inheriting,Inherits,inspection,install," +
                          "installation,installer,Installing,installment," +
                          "inStream,interested,interesting,Internet," +
                          "Invalid,invited,invocation,invoke,invoking,isn," +
                          "Issue,Item,Java,Java-based,kinds,Kit,know,known," +
                          "Language,languages,Last,Launch,length,letters," +
                          "leverage,line,lines,links,Listing,literature," +
                          "little,localhost/Chapter10Server/Service1," +
                          "Locate,location,long,Looking,Loop,low-level," +
                          "Lycos,magazine,make,makes,making,marks,Match," +
                          "means,meantime,Media,menu,message,messages," +
                          "method,MethodName,Methods,Microsoft," +
                          "Microsystems,mobile,MobileDotNet,moment,MsgBox," +
                          "Name,named,namespace,native,need,NET,networking," +
                          "New,next,nice,nomenclature,Now,nowadays,numbers," +
                          "numerical,object,objects,obtain,occurrence," +
                          "older,Open,out-of-the-box,package,page," +
                          "parameter,parameters,parse,parsed,parsing,part," +
                          "pass,passing,pathname,pause,PCs,people,Perl," +
                          "phrase,planned,Platform,playing,Pocket," +
                          "pocketsoap,point,popular,pop-up,portion," +
                          "possible,power,preceding,prepended,presented," +
                          "preview,price,Private,probably,process," +
                          "production,Program,Project,Projects,promises," +
                          "prompt,properly,properly-formed,properties," +
                          "protocol,protocols,provided,psEnvelope,pSOAP," +
                          "psTransport,Public,publication,Publications," +
                          "publicly,purchase,purposes,Putting,questions," +
                          "quote,range,ReadByte,readership,real,reason," +
                          "Receive,receiving,recognized,recommend,Redmond," +
                          "Regex,RegexOptions,registered,regsvrce,regular," +
                          "RegularExpressions,released,remote,request," +
                          "Reserved,responds,response,responsible,results," +
                          "returned,returning,returns,review,rgExp," +
                          "right-click,Rights,role,run,Runtime,Sale,sample," +
                          "say,SDK,SDL,second,section,seem,seems,seen," +
                          "Select,send,sense,sent,Serialize,series,served," +
                          "service,Service1,services,several,should,show," +
                          "showing,shown,Similarly,Simon,simple,Simply," +
                          "simulated,single,Singleline,site,Smart,SMTP," +
                          "sneak,SOAP,SOAPAction,SoapRpc,SoapRpcMethod," +
                          "SOAP-style,socket,Software,sole,Solution,sorts," +
                          "Source,speak,speaker,special,Specifically," +
                          "standard,Start,starts,States,step,steps,still," +
                          "stock,stock-quoting,stocks,store,stored,Stream," +
                          "strictly,string,strRequest,strResponse,Studio," +
                          "Sub,Suba,Success,summit,Sun,support,symbol," +
                          "SYS-CON,System,tag,taken,takes,TCP/IP,teaching," +
                          "technologies,technology,tell,tells,temp," +
                          "template,terminates,text,Text1,Thankfully,thing," +
                          "three,throw,thrown,Timeout,tool,Toolkit," +
                          "toolkits,Tools,trademarks,traffic,translate," +
                          "Transport,travels,true,Try,two,two-part,Type," +
                          "UDDI,under,United,Unzip,up-to-the-minute,URI," +
                          "URL,use,used,user,using,utilized,value,variable," +
                          "verify,versa,version,via,vice,View,Visual,Vol," +
                          "walk,WAP,ways,Web,WebMethod,WebRequest," +
                          "WebService,welcomed,wide,Windows,wireless,wish," +
                          "wizard,work,World,world-renowned,WSJ,www,x86," +
                          "XML";
entry.item[68].page = "archives/0201/ferguson/index.html";
entry.item[68].description = "Invoking .NET Web Services from Mobile " +
                             "Devices Part 1 of 2";
entry.item[69].keywords = "@author,@copyright,@version,abundance,accepts," +
                          "access,accessing,accomplished,Acquires,action," +
                          "actions,activated/deactivated,Activation," +
                          "activity,Add,addCommand,adding,addition," +
                          "additional,Additionally,address,AddressBook," +
                          "addresses,advanced,Alert,AlertType,allocated," +
                          "allow,allowing,allows,AMS,analysis,anytime,APIs," +
                          "application,applications,appropriate,apps," +
                          "architecture,array,article,articles,attempts," +
                          "attention,Author,AUTOURL,background,bandwidth," +
                          "base64,based,basic,begins,beta,bin,Bio,bit,bits," +
                          "blank,blasted,bool,Boolean,bottom,break,bring," +
                          "build,built,business,button,called,Calling," +
                          "canvas,capabilities,carved,case,catch,category," +
                          "CDC,cell,cellular,characteristics,cheaper," +
                          "Choice,choices,choose,circuit-switched,class," +
                          "classes,classpath,CLDC,clean,Click,clicking," +
                          "Client,clients,clusters,coarse-grained,Code," +
                          "color,com,com/products/j2mewtoolkit,combined," +
                          "Command,commandAction,CommandListener,commands," +
                          "communication,compare,complete,complex," +
                          "complicated,component,components,computer," +
                          "computing,condition,configuration," +
                          "Configurations,confusion,Connected,connection," +
                          "consisting,consists,constant,constitutes," +
                          "constraints,constructor,consumer,Contains," +
                          "contrast,Copyright,core,corresponding,countries," +
                          "create,created,creating,creation,custom,CVM," +
                          "cycle,daemons,data,database,data-typing," +
                          "datetime,DEBUG,declare,default,define,defined," +
                          "defines,degrading,delve,demonstration,deploy," +
                          "Deploying,deployment,describing,design,designed," +
                          "desired,destroyApp,Destruction,detailed,details," +
                          "determine,developed,developer,developers," +
                          "developing,development,Device,devices," +
                          "device-specific,digital,directories,directory," +
                          "dis,disillusionment,Display,Displayable," +
                          "displayed,don,double,double-clicking,download," +
                          "downloaded,downloading,dropped,duration,Edition," +
                          "efficient,eight,else,E-mail,embedded,emulation," +
                          "emulator,emulators,encode,end,Enhydra,ensure," +
                          "entire,environment,environments,error,errors," +
                          "especially,essential,etc,EUDORA,event," +
                          "ever-changing,examine,example,Exception," +
                          "exceptional
