<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>coreContentOnly</title>
    <link>http://www.corecontentonly.com/</link>
    <description>Oracle Fusion ECM Blog.  Are you "kuh n-tent" with your "kon-tent"?</description>
    <language>en-us</language>
    <copyright>Jason Stortz</copyright>
    <lastBuildDate>Tue, 04 Nov 2008 02:30:25 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.2.8279.16125</generator>
    <managingEditor>jason@corecontentonly.com</managingEditor>
    <webMaster>jason@corecontentonly.com</webMaster>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=9127709f-f37c-445e-8ce9-c99ecaf7a86c</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,9127709f-f37c-445e-8ce9-c99ecaf7a86c.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,9127709f-f37c-445e-8ce9-c99ecaf7a86c.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=9127709f-f37c-445e-8ce9-c99ecaf7a86c</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <title>Building Components With Apache ANT</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,9127709f-f37c-445e-8ce9-c99ecaf7a86c.aspx</guid>
      <link>http://www.corecontentonly.com/2008/11/04/BuildingComponentsWithApacheANT.aspx</link>
      <pubDate>Tue, 04 Nov 2008 02:30:25 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;Here's an example build file:&lt;/P&gt;
&lt;P&gt;&amp;lt;project name="CompName" default="dist" basedir="."&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;property name="build.home" value="${basedir}/classes"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;property name="src.home" value="${basedir}/src"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;property name="compile.debug" value="true"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;property name="compile.deprecation" value="true"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;property name="component.root" value="component/${ant.project.name}/"/&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;lt;path id="compile.classpath"&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;pathelement location="${basedir}/../../shared/classes/server.zip"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;pathelement location="${basedir}/../../shared/classes/jspserver.jar"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;/path&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;lt;target name="clean"&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;delete dir="${build.home}"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;mkdir dir="${build.home}"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;/target&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;lt;target name="compile" depends="clean"&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;javac srcdir="${src.home}" destdir="${build.home}" debug="${compile.debug}" deprecation="${compile.deprecation}"&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;classpath refid="compile.classpath"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/javac&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;/target&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;lt;target name="dist" depends="compile" description="Package as a Fusion ECM Component"&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;delete file="${basedir}/${ant.project.name}.zip"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;tstamp&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;format property="component.timestamp" pattern="yyyy_MM_dd_hh_mm_ss_aa"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/tstamp&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;lt;zip destfile="${basedir}/${component.timestamp}_${ant.project.name}.zip"&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;zipfileset dir="${src.home}" prefix="${component.root}src"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;zipfileset dir="${build.home}" prefix="${component.root}classes"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;zipfileset dir="${basedir}/resources" excludes="**/lockwait.dat" prefix="${component.root}resources"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;zipfileset dir="${basedir}" includes="${ant.project.name}.hda" fullpath="${component.root}${ant.project.name}.hda"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;zipfileset dir="${basedir}" includes="build.xml" fullpath="${component.root}build.xml"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;zipfileset dir="${basedir}" includes="readme.txt" fullpath="${component.root}readme.txt"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;zipfileset dir="${basedir}" includes="manifest.hda" fullpath="manifest.hda"/&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/zip&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;lt;/target&amp;gt;&lt;BR&gt;&amp;lt;/project&amp;gt;&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=9127709f-f37c-445e-8ce9-c99ecaf7a86c"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,9127709f-f37c-445e-8ce9-c99ecaf7a86c.aspx</comments>
      <category>Oracle UCM</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=0d1d2589-9ce8-4264-95b6-4d63c3b662db</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,0d1d2589-9ce8-4264-95b6-4d63c3b662db.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,0d1d2589-9ce8-4264-95b6-4d63c3b662db.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=0d1d2589-9ce8-4264-95b6-4d63c3b662db</wfw:commentRss>
      <title>Get That HCSF Data</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,0d1d2589-9ce8-4264-95b6-4d63c3b662db.aspx</guid>
      <link>http://www.corecontentonly.com/2008/10/24/GetThatHCSFData.aspx</link>
      <pubDate>Fri, 24 Oct 2008 19:50:26 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;By adding IsXml=1 to the end of the HCSF URL&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=0d1d2589-9ce8-4264-95b6-4d63c3b662db"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,0d1d2589-9ce8-4264-95b6-4d63c3b662db.aspx</comments>
      <category>Oracle UCM</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=454868a0-e80d-4be1-bdfa-6f3723c99837</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,454868a0-e80d-4be1-bdfa-6f3723c99837.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,454868a0-e80d-4be1-bdfa-6f3723c99837.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=454868a0-e80d-4be1-bdfa-6f3723c99837</wfw:commentRss>
      <title>It's Always Been Done This Way</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,454868a0-e80d-4be1-bdfa-6f3723c99837.aspx</guid>
      <link>http://www.corecontentonly.com/2008/10/22/ItsAlwaysBeenDoneThisWay.aspx</link>
      <pubDate>Wed, 22 Oct 2008 12:56:48 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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!&lt;/P&gt;
&lt;P&gt;
&lt;HR&gt;

&lt;P&gt;&lt;/P&gt;
&lt;P&gt;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...&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=454868a0-e80d-4be1-bdfa-6f3723c99837"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,454868a0-e80d-4be1-bdfa-6f3723c99837.aspx</comments>
      <category>Mindlessness</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=01026b3c-9120-486e-92fc-4e60bed7e6a1</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,01026b3c-9120-486e-92fc-4e60bed7e6a1.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,01026b3c-9120-486e-92fc-4e60bed7e6a1.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=01026b3c-9120-486e-92fc-4e60bed7e6a1</wfw:commentRss>
      <title>Site Studio Default Link Format Per Site</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,01026b3c-9120-486e-92fc-4e60bed7e6a1.aspx</guid>
      <link>http://www.corecontentonly.com/2008/10/20/SiteStudioDefaultLinkFormatPerSite.aspx</link>
      <pubDate>Mon, 20 Oct 2008 16:01:36 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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.&amp;nbsp; You can do this through the Site Studio Designer and the setting is persisted in your Project XML file in Content Server.&amp;nbsp; 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.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://www.corecontentonly.com/content/binary/DefaultLinkFormatMenu.jpg" border=0&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;IMG src="http://www.corecontentonly.com/content/binary/DefaultLinkFormatOptions.jpg" border=0&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=01026b3c-9120-486e-92fc-4e60bed7e6a1"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,01026b3c-9120-486e-92fc-4e60bed7e6a1.aspx</comments>
      <category>Oracle WCM</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=bf9cb2cd-d46f-448b-ac7d-c9b882aebee6</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,bf9cb2cd-d46f-448b-ac7d-c9b882aebee6.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,bf9cb2cd-d46f-448b-ac7d-c9b882aebee6.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=bf9cb2cd-d46f-448b-ac7d-c9b882aebee6</wfw:commentRss>
      <title>Accessing HTTP Header Information With iDocScript</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,bf9cb2cd-d46f-448b-ac7d-c9b882aebee6.aspx</guid>
      <link>http://www.corecontentonly.com/2008/10/15/AccessingHTTPHeaderInformationWithIDocScript.aspx</link>
      <pubDate>Wed, 15 Oct 2008 12:03:15 GMT</pubDate>
      <description>&lt;div&gt;&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;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,bf9cb2cd-d46f-448b-ac7d-c9b882aebee6.aspx</comments>
      <category>Oracle WCM</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=1cd841ba-86df-4ba6-9b38-4f9e5c323bd4</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,1cd841ba-86df-4ba6-9b38-4f9e5c323bd4.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,1cd841ba-86df-4ba6-9b38-4f9e5c323bd4.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=1cd841ba-86df-4ba6-9b38-4f9e5c323bd4</wfw:commentRss>
      <title>Silverlight 2.0 Released</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,1cd841ba-86df-4ba6-9b38-4f9e5c323bd4.aspx</guid>
      <link>http://www.corecontentonly.com/2008/10/15/Silverlight20Released.aspx</link>
      <pubDate>Wed, 15 Oct 2008 02:01:38 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;Like them or hate them, Microsoft continues to be busy.&amp;nbsp; Personally, I like the Silverlight platform and I think almost all forms of competition is good.&amp;nbsp; I think Silverlight, while different, is good for the Flash/Air/Fireworks platforms.&amp;nbsp; If nobody is chasing you, you don't try as hard.&lt;/P&gt;
&lt;P&gt;So anyway, Microsoft has released the production, final version of Silverlight 2.0!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://silverlight.net/"&gt;http://silverlight.net/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=1cd841ba-86df-4ba6-9b38-4f9e5c323bd4"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,1cd841ba-86df-4ba6-9b38-4f9e5c323bd4.aspx</comments>
      <category>.NET</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=9f23751b-e92d-48cc-93dd-877ae78b422b</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,9f23751b-e92d-48cc-93dd-877ae78b422b.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,9f23751b-e92d-48cc-93dd-877ae78b422b.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=9f23751b-e92d-48cc-93dd-877ae78b422b</wfw:commentRss>
      <title>SSEphoxImageSetting - A Content Server Configuration for Ephox</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,9f23751b-e92d-48cc-93dd-877ae78b422b.aspx</guid>
      <link>http://www.corecontentonly.com/2008/10/14/SSEphoxImageSettingAContentServerConfigurationForEphox.aspx</link>
      <pubDate>Tue, 14 Oct 2008 01:49:23 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;&amp;lt;?xml version=&lt;SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"1.0"&lt;/SPAN&gt; encoding=&lt;SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"UTF-8"&lt;/SPAN&gt; ?&amp;gt; 
&amp;lt;wcm:root xmlns:wcm=&lt;SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"http://www.stellent.com/wcm-data/ns/8.0.0"&lt;/SPAN&gt; version=&lt;SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"8.0.0.0"&lt;/SPAN&gt;&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;wcm:element name=&lt;SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"HeaderImage"&lt;/SPAN&gt;&amp;gt;&amp;lt;img border=&lt;SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"0"&lt;/SPAN&gt; alt=&lt;SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"Wide Image"&lt;/SPAN&gt; src=&lt;SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"[!--$ssWeblayoutUrl('groups/public/documents/web_assets/wideimage.gif')--]"&lt;/SPAN&gt; /&amp;gt;&amp;lt;/wcm:element&amp;gt; 
&amp;lt;/wcm:root&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;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?&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;SSWeblayoutUrlUsesDocNames=true&lt;/P&gt;
&lt;P&gt;On a related note, check out another blog post starring ssWeblayoutUrl over at Web Monkey Magic.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://webmonkeymagic.blogspot.com/2008/09/surprise-ssweblayouturl.html"&gt;http://webmonkeymagic.blogspot.com/2008/09/surprise-ssweblayouturl.html&lt;/A&gt;&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=9f23751b-e92d-48cc-93dd-877ae78b422b"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,9f23751b-e92d-48cc-93dd-877ae78b422b.aspx</comments>
      <category>Oracle WCM</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=b04a22bc-44ea-4161-ad66-09aa759862e1</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,b04a22bc-44ea-4161-ad66-09aa759862e1.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,b04a22bc-44ea-4161-ad66-09aa759862e1.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=b04a22bc-44ea-4161-ad66-09aa759862e1</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <title>Keep Latest N Revisions</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,b04a22bc-44ea-4161-ad66-09aa759862e1.aspx</guid>
      <link>http://www.corecontentonly.com/2008/10/08/KeepLatestNRevisions.aspx</link>
      <pubDate>Wed, 08 Oct 2008 00:51:24 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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: &lt;/P&gt;
&lt;P&gt;
&lt;OL&gt;
&lt;LI&gt;Log onto your content server as a user with administration rights 
&lt;LI&gt;Under "Administration" select "Admin Applets" and then fire up the Archiver applet 
&lt;LI&gt;From the "Edit" menu select "Add" 
&lt;LI&gt;Give your archive some kind of meaningful name 
&lt;LI&gt;Provide a description, perhaps include something about the expected lifetime of this archive? 
&lt;LI&gt;Click "OK" 
&lt;LI&gt;Select the new archive in the archive list and then click on the "Export Data" tab 
&lt;LI&gt;From the Export Query section select "Edit" 
&lt;LI&gt;Set the following field defintions 
&lt;OL&gt;
&lt;LI&gt;field to "Revision Rank" 
&lt;LI&gt;Set the Operator to "Is Greater Than" 
&lt;LI&gt;Set the value to "4" &lt;/LI&gt;&lt;/OL&gt;
&lt;LI&gt;Click "Add", add and then "OK" 
&lt;LI&gt;Under "Actions" click on "Export" &lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;&lt;/LI&gt;
&lt;OL&gt;&lt;/OL&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=b04a22bc-44ea-4161-ad66-09aa759862e1"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,b04a22bc-44ea-4161-ad66-09aa759862e1.aspx</comments>
      <category>Oracle UCM</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=47fffe8d-828f-401b-b914-0e13ddeb9e05</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,47fffe8d-828f-401b-b914-0e13ddeb9e05.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,47fffe8d-828f-401b-b914-0e13ddeb9e05.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=47fffe8d-828f-401b-b914-0e13ddeb9e05</wfw:commentRss>
      <title>Larry Announces Two New Products - Both Hardware?</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,47fffe8d-828f-401b-b914-0e13ddeb9e05.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/24/LarryAnnouncesTwoNewProductsBothHardware.aspx</link>
      <pubDate>Wed, 24 Sep 2008 22:37:54 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://newsblaze.com/story/2008092415130300003.pnw/topstory.html"&gt;Get More Info&lt;/A&gt;&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=47fffe8d-828f-401b-b914-0e13ddeb9e05"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,47fffe8d-828f-401b-b914-0e13ddeb9e05.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=152b41e7-0dd3-46b8-9c63-cd2a13788ac1</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,152b41e7-0dd3-46b8-9c63-cd2a13788ac1.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,152b41e7-0dd3-46b8-9c63-cd2a13788ac1.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=152b41e7-0dd3-46b8-9c63-cd2a13788ac1</wfw:commentRss>
      <title>JDeveloper and Application Development Framework</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,152b41e7-0dd3-46b8-9c63-cd2a13788ac1.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/24/JDeveloperAndApplicationDevelopmentFramework.aspx</link>
      <pubDate>Wed, 24 Sep 2008 22:03:13 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;&lt;/P&gt;&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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....&lt;/p&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=152b41e7-0dd3-46b8-9c63-cd2a13788ac1"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,152b41e7-0dd3-46b8-9c63-cd2a13788ac1.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=96f47d7b-56f9-4346-9293-5d52e8abb1c9</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,96f47d7b-56f9-4346-9293-5d52e8abb1c9.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,96f47d7b-56f9-4346-9293-5d52e8abb1c9.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=96f47d7b-56f9-4346-9293-5d52e8abb1c9</wfw:commentRss>
      <title>Just Larry</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,96f47d7b-56f9-4346-9293-5d52e8abb1c9.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/24/JustLarry.aspx</link>
      <pubDate>Wed, 24 Sep 2008 21:47:38 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;Overwhelmingly I hear people refer to the leader of the Oracle Enterprise by just "Larry".&amp;nbsp; Does he know we're all on a first name basis with him?&amp;nbsp; I wonder what he thinks of that?&amp;nbsp; It's kind of comical, and maybe representative of several social, psychological paradigms.&amp;nbsp; Are we attempting to socially elevate ourselves by referring to a person of power and wealth on a first name basis?&amp;nbsp; Is it something else?&amp;nbsp; I sure don't know.&amp;nbsp; But it did strike me as interesting.&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=96f47d7b-56f9-4346-9293-5d52e8abb1c9"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,96f47d7b-56f9-4346-9293-5d52e8abb1c9.aspx</comments>
      <category>Mindlessness</category>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=fa6686db-fbcf-4990-972d-00030b4ffc72</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,fa6686db-fbcf-4990-972d-00030b4ffc72.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,fa6686db-fbcf-4990-972d-00030b4ffc72.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=fa6686db-fbcf-4990-972d-00030b4ffc72</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <title>Remote Metadata Update Via Excel</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,fa6686db-fbcf-4990-972d-00030b4ffc72.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/24/RemoteMetadataUpdateViaExcel.aspx</link>
      <pubDate>Wed, 24 Sep 2008 15:24:20 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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!&amp;nbsp; Some people love it.&amp;nbsp; Some people hate it.&amp;nbsp; Either way, it has been useful to me.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://www.corecontentonly.com/content/binary/RemoteMetadataLoginButton.gif" border=0&gt;&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://www.corecontentonly.com/content/binary/RemoteMetadataDefaultErrorMessage.gif" border=0&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://www.corecontentonly.com/content/binary/RemoteMetadataAdditionalErrorMessage.gif" border=0&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://www.corecontentonly.com/content/binary/RemoteMetadataAddColumn.gif" border=0&gt;&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;References:&lt;/P&gt;
&lt;P&gt;&lt;A onclick='javascript: pageTracker._trackPageview("/downloads/menu/remoteMetadataUpdater_20080924.xls");' href="http://www.corecontentonly.com/content/binary/remoteMetadataUpdater_20080924.xls"&gt;remoteMetadataUpdater_20080924.xls&lt;/A&gt; (194 KB)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=fa6686db-fbcf-4990-972d-00030b4ffc72"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,fa6686db-fbcf-4990-972d-00030b4ffc72.aspx</comments>
      <category>OpenWorld 2008</category>
      <category>Oracle UCM</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=840e2a5a-859c-4be8-afc1-b13713e05054</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,840e2a5a-859c-4be8-afc1-b13713e05054.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,840e2a5a-859c-4be8-afc1-b13713e05054.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=840e2a5a-859c-4be8-afc1-b13713e05054</wfw:commentRss>
      <title>OOW Day Three: Goals</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,840e2a5a-859c-4be8-afc1-b13713e05054.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/24/OOWDayThreeGoals.aspx</link>
      <pubDate>Wed, 24 Sep 2008 15:03:14 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;Session-wise, I would like to hit these today:&lt;/P&gt;
&lt;P&gt;
&lt;TABLE border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Time&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Room&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Description&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT size=2&gt;9:00 AM&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Marriott Golden Gate C1&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Basics of SOA Deployment for Enterprises&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT size=2&gt;11:30 AM&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Marriott NOB Hill AB&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Using Oracle SOA Suite and Oracle BPEL Process Manager to Integrate and Extend&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT size=2&gt;1:00 PM&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Marriott Salon 5&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Reshaping Your Business with Web 2.0&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT size=2&gt;5:00 PM&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Marriott NOB Hill CD&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size=2&gt;Optimizing User Engagement, Using Oracle Real-Time Decisions&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=840e2a5a-859c-4be8-afc1-b13713e05054"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,840e2a5a-859c-4be8-afc1-b13713e05054.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=08a7b32a-fada-4033-98c5-f2411f1e168e</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,08a7b32a-fada-4033-98c5-f2411f1e168e.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,08a7b32a-fada-4033-98c5-f2411f1e168e.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=08a7b32a-fada-4033-98c5-f2411f1e168e</wfw:commentRss>
      <title>Reducing Risk and Cost With Oracle Archiving</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,08a7b32a-fada-4033-98c5-f2411f1e168e.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/24/ReducingRiskAndCostWithOracleArchiving.aspx</link>
      <pubDate>Wed, 24 Sep 2008 01:03:30 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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. :)&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=08a7b32a-fada-4033-98c5-f2411f1e168e"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,08a7b32a-fada-4033-98c5-f2411f1e168e.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=9631d36b-3426-40f5-bb80-6f518575e07c</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,9631d36b-3426-40f5-bb80-6f518575e07c.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,9631d36b-3426-40f5-bb80-6f518575e07c.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=9631d36b-3426-40f5-bb80-6f518575e07c</wfw:commentRss>
      <title>No REST for the Weary: REST APIs and the Activity Stream with Bob Fraser</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,9631d36b-3426-40f5-bb80-6f518575e07c.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/23/NoRESTForTheWearyRESTAPIsAndTheActivityStreamWithBobFraser.aspx</link>
      <pubDate>Tue, 23 Sep 2008 19:09:56 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;br/&gt;
&lt;P&gt;References:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://curl.haxx.se/download.html"&gt;cURL&lt;/A&gt;&lt;BR&gt;&lt;A href="http://www.corecontentonly.com/content/binary/S298497.pdf"&gt;Presentation [PDF] (2.33 MB)&lt;/A&gt;&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=9631d36b-3426-40f5-bb80-6f518575e07c"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,9631d36b-3426-40f5-bb80-6f518575e07c.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=6612ae44-7c52-44a2-a4f9-96db142a6cb1</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,6612ae44-7c52-44a2-a4f9-96db142a6cb1.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,6612ae44-7c52-44a2-a4f9-96db142a6cb1.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=6612ae44-7c52-44a2-a4f9-96db142a6cb1</wfw:commentRss>
      <title>Deploying a Web-Oriented Architecture with WebCenter/WebLogic</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,6612ae44-7c52-44a2-a4f9-96db142a6cb1.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/23/DeployingAWebOrientedArchitectureWithWebCenterWebLogic.aspx</link>
      <pubDate>Tue, 23 Sep 2008 16:52:39 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;A quote about WOA (Web Oriented Architecture) from Dion Hinchcliffe’s &lt;A href="http://web2.socialcomputingmagazine.com/"&gt;Blog&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;"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.&lt;/P&gt;
&lt;P&gt;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:&lt;/P&gt;
&lt;P&gt;http://myserver/idc/DOC_INFO/&lt;DID&gt;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;http://myserver/idc/DOC_INFO_BY_NAME/&lt;DDOCNAME&gt;&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;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?&lt;/P&gt;
&lt;P&gt;References:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.oracle.com/products/middleware/user-interaction/webcenter-suite.html"&gt;WebCenter&lt;/A&gt;&lt;BR&gt;&lt;A href="http://www.oracle.com/appserver/weblogic/weblogic-portal.html"&gt;WebLogic Portal&lt;/A&gt;&lt;BR&gt;&lt;A href="http://dojotoolkit.org/"&gt;Dojo&lt;/A&gt;&lt;BR&gt;&lt;A href="http://wlp.bea.com/"&gt;Example WebLogic Portal Site&lt;/A&gt;&lt;BR&gt;&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=6612ae44-7c52-44a2-a4f9-96db142a6cb1"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,6612ae44-7c52-44a2-a4f9-96db142a6cb1.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=e6aa1393-375f-41ea-9a41-f4fc58df1d6e</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,e6aa1393-375f-41ea-9a41-f4fc58df1d6e.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,e6aa1393-375f-41ea-9a41-f4fc58df1d6e.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=e6aa1393-375f-41ea-9a41-f4fc58df1d6e</wfw:commentRss>
      <title>OOW Tuesday Kickoff</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,e6aa1393-375f-41ea-9a41-f4fc58df1d6e.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/23/OOWTuesdayKickoff.aspx</link>
      <pubDate>Tue, 23 Sep 2008 14:56:37 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;Several sessions look interesting today, especially at 5:00 p.m.&amp;nbsp; Like six of them.&amp;nbsp; Sheesh.&lt;/P&gt;
&lt;P&gt;9:00 a.m. Deploying a Web-Oriented Architecture with WebCenter/WebLogic&lt;/P&gt;
&lt;P&gt;9:00 a.m. Multisite Web Content Management&lt;/P&gt;
&lt;P&gt;11:30 a.m. REST API's with Activity Stream&lt;/P&gt;
&lt;P&gt;1:00 p.m. Oracle Ensemble and New Integration Patterns&lt;/P&gt;
&lt;P&gt;5:00 p.m. Universal Online Archive&lt;/P&gt;
&lt;P&gt;5:00 p.m. Oracle Total Recall Hands-on Lab&lt;/P&gt;
&lt;P&gt;What to do, what to do.&amp;nbsp; I have until 9 or so to figure out how to split myself to go to multiple places at the same time.&amp;nbsp; Don't hold your breath.&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=e6aa1393-375f-41ea-9a41-f4fc58df1d6e"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,e6aa1393-375f-41ea-9a41-f4fc58df1d6e.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=d5327daf-555e-469e-a8d1-240172ac4eab</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,d5327daf-555e-469e-a8d1-240172ac4eab.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,d5327daf-555e-469e-a8d1-240172ac4eab.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=d5327daf-555e-469e-a8d1-240172ac4eab</wfw:commentRss>
      <title>A Pragmatic Strategy for Oracle Enterprise Content Management</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,d5327daf-555e-469e-a8d1-240172ac4eab.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/22/APragmaticStrategyForOracleEnterpriseContentManagement.aspx</link>
      <pubDate>Mon, 22 Sep 2008 23:57:02 GMT</pubDate>
      <description>&lt;div&gt;&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=d5327daf-555e-469e-a8d1-240172ac4eab"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,d5327daf-555e-469e-a8d1-240172ac4eab.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=fd291a24-1de4-4c7d-a514-6f073c12c5f3</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,fd291a24-1de4-4c7d-a514-6f073c12c5f3.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,fd291a24-1de4-4c7d-a514-6f073c12c5f3.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=fd291a24-1de4-4c7d-a514-6f073c12c5f3</wfw:commentRss>
      <title>Bex Huff's Enterprise 2.0 Discussion Is Thought Provoking</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,fd291a24-1de4-4c7d-a514-6f073c12c5f3.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/22/BexHuffsEnterprise20DiscussionIsThoughtProvoking.aspx</link>
      <pubDate>Mon, 22 Sep 2008 21:53:20 GMT</pubDate>
      <description>&lt;div&gt;&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;All in all, great talk.  It is certainly though provoking.&lt;/p&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=fd291a24-1de4-4c7d-a514-6f073c12c5f3"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,fd291a24-1de4-4c7d-a514-6f073c12c5f3.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=18e39e37-0ecc-4df4-9873-d704b05131b6</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,18e39e37-0ecc-4df4-9873-d704b05131b6.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,18e39e37-0ecc-4df4-9873-d704b05131b6.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=18e39e37-0ecc-4df4-9873-d704b05131b6</wfw:commentRss>
      <title>Portals, Which Should I use?</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,18e39e37-0ecc-4df4-9873-d704b05131b6.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/22/PortalsWhichShouldIUse.aspx</link>
      <pubDate>Mon, 22 Sep 2008 19:23:28 GMT</pubDate>
      <description>&lt;div&gt;&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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!&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;One of the final taglines:  "Oracle WebCenter provides Enterprise 2.0 foundation for Oracle Fusion Applications"&lt;/p&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=18e39e37-0ecc-4df4-9873-d704b05131b6"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,18e39e37-0ecc-4df4-9873-d704b05131b6.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=10099bdf-ed3b-4982-ace9-8bbda8bdbdee</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,10099bdf-ed3b-4982-ace9-8bbda8bdbdee.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,10099bdf-ed3b-4982-ace9-8bbda8bdbdee.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=10099bdf-ed3b-4982-ace9-8bbda8bdbdee</wfw:commentRss>
      <title>More Monday Keynote Notes</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,10099bdf-ed3b-4982-ace9-8bbda8bdbdee.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/22/MoreMondayKeynoteNotes.aspx</link>
      <pubDate>Mon, 22 Sep 2008 18:23:48 GMT</pubDate>
      <description>&lt;div&gt;&lt;p&gt;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:&lt;/p&gt;
&lt;p&gt;Complete.  Open.  Integrated.&lt;/p&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=10099bdf-ed3b-4982-ace9-8bbda8bdbdee"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,10099bdf-ed3b-4982-ace9-8bbda8bdbdee.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=078f5c25-48e6-4e2a-9325-bd3b6fc5d321</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,078f5c25-48e6-4e2a-9325-bd3b6fc5d321.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,078f5c25-48e6-4e2a-9325-bd3b6fc5d321.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=078f5c25-48e6-4e2a-9325-bd3b6fc5d321</wfw:commentRss>
      <title>Monday Keynote Introduction</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,078f5c25-48e6-4e2a-9325-bd3b6fc5d321.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/22/MondayKeynoteIntroduction.aspx</link>
      <pubDate>Mon, 22 Sep 2008 16:09:24 GMT</pubDate>
      <description>&lt;div&gt;&lt;p&gt;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 &lt;a href='http://www.oracle.com/technology/products/beehive/index.html'&gt;Oracle Beehive&lt;/a&gt;.  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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;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!).&lt;/p&gt;

&lt;p&gt;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).&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=078f5c25-48e6-4e2a-9325-bd3b6fc5d321"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,078f5c25-48e6-4e2a-9325-bd3b6fc5d321.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=2f5d9374-9503-4431-bb9d-4c2f56648ed1</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,2f5d9374-9503-4431-bb9d-4c2f56648ed1.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,2f5d9374-9503-4431-bb9d-4c2f56648ed1.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=2f5d9374-9503-4431-bb9d-4c2f56648ed1</wfw:commentRss>
      <title>OOW 2008 Sunday Wrap</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,2f5d9374-9503-4431-bb9d-4c2f56648ed1.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/22/OOW2008SundayWrap.aspx</link>
      <pubDate>Mon, 22 Sep 2008 04:53:27 GMT</pubDate>
      <description>&lt;div&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri color=#000000 size=3&gt;I arrived at the airport for leg one of the journey to San Francisco at about 4:30 a.m.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;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.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;We enjoyed three delays as they attempted to install a new windshield on our Boeing 767.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I assume they got it all sorted out because we FINALLY left.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri color=#000000 size=3&gt;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.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;With our primary needs now under control the hunt was on for the partner event location.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri color=#000000 size=3&gt;We attended a few partner sessions and collected some interesting pieces of information.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;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.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I also noticed a heavy dependence/integration of BPEL Process Manager with a lot of products.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;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.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;There has been an integration path with BPEL PM around for a while now, but the license ramifications may have changed.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;More on this later.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri color=#000000 size=3&gt;The political speakers and the discussion on being “green” and Oracle’s dedication to being eco-friendly certainly passed the time and were entertaining. &lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;It again reminds me of the many things I’d like to be into more than I really am.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;If only there was more time.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri color=#000000 size=3&gt;Finally, to wrap up I wanted to point out at least two other chaps that are actively reporting on the event.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://www.contentoncontentmanagement.com/"&gt;David Roe&lt;/A&gt; already has several posts and so does &lt;A href="http://blogs.oracle.com/fusionecm/"&gt;Billy Cripe&lt;/A&gt;.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;David even mentions some embarrassing blogger badge they saddled…I mean presented him with that kind of made me chuckle.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=2f5d9374-9503-4431-bb9d-4c2f56648ed1"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,2f5d9374-9503-4431-bb9d-4c2f56648ed1.aspx</comments>
      <category>OpenWorld 2008</category>
    </item>
    <item>
      <trackback:ping>http://www.corecontentonly.com/Trackback.aspx?guid=24b6a14f-e705-4ece-94e2-8b92713060a5</trackback:ping>
      <pingback:server>http://www.corecontentonly.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.corecontentonly.com/PermaLink,guid,24b6a14f-e705-4ece-94e2-8b92713060a5.aspx</pingback:target>
      <dc:creator>Jason Stortz</dc:creator>
      <wfw:comment>http://www.corecontentonly.com/CommentView,guid,24b6a14f-e705-4ece-94e2-8b92713060a5.aspx</wfw:comment>
      <wfw:commentRss>http://www.corecontentonly.com/SyndicationService.asmx/GetEntryCommentsRss?guid=24b6a14f-e705-4ece-94e2-8b92713060a5</wfw:commentRss>
      <title>Partner Events Guided by Safra Catz</title>
      <guid isPermaLink="false">http://www.corecontentonly.com/PermaLink,guid,24b6a14f-e705-4ece-94e2-8b92713060a5.aspx</guid>
      <link>http://www.corecontentonly.com/2008/09/22/PartnerEventsGuidedBySafraCatz.aspx</link>
      <pubDate>Mon, 22 Sep 2008 04:46:11 GMT</pubDate>
      <description>&lt;div&gt;&lt;P&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: #003300; FONT-FAMILY: 'Verdana','sans-serif'"&gt;This was my first chance to see Oracle Executive &lt;A href="http://www.wharton.upenn.edu/alum_mag/issues/125anniversaryissue/catz.html"&gt;Safra Catz&lt;/A&gt; in action and I found her to be very personable.&amp;nbsp; You just never know what large corporate executives are going to be like.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Will she be arrogant?&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Will she be emotionless?&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;She spoke on several occasions, including introducing political advisors James Carville and Mary Matalin.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;In the end I got to see her and hear her in several forums and overall I was impressed.&amp;nbsp; I'm hoping to be as satisified with presentations by the other Oracle Executive team members!&lt;/SPAN&gt;&lt;/P&gt;&lt;A href="http://www.wharton.upenn.edu/alum_mag/issues/125anniversaryissue/catz.html"&gt;&lt;IMG src="http://www.corecontentonly.com/content/binary/catz.jpg" border=0&gt;&lt;/A&gt;&lt;img width="0" height="0" src="http://www.corecontentonly.com/aggbug.ashx?id=24b6a14f-e705-4ece-94e2-8b92713060a5"/&gt;&lt;/div&gt;</description>
      <comments>http://www.corecontentonly.com/CommentView,guid,24b6a14f-e705-4ece-94e2-8b92713060a5.aspx</comments>
      <category>Mindlessness</category>
    </item>
  </channel>
</rss>