<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>coreContentOnly</title>
  <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/" />
  <link rel="self" href="http://www.corecontentonly.com/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2008-11-03T18:30:25.8051571-08:00</updated>
  <author>
    <name>Jason Stortz</name>
  </author>
  <subtitle>Oracle Fusion ECM Blog.  Are you "kuh n-tent" with your "kon-tent"?</subtitle>
  <id>http://www.corecontentonly.com/</id>
  <generator uri="http://dasblog.info/" version="2.2.8279.16125">DasBlog</generator>
  <entry>
    <title>Building Components With Apache ANT</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/11/04/BuildingComponentsWithApacheANT.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,9127709f-f37c-445e-8ce9-c99ecaf7a86c.aspx</id>
    <published>2008-11-03T18:30:25.805-08:00</published>
    <updated>2008-11-03T18:30:25.8051571-08:00</updated>
    <category term="Oracle UCM" label="Oracle UCM" scheme="http://www.corecontentonly.com/CategoryView,category,OracleUCM.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I have always wanted a quick way to build components without firing up ComponentWizard.
I'm not talking about the actual construction of the component like adding resources.
I'm talking about the assembly of the component zip file. Combing through the intradoc
user group and other online forums can yield a little discussion about Apache ANT
being used to construct component zip files. However, I did not find an easy reference
to an actual ant file for such purpose.
</p>
        <p>
So once we have this ability to create component zips what else can we do with it?
Most projects do not consist of a single component. The components are also not completed
in a linear fashion. Generally components that are completed will typically have adjustments
being made throughout the project. Using a tool like ant we can orchestrate the build
of multiple components at once. This orchestration can even include tasks such as
placing built components in shared folders or uploading them to an FTP location.
</p>
        <p>
As for using the Component Wizard to lay out the component architecture you might
want to add the build file as a component extra. Then the installation of the component
at a target location brings the build file along for the ride.
</p>
        <p>
Here's an example build file:
</p>
        <p>
&lt;project name="CompName" default="dist" basedir="."&gt;<br />
 &lt;property name="build.home" value="${basedir}/classes"/&gt;<br />
 &lt;property name="src.home" value="${basedir}/src"/&gt;<br />
 &lt;property name="compile.debug" value="true"/&gt;<br />
 &lt;property name="compile.deprecation" value="true"/&gt;<br />
 &lt;property name="component.root" value="component/${ant.project.name}/"/&gt;
</p>
        <p>
 &lt;path id="compile.classpath"&gt;<br />
  &lt;pathelement location="${basedir}/../../shared/classes/server.zip"/&gt;<br />
  &lt;pathelement location="${basedir}/../../shared/classes/jspserver.jar"/&gt;<br />
 &lt;/path&gt;
</p>
        <p>
 &lt;target name="clean"&gt;<br />
  &lt;delete dir="${build.home}"/&gt;<br />
  &lt;mkdir dir="${build.home}"/&gt;<br />
 &lt;/target&gt;
</p>
        <p>
 &lt;target name="compile" depends="clean"&gt;<br />
  &lt;javac srcdir="${src.home}" destdir="${build.home}" debug="${compile.debug}"
deprecation="${compile.deprecation}"&gt;<br />
   &lt;classpath refid="compile.classpath"/&gt;<br />
  &lt;/javac&gt;<br />
 &lt;/target&gt;
</p>
        <p>
 &lt;target name="dist" depends="compile" description="Package as a Fusion ECM
Component"&gt;<br />
  &lt;delete file="${basedir}/${ant.project.name}.zip"/&gt;<br />
  &lt;tstamp&gt;<br />
   &lt;format property="component.timestamp" pattern="yyyy_MM_dd_hh_mm_ss_aa"/&gt;<br />
  &lt;/tstamp&gt;
</p>
        <p>
  &lt;zip destfile="${basedir}/${component.timestamp}_${ant.project.name}.zip"&gt;<br />
   &lt;zipfileset dir="${src.home}" prefix="${component.root}src"/&gt;<br />
   &lt;zipfileset dir="${build.home}" prefix="${component.root}classes"/&gt;<br />
   &lt;zipfileset dir="${basedir}/resources" excludes="**/lockwait.dat"
prefix="${component.root}resources"/&gt;<br />
   &lt;zipfileset dir="${basedir}" includes="${ant.project.name}.hda"
fullpath="${component.root}${ant.project.name}.hda"/&gt;<br />
   &lt;zipfileset dir="${basedir}" includes="build.xml" fullpath="${component.root}build.xml"/&gt;<br />
   &lt;zipfileset dir="${basedir}" includes="readme.txt" fullpath="${component.root}readme.txt"/&gt;<br />
   &lt;zipfileset dir="${basedir}" includes="manifest.hda" fullpath="manifest.hda"/&gt;<br />
  &lt;/zip&gt;<br />
 &lt;/target&gt;<br />
&lt;/project&gt;
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=9127709f-f37c-445e-8ce9-c99ecaf7a86c" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Get That HCSF Data</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/10/24/GetThatHCSFData.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,0d1d2589-9ce8-4264-95b6-4d63c3b662db.aspx</id>
    <published>2008-10-24T12:50:26.4306697-07:00</published>
    <updated>2008-10-24T12:50:26.4306697-07:00</updated>
    <category term="Oracle UCM" label="Oracle UCM" scheme="http://www.corecontentonly.com/CategoryView,category,OracleUCM.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
By adding IsXml=1 to the end of the HCSF URL
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=0d1d2589-9ce8-4264-95b6-4d63c3b662db" />
      </div>
    </content>
  </entry>
  <entry>
    <title>It's Always Been Done This Way</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/10/22/ItsAlwaysBeenDoneThisWay.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,454868a0-e80d-4be1-bdfa-6f3723c99837.aspx</id>
    <published>2008-10-22T05:56:48.17-07:00</published>
    <updated>2008-10-22T05:56:48.1708593-07:00</updated>
    <category term="Mindlessness" label="Mindlessness" scheme="http://www.corecontentonly.com/CategoryView,category,Mindlessness.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
A group of scientists put five monkeys in a cage. In the center of the cage was a
step ladder, and a banana was hung from the very top. The monkeys scurried up the
ladder to retrieve the banana and then the scientists sprayed them with freezing cold
water to prevent them from reaching it. Each time they tried to go up the ladder,
they were again sprayed until none of the monkeys went up the ladder.
</p>
        <p>
The scientists removed one monkey from the cage and replaced it with a new monkey.
The new monkey saw the banana, saw the ladder and attempted to go up. The four original
monkeys, afraid of being sprayed with water, assaulted the new guy to prevent him
from going up the ladder. He had no idea why he was being attacked but he didn't go
up the ladder again.
</p>
        <p>
A second original monkey was removed from the cage and replaced with a new one. Same
thing: the new monkey attempts to go up the ladder to retrieve the banana, and once
again, this newest monkey is assaulted. Except this time, the first new monkey takes
part in the beating of the newest monkey. He has no idea why he is participating in
the beating, but nevertheless it happened to him.
</p>
        <p>
This process of bringing in new monkeys continues until there are no original ones
in the cage that were sprayed with cold water. But no monkey in this now completely
new group dares go up the ladder out of fear of being assaulted, not sprayed with
cold water. Again, it's always been done this way!
</p>
        <p>
          <hr />
        </p>
        <p>
        </p>
        <p>
Thanks to my co-worker Mark for pointing out this story. I'm sure several of you already
knew of its existence. I sure felt this applied to the business of content management
and incorporating new systems in general for companies. Think about content server’s
WebDAV capability. You install content server at company X. "Can we still look at
it with folders?" they ask? Why? Because that’s how they do it today, that’s how they’ve
always done it...
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=454868a0-e80d-4be1-bdfa-6f3723c99837" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Site Studio Default Link Format Per Site</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/10/20/SiteStudioDefaultLinkFormatPerSite.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,01026b3c-9120-486e-92fc-4e60bed7e6a1.aspx</id>
    <published>2008-10-20T09:01:36.485-07:00</published>
    <updated>2008-10-20T09:01:36.4852604-07:00</updated>
    <category term="Oracle WCM" label="Oracle WCM" scheme="http://www.corecontentonly.com/CategoryView,category,OracleWCM.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
With the newer versions of Site Studio (10gR3, at least 10.1.3.3.3+) there is a handy
way to set the default link format for your site.  You can do this through the
Site Studio Designer and the setting is persisted in your Project XML file in Content
Server.  This is pretty handy if you want to do things like using one manner
of linking to data files for 90% of your content creation work.
</p>
        <p>
          <img src="http://www.corecontentonly.com/content/binary/DefaultLinkFormatMenu.jpg" border="0" />
        </p>
        <p>
 
</p>
        <img src="http://www.corecontentonly.com/content/binary/DefaultLinkFormatOptions.jpg" border="0" />
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=01026b3c-9120-486e-92fc-4e60bed7e6a1" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Accessing HTTP Header Information With iDocScript</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/10/15/AccessingHTTPHeaderInformationWithIDocScript.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,bf9cb2cd-d46f-448b-ac7d-c9b882aebee6.aspx</id>
    <published>2008-10-15T05:03:15.673-07:00</published>
    <updated>2008-10-15T05:07:02.0782753-07:00</updated>
    <category term="Oracle WCM" label="Oracle WCM" scheme="http://www.corecontentonly.com/CategoryView,category,OracleWCM.aspx" />
    <content type="html">&lt;p&gt;
Sometimes when you are performing some web programming in iDocScript it is necessary
to get at the HTTP Headers of the request. The headers are there, and they are available,
but they may be named something different from what you are expecting. For example,
"Accept-Language" will be available as "HTTP_ACCEPT_LANGUAGE".
&lt;/p&gt;
&lt;p&gt;
When I make a normal request and I spy on the request using a tool like Fiddler the
headers I am sending are listed out as:
&lt;/p&gt;
&lt;pre&gt;Accept: */*
Accept-Encoding: gzip, deflate
Accept-Language: en-us
UA-CPU: x86
User-Agent: Mozilla/4.0...
Connection: Keep-Alive
Host: localhost
Cookie: IntradocAuth=Internet; IdcLocale=English-US
&lt;/pre&gt;
&lt;p&gt;
Then, here are the request variables printed out by Content Server (matching from
above are bolded):
&lt;/p&gt;
&lt;pre&gt;&lt;b&gt;HTTP_ACCEPT=*/*&lt;/b&gt; &lt;b&gt;HTTP_ACCEPT_ENCODING=gzip, deflate&lt;/b&gt; &lt;b&gt;HTTP_ACCEPT_LANGUAGE=en-us&lt;/b&gt; &lt;b&gt;HTTP_USER_AGENT=Mozilla/4.0...&lt;/b&gt; &lt;b&gt;HTTP_CONNECTION=Keep-Alive&lt;/b&gt; &lt;b&gt;HTTP_HOST=localhost&lt;/b&gt; &lt;b&gt;HTTP_COOKIE=IntradocAuth=Internet;
IdcLocale=English-US&lt;/b&gt; REQUEST_METHOD=GET IdcAuthChallengeType=http IsSocketConnection=1
SERVER_NAME=localhost ThreadCount=1 SERVER_SOFTWARE=Microsoft-IIS/6.0 HTTP_CGIPATHROOT=/wcm/idcplg
RemoteClientHostAddress=127.0.0.1 ssoriginalurl=/web/index.htm GATEWAY_INTERFACE=CGI/1.1
REMOTE_ADDR=x.x.x.x SERVER_PROTOCOL=HTTP/1.1 IDC_REQUEST_AGENT=webserver SERVER_PROTOCOL_TYPE=NONE
QUERY_STRING=IdcService=SS_GET_PAGE&amp;amp;siteId=web&amp;amp;siteRelativeUrl=%2Findex.htm&amp;amp;ssUrlType=2
REMOTE_HOST=x.x.x.x REQUESTURI=/wcm/groups/system/documents/web_assets/wpl_www_jsp.jsp
RemoteClientPort=4444 SERVER_PORT=80 RemoteClientRemotePort=1231 CONTENT_LENGTH=0
IDC_REQUEST_CTIME=1224069779 PATH_TRANSLATED=c:\inetpub\wwwroot &lt;/pre&gt;
&lt;p&gt;
So, to use these in iDocScript I can call them by the names from this last list, with
something like &amp;lt;$HTTP_HOST$&amp;gt; or &amp;lt;$HTTP_ACCEPT_LANGUGAE$&amp;gt;
&lt;/p&gt;
&lt;p&gt;
Side Note, to get these variables printed out I put this code in my Site Studio page
(JSP). This caused my binder to print out to my page so I could see all the information
available to me.
&lt;/p&gt;
&lt;pre&gt;&lt;%=serverbean.evalIdcScp("trace(\"#all\", \"MyTest\")")%&gt;&lt;pre&gt;&lt;span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;&amp;lt;%=serverbean.evalIdcScp(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"trace(\"#all\",
\"MyTest\")"&lt;/span&gt;)%&amp;gt; &amp;lt;%=serverbean.evalIdcScp(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"MyTest"&lt;/span&gt;)%&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;%=serverbean.evalIdcScp("MyTest")%&gt; 
&lt;p&gt;
And finally, if you are passing in custom headers you are in for a treat because then
you may need a component to serialize your custom header.
&lt;/p&gt;
&lt;/pre&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=bf9cb2cd-d46f-448b-ac7d-c9b882aebee6" /&gt;</content>
  </entry>
  <entry>
    <title>Silverlight 2.0 Released</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/10/15/Silverlight20Released.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,1cd841ba-86df-4ba6-9b38-4f9e5c323bd4.aspx</id>
    <published>2008-10-14T19:01:38.122-07:00</published>
    <updated>2008-10-14T06:15:08.6405967-07:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.corecontentonly.com/CategoryView,category,NET.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Like them or hate them, Microsoft continues to be busy.  Personally, I like the
Silverlight platform and I think almost all forms of competition is good.  I
think Silverlight, while different, is good for the Flash/Air/Fireworks platforms. 
If nobody is chasing you, you don't try as hard.
</p>
        <p>
So anyway, Microsoft has released the production, final version of Silverlight 2.0!
</p>
        <p>
          <a href="http://silverlight.net/">http://silverlight.net/</a>
        </p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=1cd841ba-86df-4ba6-9b38-4f9e5c323bd4" />
      </div>
    </content>
  </entry>
  <entry>
    <title>SSEphoxImageSetting - A Content Server Configuration for Ephox</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/10/14/SSEphoxImageSettingAContentServerConfigurationForEphox.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,9f23751b-e92d-48cc-93dd-877ae78b422b.aspx</id>
    <published>2008-10-13T18:49:23.81-07:00</published>
    <updated>2008-10-13T18:49:23.8100867-07:00</updated>
    <category term="Oracle WCM" label="Oracle WCM" scheme="http://www.corecontentonly.com/CategoryView,category,OracleWCM.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
When oracle released the 10.1.3.3.3+ site studio product they delivered a new contributor
application along with new data file formats. Inside these data files the structure
has changed from previous versions. Here’s an example of the new format:
</p>
        <pre>
          <span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">&lt;?xml
version=<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"1.0"</span> encoding=<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"UTF-8"</span> ?&gt;
&lt;wcm:root xmlns:wcm=<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"http://www.stellent.com/wcm-data/ns/8.0.0"</span> version=<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"8.0.0.0"</span>&gt;
    &lt;wcm:element name=<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"HeaderImage"</span>&gt;&lt;img
border=<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"0"</span> alt=<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"Wide
Image"</span> src=<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"[!--$ssWeblayoutUrl('groups/public/documents/web_assets/wideimage.gif')--]"</span> /&gt;&lt;/wcm:element&gt;
&lt;/wcm:root&gt;</span>
        </pre>
        <p>
As you can see a near full path is embedded in the xml file. In this case if I were
to change the security group of this image from public to secure the page using this
data file would render with a missing image. The same is also true of the doc type
and/or account. What can we do about this?
</p>
        <p>
The documentation mentions that the function ssWeblayoutUrl() is able to work with
the dDocName: This script extension is used to determine the full web address of a
file from either the path or dDocName. This is most typically used for paths to images
in data files.
</p>
        <p>
Great. It turns out that through the use of a configuration variable added to config.cfg
or through the admin server under general configuration week in control what gets
embedded in data files. Note: this is available in build 251 or higher.
</p>
        <p>
SSWeblayoutUrlUsesDocNames=true
</p>
        <p>
On a related note, check out another blog post starring ssWeblayoutUrl over at Web
Monkey Magic.
</p>
        <p>
          <a href="http://webmonkeymagic.blogspot.com/2008/09/surprise-ssweblayouturl.html">http://webmonkeymagic.blogspot.com/2008/09/surprise-ssweblayouturl.html</a>
        </p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=9f23751b-e92d-48cc-93dd-877ae78b422b" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Keep Latest N Revisions</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/10/08/KeepLatestNRevisions.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,b04a22bc-44ea-4161-ad66-09aa759862e1.aspx</id>
    <published>2008-10-07T17:51:24.844-07:00</published>
    <updated>2008-10-07T17:51:24.8447523-07:00</updated>
    <category term="Oracle UCM" label="Oracle UCM" scheme="http://www.corecontentonly.com/CategoryView,category,OracleUCM.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
There are often a wide variety of reasons why someone may want to keep only the latest
n revisions of content in their content server. These reasons range all over from
keeping disk usage in check to a form of security/retention management. Whatever your
reason the process is pretty straight forward. I am going to show you how to setup
archiver to take out all but the latest X revisions. In a later post we can talk about
various ways to enact that archive on a scheduled basis.
</p>
        <p>
So, simply put, the secret to this is the Revision Rank (dRevRank) field. A lot of
times in the past I've tried looking at dRevLabel, dID, dDocID, but nope, the special
field you want is Revision Rank. Use the following steps to set up your archive: 
</p>
        <p>
        </p>
        <ol>
          <li>
Log onto your content server as a user with administration rights 
</li>
          <li>
Under "Administration" select "Admin Applets" and then fire up the Archiver applet 
</li>
          <li>
From the "Edit" menu select "Add" 
</li>
          <li>
Give your archive some kind of meaningful name 
</li>
          <li>
Provide a description, perhaps include something about the expected lifetime of this
archive? 
</li>
          <li>
Click "OK" 
</li>
          <li>
Select the new archive in the archive list and then click on the "Export Data" tab 
</li>
          <li>
From the Export Query section select "Edit" 
</li>
          <li>
Set the following field defintions 
<ol><li>
field to "Revision Rank" 
</li><li>
Set the Operator to "Is Greater Than" 
</li><li>
Set the value to "4" 
</li></ol></li>
          <li>
Click "Add", add and then "OK" 
</li>
          <li>
Under "Actions" click on "Export" 
</li>
        </ol>
        <p>
        </p>
        <p>
Great, now lets discuss some of these points. The Revision Rank field is zero based
(meaning it starts at zero) and that zero represents the most recent revision of the
content in question. The second most recent revision is denoted by a dRevRank of 1,
etc. For example, if you wanted to delete everything but the 5 latest revisions you
should set dRevRank to 4. If you wanted to only keep the most recent revsion set dRevRank
to 0.
</p>
        <p>
Upon selecting "Export" you will be prompted deleting the revisions from content server
during the export process. If you place a check mark in the check box the content
will be REMOVED from content server. The content will continue to exist in the archive
you just exported as long as you don't crack that open and delete it in there as well.
</p>
        <ol>
        </ol>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=b04a22bc-44ea-4161-ad66-09aa759862e1" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Larry Announces Two New Products - Both Hardware?</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/24/LarryAnnouncesTwoNewProductsBothHardware.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,47fffe8d-828f-401b-b914-0e13ddeb9e05.aspx</id>
    <published>2008-09-24T15:37:54.847-07:00</published>
    <updated>2008-09-24T15:37:54.8479485-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
In his keynote, Larry had several interesting things to say. First, he announced a
new product from Oracle. This is, in fact, their first ever hardware product. It is
called The Exadata Storage Server. I wonder what Network Appliances (a major sponsor
of OpenWorld) thinks of this? The Exadata Storage Server can be standalone or placed
in a grid of these things. He also talked about a new connectivity model between the
database and the storage server, named InfiniBand. This allows more data, faster,
from the disk system to the database.
</p>
        <p>
Hey look, another new product! This one is called The Oracle Database Machine. Good
Lord, it has 64 Intel Cores for database processing and 112 cores for storage processing
and gigabytes and gigabytes of RAM. And it holds some ridiculous number of Terabytes
of data, something like 168.
</p>
        <p>
          <a href="http://newsblaze.com/story/2008092415130300003.pnw/topstory.html">Get More
Info</a>
        </p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=47fffe8d-828f-401b-b914-0e13ddeb9e05" />
      </div>
    </content>
  </entry>
  <entry>
    <title>JDeveloper and Application Development Framework</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/24/JDeveloperAndApplicationDevelopmentFramework.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,152b41e7-0dd3-46b8-9c63-cd2a13788ac1.aspx</id>
    <published>2008-09-24T15:03:13.923-07:00</published>
    <updated>2008-09-24T15:03:13.9235192-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
While I’m waiting on Larry for his presentation I wanted to recap one of the session
from earlier today that I have not got around to posting about yet. Yeah, I’m a slacker.
The presentation was an overview of JDeveloper and the Application Development Framework.
</p>
        <p>
The presenter was very good, and he moved very quickly from topic to topic. The points
of the presentation were very good, but the demo was better. It was awesome. I’m getting
ahead of myself. Oops. I am going to try to sum this up: ADF allows Oracle themselves
to utilize developers of various degrees of expertise to quickly and efficiently build
useable, robust, efficient applications.
</p>
        <p>
Ok, let’s talk about the demo. That’s why we were all there anyway right?! In just
a little under 25 minutes the presenter (Shay? I’m probably spelling that wrong) created
a page that paged through data, displayed several master detail scenarios and allowed
updating. The whole thing looked nice and worked quickly. A lot of AJAX was built
in out of the gate. Graphing was built in. All in all, it was very, very cool.
</p>
        <p>
I have to do some thinking on how this works with ECM. I hope they will soon have
prefabricated ADF components to work with the Content Server, or even WCM. How does
the Open WCM concept fit into this? How? Why? So many questions, so few answers....
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=152b41e7-0dd3-46b8-9c63-cd2a13788ac1" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Just Larry</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/24/JustLarry.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,96f47d7b-56f9-4346-9293-5d52e8abb1c9.aspx</id>
    <published>2008-09-24T14:47:38.71-07:00</published>
    <updated>2008-09-24T14:47:38.7107546-07:00</updated>
    <category term="Mindlessness" label="Mindlessness" scheme="http://www.corecontentonly.com/CategoryView,category,Mindlessness.aspx" />
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Overwhelmingly I hear people refer to the leader of the Oracle Enterprise by just
"Larry".  Does he know we're all on a first name basis with him?  I wonder
what he thinks of that?  It's kind of comical, and maybe representative of several
social, psychological paradigms.  Are we attempting to socially elevate ourselves
by referring to a person of power and wealth on a first name basis?  Is it something
else?  I sure don't know.  But it did strike me as interesting.
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=96f47d7b-56f9-4346-9293-5d52e8abb1c9" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Remote Metadata Update Via Excel</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/24/RemoteMetadataUpdateViaExcel.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,fa6686db-fbcf-4990-972d-00030b4ffc72.aspx</id>
    <published>2008-09-24T08:24:20.556-07:00</published>
    <updated>2008-09-24T08:24:20.5568985-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <category term="Oracle UCM" label="Oracle UCM" scheme="http://www.corecontentonly.com/CategoryView,category,OracleUCM.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Some of you may have used or even still have an excel spreadsheet which can be used
to update metadata. This spreadsheet was originally provided by the former content
server creator, Stellent. I am actually unaware of the name or names of the original
author or authors and as such have not credited them here. Leave your name to take
credit!  Some people love it.  Some people hate it.  Either way, it
has been useful to me.
</p>
        <p>
The original style sheet allowed users to specify additional custom columns named
after their custom metadata. It offered two buttons. The first was “submit query”
which invoked the user defined query string located to the left of the button. The
second button “update” would cycle through each of the result records from the query
and update the metadata based on the values in the spreadsheet.
</p>
        <p>
I have updated the spreadsheet in two ways. I have added a login button which simply
causes a prompt for user credentials. The importance of this button is the reduction
in steps needed to update secured content. With the original spreadsheet the user
first had to search on public content only and invoke an update which then prompted
for credentials after which the user could conduct another search which would then
have the credentials to access secured content. With the login button we can now skip
this cycle. The second change is a new worksheet which contains configuration variables
for the searches. Currently there are three configuration variables including ResultCount,
SortField and SortOrder.
</p>
        <p>
          <img src="http://www.corecontentonly.com/content/binary/RemoteMetadataLoginButton.gif" border="0" />
        </p>
        <p>
Additionally I often get asked how one can use this spreadsheet to update metadata
only check-in’s. The trick is an additional column named createPrimaryMetaFile. This
column should be set to TRUE if that record represents a metadata only check in.
</p>
        <p>
          <img src="http://www.corecontentonly.com/content/binary/RemoteMetadataDefaultErrorMessage.gif" border="0" />
        </p>
        <p>
          <img src="http://www.corecontentonly.com/content/binary/RemoteMetadataAdditionalErrorMessage.gif" border="0" />
        </p>
        <p>
          <img src="http://www.corecontentonly.com/content/binary/RemoteMetadataAddColumn.gif" border="0" />
        </p>
        <p>
This file and all updates to it are presented here as-is with no support implied or
otherwise. As always, use at your own risk.
</p>
        <p>
 
</p>
        <p>
References:
</p>
        <p>
          <a onclick="javascript: pageTracker._trackPageview(&quot;/downloads/menu/remoteMetadataUpdater_20080924.xls&quot;);" href="http://www.corecontentonly.com/content/binary/remoteMetadataUpdater_20080924.xls">remoteMetadataUpdater_20080924.xls</a> (194
KB)
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=fa6686db-fbcf-4990-972d-00030b4ffc72" />
      </div>
    </content>
  </entry>
  <entry>
    <title>OOW Day Three: Goals</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/24/OOWDayThreeGoals.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,840e2a5a-859c-4be8-afc1-b13713e05054.aspx</id>
    <published>2008-09-24T08:03:14.619-07:00</published>
    <updated>2008-09-24T08:03:14.6193985-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Session-wise, I would like to hit these today:
</p>
        <p>
          <table border="0">
            <tbody>
              <tr>
                <td>
                  <font size="2">Time</font>
                </td>
                <td>
                  <font size="2">Room</font>
                </td>
                <td>
                  <font size="2">Description</font>
                </td>
              </tr>
              <tr>
                <td>
                  <font size="2">9:00 AM</font>
                </td>
                <td>
                  <font size="2">Marriott Golden Gate C1</font>
                </td>
                <td>
                  <font size="2">Basics of SOA Deployment for Enterprises</font>
                </td>
              </tr>
              <tr>
                <td>
                  <font size="2">11:30 AM</font>
                </td>
                <td>
                  <font size="2">Marriott NOB Hill AB</font>
                </td>
                <td>
                  <font size="2">Using Oracle SOA Suite and Oracle BPEL Process Manager to Integrate
and Extend</font>
                </td>
              </tr>
              <tr>
                <td>
                  <font size="2">1:00 PM</font>
                </td>
                <td>
                  <font size="2">Marriott Salon 5</font>
                </td>
                <td>
                  <font size="2">Reshaping Your Business with Web 2.0</font>
                </td>
              </tr>
              <tr>
                <td>
                  <font size="2">5:00 PM</font>
                </td>
                <td>
                  <font size="2">Marriott NOB Hill CD</font>
                </td>
                <td>
                  <font size="2">Optimizing User Engagement, Using Oracle Real-Time Decisions</font>
                </td>
              </tr>
            </tbody>
          </table>
        </p>
        <p>
In between all of these sessions I am hoping to finally get down to the demo grounds
today. The overall goal for the day is to learn as much as possible about SOA Suite.
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=840e2a5a-859c-4be8-afc1-b13713e05054" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Reducing Risk and Cost With Oracle Archiving</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/24/ReducingRiskAndCostWithOracleArchiving.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,08a7b32a-fada-4033-98c5-f2411f1e168e.aspx</id>
    <published>2008-09-23T18:03:30.592-07:00</published>
    <updated>2008-09-23T18:03:30.5923835-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
This session opened with a recap of active content versus historical content. Active
content was defined as documents, web content, images, etc. that are being actively
developed. Historical content was content that was not accessed, forwarded or replied
to in the last thirty days. It was noted that do to various litigation/liability issues
historical content needs to be online and discoverable instead of collecting cobwebs
on tape in a remote location.
</p>
        <p>
We learned not to forget about the traditional reasons for storage of historical content
via an archiving solution such as reduced, consolidated storage and the most common
scenario: disaster recovery. These things still exist, but the legality and liability
points are much stronger drivers and are immediate, real, substantial threats. Alongside
these reasons for needing archiving it is important to note the difference between
an online solution versus near-line or offline systems.
</p>
        <p>
The basic idea described was to archive content out of a source system with the OPTION
of leaving behind a stub or links and then take the core content and place this into
the Universal Online Archive. A tool named High Volume Importer was described for
loading content to the system. The system (somewhat because of the underlying requirement
of Oracle 11g Database) supports optional compression and de-duplication of content.
An example of an 8 core machine was used as a baseline in which they outlined a test
case of accomplishing the ingestion of 15 million emails a day.
</p>
        <p>
A set of services were outlined to work with or on top of UOA. The first was the currently
shipping Oracle Email Archive Service. In addition a service named File Server Archive
Service got some discussion, and it sounded pretty neat. The intention of this service
was to archive files from a windows network share or file server. The Oracle Archiving
Interface is a set of services that comprise the High Volume Importer and a basic
API for developers work with so that you can develop your own services on top of UOA.
The coming soon list of services included: Application Archive Service (transactional
data, etc.), SharePoint Archive Service, ECM Archive Services (includes non-Oracle
solutions such as Documentum), Image Archiving, and finally Desktop Archive Service.
</p>
        <p>
It would appear that ZL Technologies has a death grip on the market for services built
upon UOA at this point. It sounds like they have several of these services built out
and even a few more. All of their services were noted as being developed against UOA
via the Oracle Archiving Interface.
</p>
        <p>
It was unfortunate, but this session seemed more like a long advertisement for partner
based services built on top of UOA. This information is important to get out, but
there was little discussion UOA itself or any form of deep, let alone middle, dive
into UOA itself. Other topics were covered, and overall this was very informative,
I just wasn't the right target audience. :)
</p>
        <p>
They did give a really killer example of using this with email archiving though and
in the examle the cost of storage of email was reduced by 98%. This seemed to not
take into account the COST of buying UOA (oh, and it requires a license of Oracle
Enterprise Edition Database), but was neat anyway.
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=08a7b32a-fada-4033-98c5-f2411f1e168e" />
      </div>
    </content>
  </entry>
  <entry>
    <title>No REST for the Weary: REST APIs and the Activity Stream with Bob Fraser</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/23/NoRESTForTheWearyRESTAPIsAndTheActivityStreamWithBobFraser.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,9631d36b-3426-40f5-bb80-6f518575e07c.aspx</id>
    <published>2008-09-23T12:09:56.22-07:00</published>
    <updated>2008-09-23T12:09:56.2208138-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Bob Fraser, a Principal Product Manager for Enterprise 2.0, presented a session named
No REST for the Weary: REST APIs and the Activity Stream. This centered around working
within WebCenter. Of course, we start off with an overview of what Web/Enterprise
2.0 is. For the 3 people at the conference that don’t know.
</p>
        <p>
Interestingly, this session was less about REST itself and more specifically about
where and how it can be used in WebCenter, which was great. He also talked about security
with REST/WebCenter so he satisfied that basic need.
</p>
        <p>
A small byproduct of the demo was some discussion of curl, a command line URL invocation
application. Available out of the box on most new Mac and Linux systems this application
can be handy for automation scenarios and development. It is also available on Windows.
</p>
        <p>
This was really my first look at WebCenter Interaction, a product in the WebCenter
Suite. It is neat, but I am again surprised at the level of overlap with other products.
Certainly if you wanted get an application with features X, Y and Z you would have
several options from within Oracle alone.
</p>
        <br />
        <p>
References:
</p>
        <p>
          <a href="http://curl.haxx.se/download.html">cURL</a>
          <br />
          <a href="http://www.corecontentonly.com/content/binary/S298497.pdf">Presentation [PDF]
(2.33 MB)</a>
        </p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=9631d36b-3426-40f5-bb80-6f518575e07c" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Deploying a Web-Oriented Architecture with WebCenter/WebLogic</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/23/DeployingAWebOrientedArchitectureWithWebCenterWebLogic.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,6612ae44-7c52-44a2-a4f9-96db142a6cb1.aspx</id>
    <published>2008-09-23T09:52:39.34-07:00</published>
    <updated>2008-09-23T09:52:39.3405389-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I figured I have seen the Multisite Web Content Management presentation seventy-four
times now so I opted instead to go see a session about WebCenter/WebLogic/UCM. Just
prior to that we stopped by the Fusion Middleware Lounge to visit with Brian Dirking
and see who was out and about already. Then it was off to the session. Official title:
Deploying a Web-Oriented Architecture with WebCenter/WebLogic.
</p>
        <p>
A quote about WOA (Web Oriented Architecture) from Dion Hinchcliffe’s <a href="http://web2.socialcomputingmagazine.com/">Blog</a>:
</p>
        <p>
"In other words, the Web model provides a single, open, and unified information architecture
that is consistent, easily consumed, extremely scalable, securable, very reusable,
resilient, and highly federated." Wow, that sounds very sales-ish to me.
</p>
        <p>
There was, once again, more advertising about REST. This has been mentioned again
and again. Remember, REST is not really a new technology in the sense of age or implementation.
It is simply a different way of looking at web services. Make the time to learn about
it though, fairly easy once you get into it. Having said that though, I do not know
as though I’ve seen anyone implement a REST style call system for Content server…anyone
else? Something like:
</p>
        <p>
http://myserver/idc/DOC_INFO/<DID></DID></p>
        <p>
or
</p>
        <p>
http://myserver/idc/DOC_INFO_BY_NAME/<DDOCNAME></DDOCNAME></p>
        <p>
Would this be useful, would anyone care? Forever and ever Stellent, oh sorry, I meant
Fusion ECM Content Server, already had URL based accessibility, though I wouldn’t
call it strictly REST.
</p>
        <p>
Anyway, back to the session. They showed a little bit of AquaLogic Ensemble which
was used to pull some information off Facebook and then integrated that with a CRM
solution. Kind of neat.
</p>
        <p>
There was also a fair amount of discussion about using Dojo JavaScript Library with
WebLogic and a thing called Disc, some other framework. They also promoted JSON a
little bit. The WebLogic demo was very Web 2.0 oriented demonstrating changing things
in real time on the client side of the interaction.
</p>
        <p>
In the end, the demos were somewhat hurried and the message seemed to be more about
REST/JSON than about WebLogic. While WebCenter was in the title I do not believe it
was ever mentioned again. Maybe that was the brief look at Ensemble in the beginning?
</p>
        <p>
References:
</p>
        <p>
          <a href="http://www.oracle.com/products/middleware/user-interaction/webcenter-suite.html">WebCenter</a>
          <br />
          <a href="http://www.oracle.com/appserver/weblogic/weblogic-portal.html">WebLogic Portal</a>
          <br />
          <a href="http://dojotoolkit.org/">Dojo</a>
          <br />
          <a href="http://wlp.bea.com/">Example WebLogic Portal Site</a>
          <br />
        </p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=6612ae44-7c52-44a2-a4f9-96db142a6cb1" />
      </div>
    </content>
  </entry>
  <entry>
    <title>OOW Tuesday Kickoff</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/23/OOWTuesdayKickoff.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,e6aa1393-375f-41ea-9a41-f4fc58df1d6e.aspx</id>
    <published>2008-09-23T07:56:37.191-07:00</published>
    <updated>2008-09-23T07:56:37.1919585-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Several sessions look interesting today, especially at 5:00 p.m.  Like six of
them.  Sheesh.
</p>
        <p>
9:00 a.m. Deploying a Web-Oriented Architecture with WebCenter/WebLogic
</p>
        <p>
9:00 a.m. Multisite Web Content Management
</p>
        <p>
11:30 a.m. REST API's with Activity Stream
</p>
        <p>
1:00 p.m. Oracle Ensemble and New Integration Patterns
</p>
        <p>
5:00 p.m. Universal Online Archive
</p>
        <p>
5:00 p.m. Oracle Total Recall Hands-on Lab
</p>
        <p>
What to do, what to do.  I have until 9 or so to figure out how to split myself
to go to multiple places at the same time.  Don't hold your breath.
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=e6aa1393-375f-41ea-9a41-f4fc58df1d6e" />
      </div>
    </content>
  </entry>
  <entry>
    <title>A Pragmatic Strategy for Oracle Enterprise Content Management</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/22/APragmaticStrategyForOracleEnterpriseContentManagement.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,d5327daf-555e-469e-a8d1-240172ac4eab.aspx</id>
    <published>2008-09-22T16:57:02.56-07:00</published>
    <updated>2008-09-22T16:57:02.5607279-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Brian "Bex" Huff and Andy MacMillan delivered a session called "A Pragmatic Strategy
for Oracle ECM" which pushed some of the integration and cooperative concepts that
have been pervasive among the keynotes and sessions today. They describe their approach
to content management as more realistic than the message presented by many vendors
as "Hey, we’ll do it all". Their approach is also more tolerant of your existing content
repositories and your investment in those elements.
</p>
        <p>
They describe a situation where a client has several existing content repositories.
Some of these can be consolidated into your new strategic content management repository.
Some of them cannot. This can be due to technical issues or the fact that you have
spent a lot of money on those repositories and/or users are entrenched in using that
repository already. These previously existing repositories that perhaps service tremendous
load or importance but are not capable or selected as the strategic repository are
termed tactical repositories.
</p>
        <p>
The session then moved on to discuss federated software solutions to help control
and integrate your existing, tactical repositories with the feature set of your new
strategic enterprise wide solution. Examples of these federated software applications
included Secure Enterprise Search and Information Rights Management.
</p>
        <p>
Additionally, these two guys are writing a book together, potentially entitled "Transform
Infoglut: A Pragmatic Strategy for Oracle Enterprise Content Management" and it will
hopefully be delivered sometime around January 2009.
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=d5327daf-555e-469e-a8d1-240172ac4eab" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Bex Huff's Enterprise 2.0 Discussion Is Thought Provoking</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/22/BexHuffsEnterprise20DiscussionIsThoughtProvoking.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,fd291a24-1de4-4c7d-a514-6f073c12c5f3.aspx</id>
    <published>2008-09-22T14:53:20.758-07:00</published>
    <updated>2008-09-22T14:53:20.7586935-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I attended Brian "Bex" Huff's session entitled "Enterprise 2.0: What it is and How
You'll Fail". At first attendance was a little sparse, but by 20 minutes in we got
more than 15 people in the room. One of the biggest themes of the message was about
focus. Focus on Culture versus Technology. This is one of those points that is so
foundational to the concept at hand that once you hear you say to yourself, "Well
sure, that's obvious", but you wouldn’t normally come up with it on your own.
</p>
        <p>
We also heard an echo from the old Stellent days when he reminded us of the importance
of "Getting the right information at the right time to the right people in the right
format and context". This reminded me of the big launch of Profiles with 7.5.x Stellent
Content Server. It was true/relevant/important then and it still is today.
</p>
        <p>
There were a lot of concepts presented in the presentation and of them all the concept
of Social Capital was my favorite. This was somewhat new to me. The concept was not
new, but being able to linguistically wrap a name around the subject was a neat discovery.
The concept of Social Capital is described on Wikipedia. Basically it can be thought
of as referring to the value of the connection between employees and potentially even
vendors. People like to work with their friends and so projects get done quicker or
more thoroughly.
</p>
        <p>
In the end, I wonder how much push back corporate America will engage in when liability
of all this Enterprise 2.0 culture and technology come to bear. While companies may
accept it at first, I am concerned about a backlash that comes from committing so
much of what would have been hallway conversations, water cooler talk, quick phone
calls, etc., into a written, searchable, liable format.
</p>
        <p>
All in all, great talk. It is certainly though provoking.
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=fd291a24-1de4-4c7d-a514-6f073c12c5f3" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Portals, Which Should I use?</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/22/PortalsWhichShouldIUse.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,18e39e37-0ecc-4df4-9873-d704b05131b6.aspx</id>
    <published>2008-09-22T12:23:28.2899435-07:00</published>
    <updated>2008-09-22T12:23:28.2899435-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I attended a session named “Oracle Portal Products (Oracle Portal, Oracle WebCenter
Suite, and Products from Stellent and BEA): Which one should I use?” Out of the gate
the session tried to define what Web 2.0 is. I kind of felt this went on and on, but
I am sure a lot of people found it helpful and it is always good to have a firm base
to build the conversation on. Once we got through that the discussion turned to development
platform which was a plug for JDeveloper. They also touted REST a lot, which should
tickle/torture some of the others in the Blogsphere.
</p>
        <p>
I noticed that the first product of the group they started out featuring was WebCenter.
They had a little about Ensemble, but then they jumped directly into a demo of WebCenter.
Similar to the demo of Beehive this morning they demonstrated again with WebCenter
that IRM is deeply integrated. They also had a really nice demo of using a Mobile
device to access and update a list of data in WebCenter.
</p>
        <p>
They talked a little about a Roadmap for the portal products split into features of
today, 100 days from now and an 11g 2009 time frame. It looks like full integration
between WebLogic, WebCenter and the former AquaLogic frameworks is now slated for
the 11g/2009 era. Introductory integrations and rebranding is to occur in the 100
day timespan.
</p>
        <p>
In the end, it kind of looks like WebLogic will be the favored application server
foundation and WebCenter will be the favored application written on top of WebLogic.
AquaLogic functionality will be rolled into WebCenter. The former Stellent products
appear to be a portion of the backend solution for WebCenter/WebLogic. Don’t take
this as law, someone will correct me!
</p>
        <p>
Finally, there was some discussion about a Unified Portal Framework, but it seems
so far off I am having a hard time coming to grips with it. Maybe that is a better
topic for next OpenWorld. Was the question of which one should I use answered? For
me it was, WebCenter seems to be the chosen one. They also put in a big plug for Ensemble
at the end.
</p>
        <p>
One of the final taglines: "Oracle WebCenter provides Enterprise 2.0 foundation for
Oracle Fusion Applications"
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=18e39e37-0ecc-4df4-9873-d704b05131b6" />
      </div>
    </content>
  </entry>
  <entry>
    <title>More Monday Keynote Notes</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/22/MoreMondayKeynoteNotes.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,10099bdf-ed3b-4982-ace9-8bbda8bdbdee.aspx</id>
    <published>2008-09-22T11:23:48.914-07:00</published>
    <updated>2008-09-22T11:23:48.9149435-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
The opening keynote is being delivered by Charles Phillips. He discussed Oracle growth
in areas such as employees and skill sets as well as the breadth of product line.
The big tagline right now is a three word message:
</p>
        <p>
Complete. Open. Integrated.
</p>
        <p>
As the discussion moves on I think web services were mentioned forty-six times. What’s
SOA? What’s SOAP? What’s JSON? What’s REST? Don’t know? Better get on that. Integration
is key. Do you need to know all these buzzards…erm…I mean buzzwords? Well, you should
eventually.
</p>
        <p>
He goes on to describe applications and implementations specifically around the four
basic areas of the “Oracle Stack”, starting at the top. Applications, Middleware,
Database and then Infrastructure comprise the stack. The first part of this discussion
that really got my interest was the release of JDeveloper 11g and WebCenter Suite.
</p>
        <p>
Looks like my previous post may have jumped the gun a little bit on Beehive. Oops.
We are now covering an official launch on Beehive. It reminds me of the big launch
of Oracle VM at last year’s OpenWorld. I’m still trying to find out whether this is
a competitor for Microsoft Exchange or Microsoft Groove, or if it is more of something
that operates alongside those applications.
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=10099bdf-ed3b-4982-ace9-8bbda8bdbdee" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Monday Keynote Introduction</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/22/MondayKeynoteIntroduction.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,078f5c25-48e6-4e2a-9325-bd3b6fc5d321.aspx</id>
    <published>2008-09-22T09:09:24.993-07:00</published>
    <updated>2008-09-22T09:09:24.9930685-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Besides the huge room and at least six theatre size screens the first thing I noticed
when entering the keynote arena was little plastic wrapped candies advertising <a href="http://www.oracle.com/technology/products/beehive/index.html">Oracle
Beehive</a>. I first viewed a demo of the then unreleased Beehive collaboration platform
at last year’s OpenWorld. Since then, Beehive has been “released into the wild” and
you can use it today.
</p>
        <p>
As the actual keynote was kicked off the messages about Oracle’s commitment to staying
“Green” and actually listening to customers was prominently featured. Oracle was set
to eliminate the conference guide all together in paper format for a more eco-friendly
conference but the customers/clients said they would still like a guide. To straddle
the fence Oracle had printed a guide a third the size on recycled paper with recycled
ink. I thought this was a pretty cool example of both trying to listen to customer
feedback as well as being environment aware.
</p>
        <p>
Some good advice just dropped in the introductions included how to make your conference
visit the most comfortable. Tips described included wearing comfortable shoes (check!),
lighten your bags (uh oh), and drink lots of water (check!).
</p>
        <p>
Finally, during the introductions they gave out some stats to help you visualize the
magnitude of the conference. 45,000 hours of setup, 3,639 staff, 295,000 sq foot of
exhibition hall and attendees came from all over the world (133 countries).
</p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=078f5c25-48e6-4e2a-9325-bd3b6fc5d321" />
      </div>
    </content>
  </entry>
  <entry>
    <title>OOW 2008 Sunday Wrap</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/22/OOW2008SundayWrap.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,2f5d9374-9503-4431-bb9d-4c2f56648ed1.aspx</id>
    <published>2008-09-21T21:53:27.858-07:00</published>
    <updated>2008-09-21T21:55:16.8426435-07:00</updated>
    <category term="OpenWorld 2008" label="OpenWorld 2008" scheme="http://www.corecontentonly.com/CategoryView,category,OpenWorld2008.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p class="MsoNormal" style="MARGIN: 0in 0in 10pt">
          <font face="Calibri" color="#000000" size="3">I arrived at the airport for leg one
of the journey to San Francisco at about 4:30 a.m.<span style="mso-spacerun: yes">  </span>Suffering
through security and breakfast (avoid airport food if you can) and we finally arrive
in Chicago, IL. for the second leg of the journey.<span style="mso-spacerun: yes">  </span>We
enjoyed three delays as they attempted to install a new windshield on our Boeing 767.<span style="mso-spacerun: yes">  </span>I
assume they got it all sorted out because we FINALLY left.</font>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 10pt">
          <font face="Calibri" color="#000000" size="3">Arriving in San Francisco we promptly
hailed a cab and hot footed it to the hotel for check-in and then we landed at California
Pizza Kitchen for some lunch.<span style="mso-spacerun: yes">  </span>With our
primary needs now under control the hunt was on for the partner event location.</font>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 10pt">
          <font face="Calibri" color="#000000" size="3">We attended a few partner sessions and
collected some interesting pieces of information.<span style="mso-spacerun: yes">  </span>Of
course the WebLogic acquisition has yielded a lot of excitement around those products
and they seem to be on the forefront of many minds.<span style="mso-spacerun: yes">  </span>I
also noticed a heavy dependence/integration of BPEL Process Manager with a lot of
products.<span style="mso-spacerun: yes">  </span>This included what looked like
a potential limited use license of BPEL PM with UCM, but I have yet to confirm whether
this is true or any of the parameters around this connection.<span style="mso-spacerun: yes">  </span>There
has been an integration path with BPEL PM around for a while now, but the license
ramifications may have changed.<span style="mso-spacerun: yes">  </span>More
on this later.</font>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 10pt">
          <font face="Calibri" color="#000000" size="3">The political speakers and the discussion
on being “green” and Oracle’s dedication to being eco-friendly certainly passed the
time and were entertaining. <span style="mso-spacerun: yes"> </span>It again
reminds me of the many things I’d like to be into more than I really am.<span style="mso-spacerun: yes">  </span>If
only there was more time.</font>
        </p>
        <p class="MsoNormal" style="MARGIN: 0in 0in 10pt">
          <font face="Calibri" color="#000000" size="3">Finally, to wrap up I wanted to point
out at least two other chaps that are actively reporting on the event.<span style="mso-spacerun: yes">  </span><a href="http://www.contentoncontentmanagement.com/">David
Roe</a> already has several posts and so does <a href="http://blogs.oracle.com/fusionecm/">Billy
Cripe</a>.<span style="mso-spacerun: yes">  </span>David even mentions some embarrassing
blogger badge they saddled…I mean presented him with that kind of made me chuckle.</font>
        </p>
        <p>
        </p>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=2f5d9374-9503-4431-bb9d-4c2f56648ed1" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Partner Events Guided by Safra Catz</title>
    <link rel="alternate" type="text/html" href="http://www.corecontentonly.com/2008/09/22/PartnerEventsGuidedBySafraCatz.aspx" />
    <id>http://www.corecontentonly.com/PermaLink,guid,24b6a14f-e705-4ece-94e2-8b92713060a5.aspx</id>
    <published>2008-09-21T21:46:11.739-07:00</published>
    <updated>2008-09-21T21:46:11.7393177-07:00</updated>
    <category term="Mindlessness" label="Mindlessness" scheme="http://www.corecontentonly.com/CategoryView,category,Mindlessness.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <span style="FONT-SIZE: 10pt; COLOR: #003300; FONT-FAMILY: 'Verdana','sans-serif'">This
was my first chance to see Oracle Executive <a href="http://www.wharton.upenn.edu/alum_mag/issues/125anniversaryissue/catz.html">Safra
Catz</a> in action and I found her to be very personable.  You just never know
what large corporate executives are going to be like.<span style="mso-spacerun: yes">  </span>Will
she be arrogant?<span style="mso-spacerun: yes">  </span>Will she be emotionless?<span style="mso-spacerun: yes">  </span>She
spoke on several occasions, including introducing political advisors James Carville
and Mary Matalin.<span style="mso-spacerun: yes">  </span>In the end I got to
see her and hear her in several forums and overall I was impressed.  I'm hoping
to be as satisified with presentations by the other Oracle Executive team members!</span>
        </p>
        <a href="http://www.wharton.upenn.edu/alum_mag/issues/125anniversaryissue/catz.html">
          <img src="http://www.corecontentonly.com/content/binary/catz.jpg" border="0" />
        </a>
        <img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=24b6a14f-e705-4ece-94e2-8b92713060a5" />
      </div>
    </content>
  </entry>
</feed>