[Testimonials] - It's not the JBoss of me
by booketch
ever try installing one of those applications in which you feel you are completely at the mercy of computer gremlins? Where the best way to get it to do something is to try your hardest not to? the kind that keeps you up at night dreading the eventual and inevitable return to it in the morning?
Not so with jboss. My latest experience with it involved setting it up to cluster among multiple machines. Having accomplished clustering with mysql a few weeks before, I hunkered down, prepared for long hours with a lack of discernable progress. Imagine my suprise, when after entering the ./run.sh -c all command four times, followed by a simple adjustment to iptables, I was finished! I felt like, for once, the intent of my fingers and the result on the screen had merged into a seamless system directed by my will and not whatever proclivities my computers were wont to display.
Thanks everyone at the JBoss team for doing such a great job!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059689#4059689
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059689
18Â years, 9Â months
[JBoss Seam] - Re: Page action pain, new stateless component instance?
by grettke_spdr
To clarify, when I set up the flow in this manner, the two properties get lost. I suppose that the hashCode doesn't matter, I just want my stateless component.
As an aside, when I set this up using two stateless components a "form" and then the "action", everything works correctly.
Here is a log from this flow:
| 2007-07-02 11:49:24,707 DEBUG [com.churchmutual.rms.action.impl.InspectionReques tActionImpl] Set account number: 0000415-02-1024
| 2007-07-02 11:49:25,629 DEBUG [com.churchmutual.rms.action.impl.InspectionReques tActionImpl] Hashcode: 32053749
| 2007-07-02 11:49:35,207 DEBUG [com.churchmutual.rms.action.impl.InspectionReques tActionImpl] Set user profile: JohnDoe
| 2007-07-02 11:49:35,707 DEBUG [com.churchmutual.rms.action.impl.InspectionReques tActionImpl] Hashcode: 5658787
| 2007-07-02 11:50:13,831 DEBUG [com.churchmutual.rms.action.impl.InspectionReque tActionImpl] Prepare page
| 2007-07-02 11:50:13,831 DEBUG [com.churchmutual.rms.action.impl.InspectionReque tActionImpl] Hashcode: 21178698
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059681#4059681
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059681
18Â years, 9Â months
[Tomcat, HTTPD, Servlets & JSP] - Re: ERROR [org.apache.catalina.core.ContainerBase.[jboss.web
by GabMx
Hi Raist_Majere!
This is my code of Verifica.jsp :
<html>
| <head>
| <title>Mensaje de Confirmación</title>
| </head>
| <link rel="stylesheet" href="<%=request.getContextPath()%>/css/ie.css" type="text/css"/>
|
| <body style="margin-top:0px;margin-left:0px;margin-right:0px;margin-bottom:0px;" >
| <table bgcolor="#DDDDDD" border="0" cellspacing="0" cellpadding="0" width="100%">
| <tr>
| <td bgcolor=#FFFFFF height=27 style="padding-left:10px;border-bottom:1px solid #10659E;" width=100%>
| <img src="../images/caution.gif"/>
| </td>
| </tr>
| <tr class="estTd01CapturaT2">
| <td valign="top" align="center">
| <%
| if(!request.getParameter("text").equals("capturados")&&!request.getParameter("text").equals("capturados?")){ %>
| <br/>?Est? seguro de que desea borrar <%=request.getParameter("text")%>?
| <%}if(request.getParameter("text").equals("capturados?")){
| %>
| <br/>?Est? seguro que desea guardar los datos <%=request.getParameter("text")%>
| <%}else{ %>
| <br/>?Est? seguro que desea guardar los datos <%=request.getParameter("text")%>?
| <%} %>
| <form name="simadpro">
| <table border="0" cellspacing="0" cellpadding="0" width="100%">
| <tr>
| <td height=7px width=100%></td>
| </tr>
| </table>
| <div align=center>
| <% if(request.getParameter("text").equals("capturados?")){%>
| <input type="image" onClick="CloseModal1(true)" tabindex="1" src="../images/bot_Ace.gif"/>
| Â Â Â Â
| <input type="image" onClick="CloseModal1(false)" tabindex="2" src="../images/bot_Can.gif"/>
| <%}else{ %>
| <input type="image" onClick="CloseModal(true)" tabindex="1" src="../images/bot_Ace.gif"/>
| Â Â Â Â
| <input type="image" onClick="CloseModal(false)" tabindex="2" src="../images/bot_Can.gif"/>
| <%} %>
| </div>
| </form>
| <br/><br/><br/>
| </td>
| </tr>
| </table>
|
| <script language="javascript" type="text/javascript">
|
| function CloseModal(fv)
| {
| if(fv)
| window.opener.asignaValor(true);
| window.close()
| }
| function CloseModal1(fv)
| {
| if(fv)
| window.opener.asignaValor2(true);
| window.close()
| }
| </script>
| </body>
| </html>
Thanks for your help!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059680#4059680
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059680
18Â years, 9Â months