We change the Context.PROVIDER_URL protocol from t3 to iiop and this resolved the problem. Why? Can anyone tell what would be the difference between t3 and iiop?
Thanks,
jay
I have an SLSB running on an instance of WebLogic 8.1.5 and has a method with a transaction attribute of Required. It calls another SLSB running on another WebLogic 8.1.5 that runs on a remote server and that EJB has a method with a transaction attribute of Required. When the first SLSB...
I am already extending DynaValidatorForm and DynaValidatorActionForm to utilize a new ActionMessages class I created and to make the validate method more robust. Is there a place that I can run through all the form values and trim them automatically before the fields are retrievable by the...
I know the difference between
struts-html-el.tld
struts-html.tld
is the ability to use expression languages. But how do you determine when to use one or the other. Why not always use struts-html-el.tld so you have the expression language capability? Is there a performance hit, so the...
Looks like that worked...thanks.
I would be interested to see how you changed the code though. What was getting me side tracked is it appears Mozilla works but Firefox sorta works. It brings the alert window up but logs a javascript error:
Error: [Exception... "'Permission denied to get...
Okay...cool. So here is some code. It works in IE and not Mozilla/Firefox...Any suggestions.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
</head>
<script>
var firstOnKeyRequest = 0;
function onkeypressSubmit( fieldName )
{...
Take a look at the DOM specs for HTML, there is no onclick for the HTMLAnchorElement:
http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-48250443
We have a situation where we have developers defined an onkeypress event for the body tag that checks to see if the enter key was pressed and if so it does a click() method against an anchor tag that we use as a submit button. Now I have another field and anchor tag that I would like to be able...
I have a tiles layout page with a form on it. The action of the form is dynamic because the page can be entered from multiple locations and so the form action changes based on those locations. Except the fact that the fields on the form are the same and so are the validation rules. It appears...
Are you talking about using an XML file to store information that the XSL file uses when doing transformations outside of the file you are transforming? You can use the document function to pull in additional xml files into your stylesheet.
http://www.w3schools.com/xsl/func_document.asp
-jay
Here are a multitude of different ways to setup the XML files. I kind of like the first and last the best:
<clothing>
<pants>
<cargo>
<denim>
<pant>Button Fly</pant>
<pant>Zipper Fly</pant>
</denim>
</cargo>
<cargo>
<khaki>
<pant>Button Fly</pant>...
You could do something as simple as this:
[CODE]
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<xsl:apply-templates select="company_data"/>
</xsl:template>
<xsl:template...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.