Home | Oracle ECM Home Page  | Oracle ECM Documentation  | Oracle ECM Downloads  | Oracle ECM Forums  | Yahoo Intradoc Users Group Feed your aggregator (RSS 2.0)  
  Oracle Fusion ECM Blog. Are you "kuh n-tent" with your "kon-tent"?
 
 
# Thursday, July 24, 2008

Alex Suhre just posted to the Oracle ECM Forum a link to a JavaScript based HDA data parser that allows you to paste HDA formatted data into a box and get a more human readable view of that data. It looks nice, and I have tried a few pieces of data in there and it worked well. I have not put it through the paces to see how it handles odd data or characters. It looks like you can download it as well, although you have to supply some information to be able to do so.

Real world applications? Well...not sure just yet, but it is neat, and it is always nice when a tool is turned over for community use.

Thursday, July 24, 2008 5:22:17 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]   Oracle UCM  | 

Over on David Roe’s Blog "Content on Content Management" he has recently posted a pretty good article on the newly added Content Server JCR Repository Adapter. I really liked his post because he presents this with a curious but wary attitude and then goes on to present some of the history of the process and the political landscape this "standard" traversed to get to where it is today.

Why was his general attitude important? Well, he did not just jump right up and say "Hey, look what got published, go use it now because it is simply the best." He begins to present pros and cons about his personal feelings on JSR/JCR process and how vendors can use this as part of their sales pitch and why that is almost comical. Finally, because he presents it with a bit of caution I am a lot more apt to take it seriously.

Why is the history important? Sometimes history is not all that important but sometimes that political/historical take can give you insight into standards that were driven by an agenda that may not be in the best interests of the community as a whole. As an example, look at Microsoft and their OOXML standard. If someone told you OOXML was a standard and you blindly followed it you may wish you had known the back story of that all along, especially if the standards ratification ends up getting overturned later.

To wrap up: great presentation, great insight. Oh, and the topic was interesting too!

Thursday, July 24, 2008 8:24:48 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]   Oracle UCM  | 
# Tuesday, July 22, 2008

If you are trying to squeeze additional performance out of your production servers you might look into adding the setting DisableSharedCacheChecking. This would be placed in your config.cfg file or under general configuration through the admin server. As always, it may help to perform some kind of analysis or metrics gathering prior to adding the configuration and then re-analyze after configuration implementation. What this boils down to is content server watching dynamic html resource includes in components to see if they need to be reloaded.

DisableSharedCacheChecking=true

In other words: if in place on a production server (where you would not be changing includes like you would a development instance) this setting can alleviate a measureable amount of file system activity. This should translate into a performance gain in some fashion.  Or to say this as confusingly as possible: a reduction in performance degradation…I just thought that would be fun to say.

Potential flamebait warning: And as we all know, disks are slooowww. Maybe I just hook the disks up wrong?  I hope I hooked the disks up...

Tuesday, July 22, 2008 7:26:33 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]   Oracle UCM  | 
# Saturday, July 19, 2008

Using "View Server Output" from the admin server can tell you a lot about what is going on inside your content server. The server output can accumulate so much information it can easily be overwhelming. To help with this we are going to take a closer look at the tracing sections and how we can expand the built in list of sections to allow us to trace and troubleshoot the code we build for content server. The information detailed in server output depends on your configuration setup in the System Audit page:

The comma separated list of active tracing sections can be saved into config.cfg under TraceSectionsList. The checkbox next to Full Verbose Tracing would represent TraceIsVerbose in the config.cfg file. Descriptions of these can be found in the IDOC Script Reference Guide. Recall your config.cfg file is in the <install>/config directory, not in the bin directory. The drop down list is filled with sections you can use to narrow or expand your tracing output with.

The server output does not show all activity from all of history. It only displays the most recent activity, and if you are planning on dumping out the full contents of a DataBinder you probably will miss some of the data. On windows, it comes in handy during a full-on-debug-session to add UseRedirectedOutput to your config.cfg file. This will dump the log out to a file on disk. Do not forget to turn this off later or you may run out of disk space or enjoy some decreasing performance metrics.

Excellent, with this basic information under our belt we can now look at how you might add a trace section to that drop down. Say for example you have some code you would like to instrument with tracing so you can see it in server output. Just how might you add your custom-section to the drop down list?

So, having replaced the defaulted information with my specific information I end up with the adjusted resource file looking something like this:

<tr>
    <td>TraceSample</td>
    <td>Example of custom section tracing</td>
    <td>false</td>
</tr>

Having used component manager or component wizard to ENABLE my component (you enabled yours right?) and restarted my content server (you restarted yours right?) I can now see my new custom tracing section in the drop down list in the System Audit page:

Whew. If you have made it this far please stick around a little longer, we are finally ready for the big payoff. We understand tracing now, we understand how to add sections to be traced. So, please, please just tell us how to instrument the code to take advantage of this already! To make use of this in IdocScript use the trace function like this:

IdocScript Tracing

<$trace("message", "#console", "CustomTraceSectionName")$>

So, for the example section I created I would write something like:

<$trace("Trace Test!", "#console", "TraceSample")$>

One word of caution, sometimes when you copy code like this off the web the quotes get out of whack (technical term!). So if you have problems, when you paste this in try retyping the quotes. Or, once installed you could use the test template included in the example component to see how things work.

Java Tracing

If you wanted to use this in Java code you can use SystemUtils.trace("CustomTraceSectionName", "Your Message"); to instrument your Java code for tracing. Inside your Java code you can also take advantage of the "Full Verbose Tracing" checkbox setting by testing the value of SystemUtils.m_verbose, like this:

if (SystemUtils.m_verbose)
{
    SystemUtils.trace("TraceSample", "Tracing from my java code against my custom trace section");
}

You can also dump information about an exception with some code like this:

SystemUtils.traceDumpException("filestore", "Error encountered saving file to file store.", e);

Additional References

IDOCScript Online Reference Guide (HTML Version)
IDOCScript Online Reference Guide (PDF Version)
TracingSample_17JUL2008.zip (Example Component)

Saturday, July 19, 2008 9:27:35 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]   Oracle UCM  | 
# Thursday, July 17, 2008

Online Documentation (Version 10.1.3.3.0)

  1. Release Notes
  2. Install Guide
  3. Administration

Online Blogs & References

  1. Understanding SSPU by John Sims
  2. Fixing FTP with SSPU by John Sims
  3. Useful SSPU Logging from Web Monkey Magic

Now that have all these tools hanging on our belt and you have went to these various places and learned all about SSPU (you did right?) what exactly do I have to add? During some recent publishing we ran into a problem where Cascading Style Sheets and parts of HTML pages were getting replaced when they should not have. An example of the improper transformation might look like:

background: url(/original/path/coolpic.gif)

into

background url(/sspu/translated/path/coolpic.gif)

The difference is fairly subtle, the colon is getting dropped. Bad, bad. Several other issues exist but are all similar in nature. Luckily, patch p51051816 exists. I have been unable to find the patch on METALINK at this point but one Service Request later and they shipped it right out. The patch itself is very simple to apply, and the readme.txt details out the six step process:

Oh, and yes the patch did fix the problem!

Thursday, July 17, 2008 1:57:33 PM (Central Daylight Time, UTC-05:00)  #    Comments [2]   Oracle WCM  | 
# Wednesday, July 16, 2008

Technorati Profile

Wednesday, July 16, 2008 9:08:10 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]   Mindlessness  | 
# Tuesday, July 15, 2008

Bex Huff weighs in on the challenges of ECM 2.0 with some practical advice and warnings.

Enterprise 2.0 is an emerging social and technical movement towards helping your business practices evolve. At its heart, its goals are to empower the right kind of change by connecting decision makers to information, to services and to people. -Brian "Bex" Huff

Now, granted, discussion about ECM 2.0 isn't anything new, I mean we have posts about this going back well into 2007 and farther, but I think we are starting to see some results of this discussion coming around. I would wager the offerings placed before us are still newly hatched, but a year ago it was mostly talk and smoke and mirrors. Several people that are familiar with the Content Management arena are already familiar with the Blog/Wiki capability of SharePoint. SharePoint is often called the "collaborative interface" or "collaborative front-end" by the other vendors who then try to position themselves as a potential backend for SharePoint. Oops…getting off track, that's a discussion for another time.

So, does anyone other than Huff want to wager a description or definition of ECM 2.0? I'm certainly not willful enough yet to do so. As this blog is generally in support of Oracle Fusion ECM (formerly Stellent, formerly Xpedio, formerly…well you get the idea), we would normally focus in that area, however this topic is fairly important to grasp from other views as well. Hence, OpenText defines ECM 2.0 as:

"Enterprise 2.0 Content Management: Provide flexible use of wikis, forums, blogs, tagging, and real-time collaboration. Provide advanced handling of rich-media content, with special emphasis on video, which is quickly becoming the de-facto format for 2.0 style work. "

Well, great. That sounds kind of fun. Honestly, I'm not sure I speak marketing enough to truly discern what "defacto format for 2.0 style work" is subliminally saying to me, but sure we can say that.

What's that? Oh, you have Oracle Fusion ECM and want to do some of this? Right, I almost forgot the basis of the blog. Thanks for bringing me back in. There are a variety of components available for your content server that add enhancements geared towards this discussion. First, you may want to RSS enable your content server. Again, to reference Bex's site you can get the Sample Blogs Component or the Sample Wikis Component off his ECM Library page.

Awesome! So now I can create blogs and wikis in content server just like SharePoint and others? Uh…no. Sorry, I might have misled you. Just a little. The point is, these are sample add-on's to content server that show some of the things that can be done. In truth, these have existed for a good while. If anything, they demonstrate the power of the content server architecture to add new features quickly without a new release. See, OpenText came out with a new release for all this while the folks at what was Stellent at the time kicked these out as a new feature with their component architecture without requiring a big new release and upgrade.

Tuesday, July 15, 2008 7:14:56 PM (Central Daylight Time, UTC-05:00)  #    Comments [2]   Oracle UCM  | 
# Monday, July 14, 2008

Welcome to the inaugural post for coreContentOnly.com! I am, of course, obligated to demonstrate the use of the coreContentOnly flag in my first post. I wanted to present an actual concept out of the gate and I will follow up later with a post about who I am and my agenda.

The concept is simple. By placing the string coreContentOnly=1 in the URL while visiting a page in Content Server you can reduce the page to the core content only (yes, hence the flag name!). This page reduction strips away top menus, left menus, headers, footers, etc. One might wonder how this is useful. Various activities in Desktop Integration and Site Studio Designer take advantage of this scenario. This little bit of magic is possible because of the way the template type portions of the page such as headers and footers are coded in the content server core. In other words, it is very possible for you to create a layout not using base content server includes and not have this functionality work for you. Hopefully this is not a surprise for anyone!

Let's see this in action:

Monday, July 14, 2008 10:16:09 PM (Central Daylight Time, UTC-05:00)  #    Comments [1]   Oracle UCM  | 
Copyright © 2009 Jason Stortz. All rights reserved.