Thursday, February 28, 2008

java.lang.UnsatisfiedLinkError: create_stmt_c_copy

Googling this, this is a result of old oracle jars. Update your oracle jars to the latest or the right version. This should fix this error.

Mule Error: ObjectNotFoundException Object " null" not found in container

This error is not a very descriptive message. What is actually happening in the mule app is that the UMO is attempting to be created, however, it is throwing an error during its creation. The UMO is never then added to the container and therefore cannot be found in the container.

In the example that I encountered this error message, the creation of the com.bamnetworks.reporting.DataReporter fails to be created, because of a misconfiguration in the database and the reporting config.

Monday, February 11, 2008

SWFObject not working

Please ensure that the div in which the flash embed object will be written to is defined before the inclusion of the external javascript file that defines the SWFObject

Otherwise, it will not be able to write to a div tag that does not yet exist.

Example:

...

<div id="flash_videoplayer"><strong>You need to upgrade your
Flash Player</strong> This is replaced by the Flash content. Place your alternate
content here and users without the Flash plugin or with Javascript
turned off will see this. Content here allows you to leave out <code>noscript</code>
tags. Include a link to <a href="swfobject.html?detectflash=false">bypass the detection</a> if you wish.</div>

...

<script type="text/javascript" src="js/flvplayer_2.js">

==========
The above flvplayer_2.js file contains the code below:

var swfObject = new SWFObject("FlvPlayer2.swf", "flvPlayer2", flv_width, flv_height, "9");
swfObject.addParam("allowScriptAccess", "always");
swfObject.addParam("allowFullScreen", "true");
swfObject.addParam("salign", "tl");
swfObject.addParam("menu", "false");
swfObject.addParam("wmode", "transparent");
swfObject.write("flash_videoplayer");

Thursday, February 7, 2008

Removing a CVS tag

The following commands will allow you to execute the cvs command without having to be in a cvs directory:

export CVS_RSH=ssh
cvs -d :ext:{user}@{host name or IP}:/source/cvs -q rtag -d {tag} {absolute location to module}


example:
cvs -d :ext:mtan@172.16.100.123:/source/cvs -q rtag -d MLB_
QA bamnet/tiers/web/axis2/modules/appaccount/auth-service