webwork-user Mailing List for WebWork (Page 7)
Brought to you by:
baldree,
rickardoberg
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(24) |
Dec
(194) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(70) |
Feb
(133) |
Mar
(193) |
Apr
(114) |
May
(141) |
Jun
(176) |
Jul
(334) |
Aug
(418) |
Sep
(329) |
Oct
(209) |
Nov
(296) |
Dec
(122) |
2002 |
Jan
(123) |
Feb
(61) |
Mar
(115) |
Apr
(149) |
May
(124) |
Jun
(69) |
Jul
(80) |
Aug
(22) |
Sep
(1) |
Oct
(4) |
Nov
(3) |
Dec
|
2003 |
Jan
|
Feb
(1) |
Mar
(5) |
Apr
|
May
(1) |
Jun
(5) |
Jul
(4) |
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <ma...@sm...> - 2002-06-17 15:40:32
|
On recall, We modified the start tag to null params which was required for WL to work correctly with this. I did provide a patch and updated CVS. When you get a chance, take a look at 1.9 and see if this fixes the problem. -Matt On Mon, 17 June 2002, ma...@sm... wrote > > Hmm. I wasn't aware any change to prevent this. Could > you send me a source file of URLTag that works > correctly so I can diff it? > > thx. > > -Matt > > On Mon, 17 June 2002, "Taavi Tiirik" wrote > > > > > > > There has been change in url tag behaviour in > revision 1.5 of URLTag.java > > that disables some useful functionality that was > there in rev. 1.4. Why? > > (Latest rev. is 1.8 that still behaves very similar > to rev. 1.5). > > > > For example back in rev. 1.4 I could very easily add > url parameters to > > current page like this: > > > > URL: > > my.action?param1=value1 > > > > code in jsp view: > > <webwork:url> > > <webwork:param name="'param2'" value="'value2'"/> > > </webwork:url> > > > > In revision 1.4 this gave me following url: > > > > my.action?param1=value1¶m2=value2 > > > > Since revision 1.5 it removes any existing url > parameters > > and gives following result: > > > > my.action?param2=value2 > > > > I think url tag could use an extra pararameter which > determines > > when parameters have to be added to existing ones and > when > > all current parameters have to be removed. What do > you think? > > > > with best wishes, > > Taavi > > > > > > > > > _______________________________________________________________ > > > > Sponsored by: > > ThinkGeek at http://www.ThinkGeek.com/ > > _______________________________________________ > > Webwork-user mailing list > > Web...@li... > > > https://lists.sourceforge.net/lists/listinfo/webwork-user > > _______________________________________________________________ > > Sponsored by: > ThinkGeek at http://www.ThinkGeek.com/ > _______________________________________________ > Webwork-user mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-user |
From: <ma...@sm...> - 2002-06-17 14:33:25
|
Hmm. I wasn't aware any change to prevent this. Could you send me a source file of URLTag that works correctly so I can diff it? thx. -Matt On Mon, 17 June 2002, "Taavi Tiirik" wrote > > > There has been change in url tag behaviour in revision 1.5 of URLTag.java > that disables some useful functionality that was there in rev. 1.4. Why? > (Latest rev. is 1.8 that still behaves very similar to rev. 1.5). > > For example back in rev. 1.4 I could very easily add url parameters to > current page like this: > > URL: > my.action?param1=value1 > > code in jsp view: > <webwork:url> > <webwork:param name="'param2'" value="'value2'"/> > </webwork:url> > > In revision 1.4 this gave me following url: > > my.action?param1=value1¶m2=value2 > > Since revision 1.5 it removes any existing url parameters > and gives following result: > > my.action?param2=value2 > > I think url tag could use an extra pararameter which determines > when parameters have to be added to existing ones and when > all current parameters have to be removed. What do you think? > > with best wishes, > Taavi > > > > _______________________________________________________________ > > Sponsored by: > ThinkGeek at http://www.ThinkGeek.com/ > _______________________________________________ > Webwork-user mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-user |
From: Taavi T. <ta...@ib...> - 2002-06-17 14:05:01
|
There has been change in url tag behaviour in revision 1.5 of URLTag.java that disables some useful functionality that was there in rev. 1.4. Why? (Latest rev. is 1.8 that still behaves very similar to rev. 1.5). For example back in rev. 1.4 I could very easily add url parameters to current page like this: URL: my.action?param1=value1 code in jsp view: <webwork:url> <webwork:param name="'param2'" value="'value2'"/> </webwork:url> In revision 1.4 this gave me following url: my.action?param1=value1¶m2=value2 Since revision 1.5 it removes any existing url parameters and gives following result: my.action?param2=value2 I think url tag could use an extra pararameter which determines when parameters have to be added to existing ones and when all current parameters have to be removed. What do you think? with best wishes, Taavi |
From: <ma...@sm...> - 2002-06-14 20:43:38
|
If an error was passed along ActionSupport will change the view to INPUT so you will need an input view. If that is not the fix, zip me up something and I'll take a look. -Matt On Fri, 14 June 2002, "Patrick Lightbody" wrote > > Matt, > This doesn't appear to be working for cases such as the follow (which I used > extensively before action chaining, and i thought it would still work now > too, but maybe not): > > Details.action=paws.Details > Details.success=details.jsp > > EditMetadata.action=paws.metadata.EditMetadata > EditMetadata.error=edit.jsp > EditMetadata.success=Details.action > > EditMetadata and Details both extends AbstractPAWSAction, which looks like > this (get/set for the following): > > id > title > language > creator > ...etc > > EditMetadata and Details both don't have any extra properties worth > mentioning in this example. Now EditMetadata.doExecute() is called and > returns SUCCESS, but then the browser gets a blank page at > http://localhost/paws/csh/EditMetadata.action and the console shows this > error: > > java.lang.IllegalArgumentException: No error view found for action Details > at > webwork.dispatcher.ConfigurationViewMapping.getView(ConfigurationViewMapping > .java:87) > at > webwork.dispatcher.ConfigurationViewMapping.getView(ConfigurationViewMapping > .java:85) > at > webwork.dispatcher.CachingViewMapping.getView(CachingViewMapping.java:47) > at > webwork.dispatcher.DefaultViewMapping.getView(DefaultViewMapping.java:35) > at > webwork.dispatcher.ServletDispatcher.getView(ServletDispatcher.java:336) > at > webwork.dispatcher.ServletDispatcher.service(ServletDispatcher.java:258) > > I added "Details.error=details.jsp" and instead of getting the error, I got > returned to details.jsp just fine, except that all the properties were null > so errors were all over the place. Any idea what's going on here? > > -Pat > > > > ----- Original Message ----- > From: <ma...@sm...> > To: <web...@li...>; > <web...@li...> > Sent: Thursday, June 13, 2002 10:26 AM > Subject: [Webwork-devel] action chaining > > > > I implemented a preliminary version of action chaining. > > It is available in CVS with a simple test case. This > > has not been extensively tested so *beware*. I'm > > looking for early testers. > > > > The basic logic is the following: > > > > 1. Setup your chain in your view mapping. > > 2. The dispatcher will walk the chain as long as each > > action returns another alias action. This will continue > > until a non-action, usually a view, is returned. > > 3. Each action will first be set via the context and > > then the previous action's attributes will be copied to > > the current action if applicable. > > > > Enjoy! > > > > -Matt > > > > > > > > _______________________________________________________________ > > > > Don't miss the 2002 Sprint PCS Application Developer's Conference > > August 25-28 in Las Vegas - > http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > > > _______________________________________________ > > Webwork-devel mailing list > > Web...@li... > > https://lists.sourceforge.net/lists/listinfo/webwork-devel > > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Webwork-devel mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-devel |
From: Patrick L. <pli...@ho...> - 2002-06-14 20:27:59
|
Matt, This doesn't appear to be working for cases such as the follow (which I used extensively before action chaining, and i thought it would still work now too, but maybe not): Details.action=paws.Details Details.success=details.jsp EditMetadata.action=paws.metadata.EditMetadata EditMetadata.error=edit.jsp EditMetadata.success=Details.action EditMetadata and Details both extends AbstractPAWSAction, which looks like this (get/set for the following): id title language creator ...etc EditMetadata and Details both don't have any extra properties worth mentioning in this example. Now EditMetadata.doExecute() is called and returns SUCCESS, but then the browser gets a blank page at http://localhost/paws/csh/EditMetadata.action and the console shows this error: java.lang.IllegalArgumentException: No error view found for action Details at webwork.dispatcher.ConfigurationViewMapping.getView(ConfigurationViewMapping .java:87) at webwork.dispatcher.ConfigurationViewMapping.getView(ConfigurationViewMapping .java:85) at webwork.dispatcher.CachingViewMapping.getView(CachingViewMapping.java:47) at webwork.dispatcher.DefaultViewMapping.getView(DefaultViewMapping.java:35) at webwork.dispatcher.ServletDispatcher.getView(ServletDispatcher.java:336) at webwork.dispatcher.ServletDispatcher.service(ServletDispatcher.java:258) I added "Details.error=details.jsp" and instead of getting the error, I got returned to details.jsp just fine, except that all the properties were null so errors were all over the place. Any idea what's going on here? -Pat ----- Original Message ----- From: <ma...@sm...> To: <web...@li...>; <web...@li...> Sent: Thursday, June 13, 2002 10:26 AM Subject: [Webwork-devel] action chaining > I implemented a preliminary version of action chaining. > It is available in CVS with a simple test case. This > has not been extensively tested so *beware*. I'm > looking for early testers. > > The basic logic is the following: > > 1. Setup your chain in your view mapping. > 2. The dispatcher will walk the chain as long as each > action returns another alias action. This will continue > until a non-action, usually a view, is returned. > 3. Each action will first be set via the context and > then the previous action's attributes will be copied to > the current action if applicable. > > Enjoy! > > -Matt > > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Webwork-devel mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-devel > |
From: <ma...@sm...> - 2002-06-14 19:11:44
|
I'm cross posting this to get wider exposure. :) It looks like I have the standard tags almost XHTML compliant. The only issues I'm aware of is the following: 1. TextArea does not allow the wrap attribute under XHTML. By default, we set it to "virtual" which most browsers ignore. So, the fix is to remove this attribute. Should be no big deal. 2. The CascadingSelect has inline JavaScript. XHTML does not allow this. You have two choices - include it or CDATA it. Most browsers don't like CDATA at this time so we would need to include it but that doesn't work. Maybe "Jay Bose" can take a look at this later. Anyway, its not a big deal for now. That's it. Don't forget about questions below!! -Matt On Fri, 14 June 2002, ma...@sm... wrote > > Is anybody using the CSS tags? I'm in the process of > making sure our standard tags are XHTML compliant. I > looked at the CSS tags and I will not be able to make > them XHTML compliant without essentially making them > similar to the standard tags. > > So, the question is do we need to keep CSS? XHTML will > definitely be the wave of the future and therefore I > think we should strive to keep our tags XHTML compliant. > > I would like to remove CSS and rename standard to > XHTML. Anybody see a problem with this? I'm also going > to move the VXML tags out from under standard. So, in > the end we will have XHTML and VXML tags. > > -Matt > > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Webwork-devel mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-devel |
From: <ma...@sm...> - 2002-06-13 19:44:42
|
Obviously this could be a heated debate on TSS but that aside here are some points to start the discussion. I'll let others add/delete/edit from mine. - WW provides provides custom tags in the form of themes. Struts does not provides this. Anotherwords, you can create your own set of dynamic custom ui tags easily; i.e., voice xml, xhtml, wml, etc. Another point is that the rendering of these tags is abstracted nicely. - WW will provide action chaining which struts doesn't at this time. - WW provides native support for multi-part support. Struts provides custom action for this. WW wraps the request so it behaves as a normal HTTP request. - WW provides a robust expression language to easily fetch data. BTW, the new JSTL will provide a similar capability. Hmm, where did they get this idea? - WW does support i18n. - WW will cast your parameter to the appropriate type for you. struts does not do this. it only supports strings. - WW supports multiple view technologies such as XSLT, Velocity, JSP, Applet, and soon more. I don't know of any other MVC-like frameworks that support this. - WW is aimed at providing part of the web tier solution. For instance, many people use it with OSCache, Sitemesh, and other complimentary frameworks. - We haven't profiled WW yet. This needs to be done. - We still have lots to do but I think we have a solid start. Check it out and tell us what you think. -Matt On Thu, 13 June 2002, Steven Haines wrote > > Hi, > > I need to develop a J2EE application using an MVC > architecture. In the past I have just developed > frameworks similar to the J2EE Blue Prints, but it is > cumbersome and takes time to develop (although it > performs very well from a scalability and memory usage > perspective). > > I also need the ability to internationalize my > application. > > I have briefly looked at WebWork and Struts but wanted > to find out from the field what you believe the > benefits are to using WebWork. Also, what portion of > my architecture does WebWork provide? Just the web > portion or does it provide the framework for the EJB > backend as well (a mechanism for forwarding business > events to to middleware)? > > I have followed Rickard's accomplishments over the > past few years (through JBoss and theserverside.com) > and I am betting this is the framework for me. > > Thanks in advance. > Steven Haines > > > __________________________________________________ > Do You Yahoo!? > Yahoo! - Official partner of 2002 FIFA World Cup > http://fifaworldcup.yahoo.com > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Webwork-user mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-user |
From: Steven H. <ly...@ya...> - 2002-06-13 18:17:44
|
Hi, I need to develop a J2EE application using an MVC architecture. In the past I have just developed frameworks similar to the J2EE Blue Prints, but it is cumbersome and takes time to develop (although it performs very well from a scalability and memory usage perspective). I also need the ability to internationalize my application. I have briefly looked at WebWork and Struts but wanted to find out from the field what you believe the benefits are to using WebWork. Also, what portion of my architecture does WebWork provide? Just the web portion or does it provide the framework for the EJB backend as well (a mechanism for forwarding business events to to middleware)? I have followed Rickard's accomplishments over the past few years (through JBoss and theserverside.com) and I am betting this is the framework for me. Thanks in advance. Steven Haines __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com |
From: <ma...@sm...> - 2002-06-13 17:37:07
|
I see better documentation has been a popular issue but, I don't see specific suggestions or problems with what we have. It would be helpful if those of you that would like better docs would provide some specific comments so we could fix this problem. thx. -Matt http://opensource.atlassian.com/projects/webwork/secure/ViewIssue.jspa?id=10042 |
From: <ma...@sm...> - 2002-06-13 17:26:56
|
I implemented a preliminary version of action chaining. It is available in CVS with a simple test case. This has not been extensively tested so *beware*. I'm looking for early testers. The basic logic is the following: 1. Setup your chain in your view mapping. 2. The dispatcher will walk the chain as long as each action returns another alias action. This will continue until a non-action, usually a view, is returned. 3. Each action will first be set via the context and then the previous action's attributes will be copied to the current action if applicable. Enjoy! -Matt |
From: Peter K. <pe...@mo...> - 2002-06-13 09:03:33
|
This could be an answer in some sort of FAQ: How do I take an int from the item on top of the value stack and put it in the user's session to be retrieved later ? The problem I'm trying to solve is getting values from a number of controls in a list which all have different names. I can get the values using the map but I need to know what they are called. I have used a name stem and a numeric suffix for each control hence the need to know the number of controls present. I guess I could use a hidden field on the JSP but this seems wrong somehow. Putting the value in the session before displaying the JSP leads to complications when the users play around with the back button on the browser or direct URL references. Any ideas ? -- regards, Peter Kelley MoveIt Pty Ltd "If you want to build a ship, don't drum up the men to gather wood, divide the work and give orders. Instead, teach them to yearn for the vast and endless sea." - Saint-Exupery |
From: Jay B. <dig...@ya...> - 2002-06-11 16:20:22
|
Give your Action a Map variable. The dynamic field names can be the keys and the field values will be the Map values. I think this is doable. Look at the CascadingSelectTest example. It does something close to what your asking. --- Vipul Manglik <vi...@mo...> wrote: Hi, I am designing a html form which has a variable number of form fields. The user filling the form can request creation of more form fields if needed. For instance, the form has a field to allow user to input 'product number'. The user can click on 'Add' button which creates another form field with 'product number'. My problem is that since the fields are created dynamically, and the names also assigned dynamically (like product_1, product_2 and so on), how do I get the values in a webwork action? Is there a pattern I can use for displaying and then getting values for dynmaically created list of from controls? Thanks Vipul Manglik ===== Respectfully, Jay Bose __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com |
From: Vedovato P. <pao...@pr...> - 2002-06-11 07:52:13
|
Hi Scott and Mike thank you for the confirmation and clarifications.=20 > Can I suggest that you move this thread to *just* the=20 > sitemesh list, as=20 > it does not really pertain to webwork. Sure, I will now move it to SiteMesh (in fact I think it can be closed = now :-).=20 I just wanted to let this issue know to the webwork users which certainly are very interested to evaluate SiteMesh and that they don't spend to much time trying to get it working... Thanks again. -Paolo > -----Urspr=FCngliche Nachricht----- > Von: Mike Cannon-Brookes [mailto:mi...@at...] > Gesendet: Dienstag, 11. Juni 2002 09:21 > An: Vedovato Paolo; 'Mathias Bogaert'; opensymphony-sitemesh; > web...@li... > Betreff: Re: AW: [Webwork-user] Re: [Opensymphony-sitemesh]=20 > Webwork and > Siteme sh >=20 >=20 > I'm not sure about WL7.0 - but we have been talking to BEA=20 > for a week now > about the bug in 6.1sp2 that prevents SiteMesh from working=20 > (at all). BEA > recently sent us a patch which seems to fix that bug=20 > (although it may have > revealed another one). The fix should be in sp3. >=20 > Again, I'm not sure about 7.0. I believed people have it=20 > working there, but > there a few bugs on http://jira.opensymphony.com which may=20 > indicate that it > doesn't work under certain circumstances (like with ww ;)) >=20 > Sorry I can't bear better news - the best thing you can do=20 > for both SiteMesh > and WebWork is complain to your local, friendly BEA sales=20 > representative. In > my experience when their customers complain, BEA are actually=20 > very good at > getting engineers to fix problems. ;) >=20 > Cheers, > Mike >=20 >=20 > ATLASSIAN - http://www.atlassian.com > Expert J2EE Software, Services and Support > ------------------------------------------------------- > Need a simple, powerful way to track and manage issues? > Try JIRA - http://www.atlassian.com/software/jira >=20 > On 11/6/02 4:39 PM, "Vedovato Paolo"=20 > (pao...@pr...) > penned the words: >=20 > > In other words (and please can somebody confirm this!): > >=20 > > Due to a bug in Bea WLS and having no workaround for that, Sitemesh > > 1.4.1-1.5(cvs) can not be > > used with Webwork and WLS 6.1sp2 or WLS 7.0. > >=20 > > Please clarify so I can stop evalute it until this is fixed... > >=20 > > Thanks > > -Paolo > >=20 > >> -----Urspr=FCngliche Nachricht----- > >> Von: Mathias Bogaert [mailto:pa...@pa...] > >> Gesendet: Dienstag, 11. Juni 2002 10:17 > >> An: Vedovato Paolo; Opensymphony-Sitemesh (E-Mail); Webwork-User > >> (E-Mail) > >> Betreff: [Webwork-user] Re: [Opensymphony-sitemesh] Webwork > >> and Sitemesh > >>=20 > >>=20 > >> Hi, > >>=20 > >> It seems that the server is spawning an empty page. From my > >> development > >> experience, I know that this happens when the server receives > >> an exception > >> in the JSP, and is unable to forward (or something like > >> that). Most of the > >> time, this means you have an exception logged somewhere. > >> Check the logs. > >> Also, check if you don't have any compability problems with > >> Weblogic (look > >> here:=20 > http://jira.opensymphony.com/secure/ViewIssue.jspa?id=3D10045 ). > >>=20 > >> Regards, > >>=20 > >> Mathias > >>=20 > >> ----- Original Message ----- > >> From: "Vedovato Paolo" <pao...@pr...> > >> To: "Opensymphony-Sitemesh (E-Mail)" > >> <ope...@li...>;=20 > "Webwork-User (E-Mail)" > >> <web...@li...> > >> Sent: Monday, June 10, 2002 7:17 AM > >> Subject: [Opensymphony-sitemesh] Webwork and Sitemesh > >>=20 > >>=20 > >>> Hi > >>>=20 > >>> using Sitemesh: 1.4.1, Webwork 1.1, Bea WLS 7.0. > >>>=20 > >>> I've tried to integrate SiteMeash in my working > >> WebWork-based webApp. > >>> Unfortunately I'm having some problems whioch prevent me to > >> getit up and > >>> running well. Hoping that some Sitemesh user use also > >> WebWork and they can > >>> share some thoughts. I've also looked in both mailingslist > >> to find advices > >>> which could help me but there are still some open issues.. > >>>=20 > >>> I hope it's not to offensive if I post this question to > >> both mailinglists. > >>>=20 > >>> I've managed to get the most important webwork tags > >> (property and text) > >>> working in the decorators by surrounding <webwork:action > >>> name=3D"'BaseAction'"> decorator-content </webwork:action> > >>>=20 > >>> This is my first question: is this really the only way to=20 > get the ww > >>> property and text tag working in the sm decorators? > >>>=20 > >>> After that I've adapted my resource to be decorated. But it > >> works only if > >> in > >>> this resource I don't use any ww text or property tag. > >> Instead of the > >>> decorated resource I get a blank page: > >>>=20 > >>> using mie 6.0: > >>> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > >>> <HTML><HEAD> > >>> <META http-equiv=3DContent-Type content=3D"text/html; > >>> charset=3Dwindows-1252"></HEAD> > >>> <BODY></BODY></HTML> > >>>=20 > >>> using mozilla 1.0: > >>> <html><body></body></html> > >>>=20 > >>> Has anybody a solution to this? > >>>=20 > >>> TIA > >>>=20 > >>> Cheers > >>> -Paolo > >>>=20 > >>>=20 > >>>=20 > >>>=20 > >>>=20 > >>>=20 > >>> _______________________________________________________________ > >>>=20 > >>> Don't miss the 2002 Sprint PCS Application Developer's Conference > >>> August 25-28 in Las Vegas - > >> http://devcon.sprintpcs.com/adp/index.cfm?source=3Dosdntextlink > >>>=20 > >>> _______________________________________________ > >>> Opensymphony-sitemesh mailing list > >>> Ope...@li... > >>> = https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh > >>>=20 > >>=20 > >>=20 > >> _______________________________________________________________ > >>=20 > >> Don't miss the 2002 Sprint PCS Application Developer's Conference > >> August 25-28 in Las Vegas - > > http://devcon.sprintpcs.com/adp/index.cfm?source=3Dosdntextlink > >=20 > > _______________________________________________ > > Webwork-user mailing list > > Web...@li... > > https://lists.sourceforge.net/lists/listinfo/webwork-user > >=20 > > _______________________________________________________________ > >=20 > > Don't miss the 2002 Sprint PCS Application Developer's Conference > > August 25-28 in Las Vegas - > > http://devcon.sprintpcs.com/adp/index.cfm?source=3Dosdntextlink > >=20 > > _______________________________________________ > > Opensymphony-sitemesh mailing list > > Ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh >=20 |
From: Mike Cannon-B. <mi...@at...> - 2002-06-11 07:21:12
|
I'm not sure about WL7.0 - but we have been talking to BEA for a week now about the bug in 6.1sp2 that prevents SiteMesh from working (at all). BEA recently sent us a patch which seems to fix that bug (although it may have revealed another one). The fix should be in sp3. Again, I'm not sure about 7.0. I believed people have it working there, but there a few bugs on http://jira.opensymphony.com which may indicate that it doesn't work under certain circumstances (like with ww ;)) Sorry I can't bear better news - the best thing you can do for both SiteMes= h and WebWork is complain to your local, friendly BEA sales representative. I= n my experience when their customers complain, BEA are actually very good at getting engineers to fix problems. ;) Cheers, Mike ATLASSIAN - http://www.atlassian.com Expert J2EE Software, Services and Support ------------------------------------------------------- Need a simple, powerful way to track and manage issues? Try JIRA - http://www.atlassian.com/software/jira On 11/6/02 4:39 PM, "Vedovato Paolo" (pao...@pr...) penned the words: > In other words (and please can somebody confirm this!): >=20 > Due to a bug in Bea WLS and having no workaround for that, Sitemesh > 1.4.1-1.5(cvs) can not be > used with Webwork and WLS 6.1sp2 or WLS 7.0. >=20 > Please clarify so I can stop evalute it until this is fixed... >=20 > Thanks > -Paolo >=20 >> -----Urspr=FCngliche Nachricht----- >> Von: Mathias Bogaert [mailto:pa...@pa...] >> Gesendet: Dienstag, 11. Juni 2002 10:17 >> An: Vedovato Paolo; Opensymphony-Sitemesh (E-Mail); Webwork-User >> (E-Mail) >> Betreff: [Webwork-user] Re: [Opensymphony-sitemesh] Webwork >> and Sitemesh >>=20 >>=20 >> Hi, >>=20 >> It seems that the server is spawning an empty page. From my >> development >> experience, I know that this happens when the server receives >> an exception >> in the JSP, and is unable to forward (or something like >> that). Most of the >> time, this means you have an exception logged somewhere. >> Check the logs. >> Also, check if you don't have any compability problems with >> Weblogic (look >> here: http://jira.opensymphony.com/secure/ViewIssue.jspa?id=3D10045 ). >>=20 >> Regards, >>=20 >> Mathias >>=20 >> ----- Original Message ----- >> From: "Vedovato Paolo" <pao...@pr...> >> To: "Opensymphony-Sitemesh (E-Mail)" >> <ope...@li...>; "Webwork-User (E-Mail)" >> <web...@li...> >> Sent: Monday, June 10, 2002 7:17 AM >> Subject: [Opensymphony-sitemesh] Webwork and Sitemesh >>=20 >>=20 >>> Hi >>>=20 >>> using Sitemesh: 1.4.1, Webwork 1.1, Bea WLS 7.0. >>>=20 >>> I've tried to integrate SiteMeash in my working >> WebWork-based webApp. >>> Unfortunately I'm having some problems whioch prevent me to >> getit up and >>> running well. Hoping that some Sitemesh user use also >> WebWork and they can >>> share some thoughts. I've also looked in both mailingslist >> to find advices >>> which could help me but there are still some open issues.. >>>=20 >>> I hope it's not to offensive if I post this question to >> both mailinglists. >>>=20 >>> I've managed to get the most important webwork tags >> (property and text) >>> working in the decorators by surrounding <webwork:action >>> name=3D"'BaseAction'"> decorator-content </webwork:action> >>>=20 >>> This is my first question: is this really the only way to get the ww >>> property and text tag working in the sm decorators? >>>=20 >>> After that I've adapted my resource to be decorated. But it >> works only if >> in >>> this resource I don't use any ww text or property tag. >> Instead of the >>> decorated resource I get a blank page: >>>=20 >>> using mie 6.0: >>> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> >>> <HTML><HEAD> >>> <META http-equiv=3DContent-Type content=3D"text/html; >>> charset=3Dwindows-1252"></HEAD> >>> <BODY></BODY></HTML> >>>=20 >>> using mozilla 1.0: >>> <html><body></body></html> >>>=20 >>> Has anybody a solution to this? >>>=20 >>> TIA >>>=20 >>> Cheers >>> -Paolo >>>=20 >>>=20 >>>=20 >>>=20 >>>=20 >>>=20 >>> _______________________________________________________________ >>>=20 >>> Don't miss the 2002 Sprint PCS Application Developer's Conference >>> August 25-28 in Las Vegas - >> http://devcon.sprintpcs.com/adp/index.cfm?source=3Dosdntextlink >>>=20 >>> _______________________________________________ >>> Opensymphony-sitemesh mailing list >>> Ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh >>>=20 >>=20 >>=20 >> _______________________________________________________________ >>=20 >> Don't miss the 2002 Sprint PCS Application Developer's Conference >> August 25-28 in Las Vegas - > http://devcon.sprintpcs.com/adp/index.cfm?source=3Dosdntextlink >=20 > _______________________________________________ > Webwork-user mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-user >=20 > _______________________________________________________________ >=20 > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - > http://devcon.sprintpcs.com/adp/index.cfm?source=3Dosdntextlink >=20 > _______________________________________________ > Opensymphony-sitemesh mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh |
From: Scott F. <sc...@at...> - 2002-06-11 07:18:10
|
That is correct. You will need to wait for SP3 for ww & sitemesh to work together: http://jira.opensymphony.com/secure/ViewIssue.jspa?key=SIM-2 I'm still hoping to solve http://jira.opensymphony.com/secure/ViewIssue.jspa?key=SIM-25 Which also affects Weblogic. You can probably get the patch for SIM-2 from your weblogic support rep if you don't want to wait for SP3. Can I suggest that you move this thread to *just* the sitemesh list, as it does not really pertain to webwork. Cheers, Scott Vedovato Paolo wrote: > In other words (and please can somebody confirm this!): > > Due to a bug in Bea WLS and having no workaround for that, Sitemesh > 1.4.1-1.5(cvs) can not be > used with Webwork and WLS 6.1sp2 or WLS 7.0. > > Please clarify so I can stop evalute it until this is fixed... > > Thanks > -Paolo > > >>-----Urspr?ngliche Nachricht----- >>Von: Mathias Bogaert [mailto:pa...@pa...] >>Gesendet: Dienstag, 11. Juni 2002 10:17 >>An: Vedovato Paolo; Opensymphony-Sitemesh (E-Mail); Webwork-User >>(E-Mail) >>Betreff: [Webwork-user] Re: [Opensymphony-sitemesh] Webwork >>and Sitemesh >> >> >>Hi, >> >>It seems that the server is spawning an empty page. From my >>development >>experience, I know that this happens when the server receives >>an exception >>in the JSP, and is unable to forward (or something like >>that). Most of the >>time, this means you have an exception logged somewhere. >>Check the logs. >>Also, check if you don't have any compability problems with >>Weblogic (look >>here: http://jira.opensymphony.com/secure/ViewIssue.jspa?id=10045 ). >> >>Regards, >> >>Mathias >> >>----- Original Message ----- >>From: "Vedovato Paolo" <pao...@pr...> >>To: "Opensymphony-Sitemesh (E-Mail)" >><ope...@li...>; "Webwork-User (E-Mail)" >><web...@li...> >>Sent: Monday, June 10, 2002 7:17 AM >>Subject: [Opensymphony-sitemesh] Webwork and Sitemesh >> >> >> >>>Hi >>> >>>using Sitemesh: 1.4.1, Webwork 1.1, Bea WLS 7.0. >>> >>>I've tried to integrate SiteMeash in my working >> >>WebWork-based webApp. >> >>>Unfortunately I'm having some problems whioch prevent me to >> >>getit up and >> >>>running well. Hoping that some Sitemesh user use also >> >>WebWork and they can >> >>>share some thoughts. I've also looked in both mailingslist >> >>to find advices >> >>>which could help me but there are still some open issues.. >>> >>>I hope it's not to offensive if I post this question to >> >>both mailinglists. >> >>>I've managed to get the most important webwork tags >> >>(property and text) >> >>>working in the decorators by surrounding <webwork:action >>>name="'BaseAction'"> decorator-content </webwork:action> >>> >>>This is my first question: is this really the only way to get the ww >>>property and text tag working in the sm decorators? >>> >>>After that I've adapted my resource to be decorated. But it >> >>works only if >>in >> >>>this resource I don't use any ww text or property tag. >> >>Instead of the >> >>>decorated resource I get a blank page: >>> >>>using mie 6.0: >>><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> >>><HTML><HEAD> >>><META http-equiv=Content-Type content="text/html; >>>charset=windows-1252"></HEAD> >>><BODY></BODY></HTML> >>> >>>using mozilla 1.0: >>><html><body></body></html> >>> >>>Has anybody a solution to this? >>> >>>TIA >>> >>>Cheers >>>-Paolo >>> >>> >>> >>> >>> >>> >>>_______________________________________________________________ >>> >>>Don't miss the 2002 Sprint PCS Application Developer's Conference >>>August 25-28 in Las Vegas - >> >>http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink >> >>>_______________________________________________ >>>Opensymphony-sitemesh mailing list >>>Ope...@li... >>>https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh >>> >> >> >>_______________________________________________________________ >> >>Don't miss the 2002 Sprint PCS Application Developer's Conference >>August 25-28 in Las Vegas - > > http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Webwork-user mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-user > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source > _______________________________________________ > Opensymphony-sitemesh mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh > -- Scott Farquhar :: sc...@at... Atlassian :: http://www.atlassian.com Supporting YOUR J2EE World |
From: Vedovato P. <pao...@pr...> - 2002-06-11 06:40:11
|
In other words (and please can somebody confirm this!): Due to a bug in Bea WLS and having no workaround for that, Sitemesh 1.4.1-1.5(cvs) can not be used with Webwork and WLS 6.1sp2 or WLS 7.0. Please clarify so I can stop evalute it until this is fixed... Thanks -Paolo > -----Urspr=FCngliche Nachricht----- > Von: Mathias Bogaert [mailto:pa...@pa...] > Gesendet: Dienstag, 11. Juni 2002 10:17 > An: Vedovato Paolo; Opensymphony-Sitemesh (E-Mail); Webwork-User > (E-Mail) > Betreff: [Webwork-user] Re: [Opensymphony-sitemesh] Webwork=20 > and Sitemesh >=20 >=20 > Hi, >=20 > It seems that the server is spawning an empty page. From my=20 > development > experience, I know that this happens when the server receives=20 > an exception > in the JSP, and is unable to forward (or something like=20 > that). Most of the > time, this means you have an exception logged somewhere.=20 > Check the logs. > Also, check if you don't have any compability problems with=20 > Weblogic (look > here: http://jira.opensymphony.com/secure/ViewIssue.jspa?id=3D10045 = ). >=20 > Regards, >=20 > Mathias >=20 > ----- Original Message ----- > From: "Vedovato Paolo" <pao...@pr...> > To: "Opensymphony-Sitemesh (E-Mail)" > <ope...@li...>; "Webwork-User = (E-Mail)" > <web...@li...> > Sent: Monday, June 10, 2002 7:17 AM > Subject: [Opensymphony-sitemesh] Webwork and Sitemesh >=20 >=20 > > Hi > > > > using Sitemesh: 1.4.1, Webwork 1.1, Bea WLS 7.0. > > > > I've tried to integrate SiteMeash in my working=20 > WebWork-based webApp. > > Unfortunately I'm having some problems whioch prevent me to=20 > getit up and > > running well. Hoping that some Sitemesh user use also=20 > WebWork and they can > > share some thoughts. I've also looked in both mailingslist=20 > to find advices > > which could help me but there are still some open issues.. > > > > I hope it's not to offensive if I post this question to=20 > both mailinglists. > > > > I've managed to get the most important webwork tags=20 > (property and text) > > working in the decorators by surrounding <webwork:action > > name=3D"'BaseAction'"> decorator-content </webwork:action> > > > > This is my first question: is this really the only way to get the = ww > > property and text tag working in the sm decorators? > > > > After that I've adapted my resource to be decorated. But it=20 > works only if > in > > this resource I don't use any ww text or property tag.=20 > Instead of the > > decorated resource I get a blank page: > > > > using mie 6.0: > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > > <HTML><HEAD> > > <META http-equiv=3DContent-Type content=3D"text/html; > > charset=3Dwindows-1252"></HEAD> > > <BODY></BODY></HTML> > > > > using mozilla 1.0: > > <html><body></body></html> > > > > Has anybody a solution to this? > > > > TIA > > > > Cheers > > -Paolo > > > > > > > > > > > > > > _______________________________________________________________ > > > > Don't miss the 2002 Sprint PCS Application Developer's Conference > > August 25-28 in Las Vegas - > http://devcon.sprintpcs.com/adp/index.cfm?source=3Dosdntextlink > > > > _______________________________________________ > > Opensymphony-sitemesh mailing list > > Ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh > > >=20 >=20 > _______________________________________________________________ >=20 > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas -=20 http://devcon.sprintpcs.com/adp/index.cfm?source=3Dosdntextlink _______________________________________________ Webwork-user mailing list Web...@li... https://lists.sourceforge.net/lists/listinfo/webwork-user |
From: Vipul M. <vi...@mo...> - 2002-06-11 06:37:53
|
Hi, I am designing a html form which has a variable number of form fields. The user filling the form can request creation of more form fields if needed. For instance, the form has a field to allow user to input 'product number'. The user can click on 'Add' button which creates another form field with 'product number'. My problem is that since the fields are created dynamically, and the names also assigned dynamically (like product_1, product_2 and so on), how do I get the values in a webwork action? Is there a pattern I can use for displaying and then getting values for dynmaically created list of from controls? Thanks Vipul Manglik |
From: Mathias B. <pa...@pa...> - 2002-06-10 23:16:03
|
Also, try using the CVS version of SiteMesh (or wait for 1.5), as it fixes a whole lot of bugs from 1.4.1. Mathias ----- Original Message ----- From: "Vedovato Paolo" <pao...@pr...> To: "Opensymphony-Sitemesh (E-Mail)" <ope...@li...>; "Webwork-User (E-Mail)" <web...@li...> Sent: Monday, June 10, 2002 7:17 AM Subject: [Opensymphony-sitemesh] Webwork and Sitemesh > Hi > > using Sitemesh: 1.4.1, Webwork 1.1, Bea WLS 7.0. > > I've tried to integrate SiteMeash in my working WebWork-based webApp. > Unfortunately I'm having some problems whioch prevent me to getit up and > running well. Hoping that some Sitemesh user use also WebWork and they can > share some thoughts. I've also looked in both mailingslist to find advices > which could help me but there are still some open issues.. > > I hope it's not to offensive if I post this question to both mailinglists. > > I've managed to get the most important webwork tags (property and text) > working in the decorators by surrounding <webwork:action > name="'BaseAction'"> decorator-content </webwork:action> > > This is my first question: is this really the only way to get the ww > property and text tag working in the sm decorators? > > After that I've adapted my resource to be decorated. But it works only if in > this resource I don't use any ww text or property tag. Instead of the > decorated resource I get a blank page: > > using mie 6.0: > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > <HTML><HEAD> > <META http-equiv=Content-Type content="text/html; > charset=windows-1252"></HEAD> > <BODY></BODY></HTML> > > using mozilla 1.0: > <html><body></body></html> > > Has anybody a solution to this? > > TIA > > Cheers > -Paolo > > > > > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Opensymphony-sitemesh mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh > |
From: Mathias B. <pa...@pa...> - 2002-06-10 23:13:11
|
Hi, It seems that the server is spawning an empty page. From my development experience, I know that this happens when the server receives an exception in the JSP, and is unable to forward (or something like that). Most of the time, this means you have an exception logged somewhere. Check the logs. Also, check if you don't have any compability problems with Weblogic (look here: http://jira.opensymphony.com/secure/ViewIssue.jspa?id=10045 ). Regards, Mathias ----- Original Message ----- From: "Vedovato Paolo" <pao...@pr...> To: "Opensymphony-Sitemesh (E-Mail)" <ope...@li...>; "Webwork-User (E-Mail)" <web...@li...> Sent: Monday, June 10, 2002 7:17 AM Subject: [Opensymphony-sitemesh] Webwork and Sitemesh > Hi > > using Sitemesh: 1.4.1, Webwork 1.1, Bea WLS 7.0. > > I've tried to integrate SiteMeash in my working WebWork-based webApp. > Unfortunately I'm having some problems whioch prevent me to getit up and > running well. Hoping that some Sitemesh user use also WebWork and they can > share some thoughts. I've also looked in both mailingslist to find advices > which could help me but there are still some open issues.. > > I hope it's not to offensive if I post this question to both mailinglists. > > I've managed to get the most important webwork tags (property and text) > working in the decorators by surrounding <webwork:action > name="'BaseAction'"> decorator-content </webwork:action> > > This is my first question: is this really the only way to get the ww > property and text tag working in the sm decorators? > > After that I've adapted my resource to be decorated. But it works only if in > this resource I don't use any ww text or property tag. Instead of the > decorated resource I get a blank page: > > using mie 6.0: > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > <HTML><HEAD> > <META http-equiv=Content-Type content="text/html; > charset=windows-1252"></HEAD> > <BODY></BODY></HTML> > > using mozilla 1.0: > <html><body></body></html> > > Has anybody a solution to this? > > TIA > > Cheers > -Paolo > > > > > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Opensymphony-sitemesh mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensymphony-sitemesh > |
From: Vedovato P. <pao...@pr...> - 2002-06-10 14:17:17
|
Hi using Sitemesh: 1.4.1, Webwork 1.1, Bea WLS 7.0. I've tried to integrate SiteMeash in my working WebWork-based webApp. Unfortunately I'm having some problems whioch prevent me to getit up and running well. Hoping that some Sitemesh user use also WebWork and they can share some thoughts. I've also looked in both mailingslist to find advices which could help me but there are still some open issues.. I hope it's not to offensive if I post this question to both mailinglists. I've managed to get the most important webwork tags (property and text) working in the decorators by surrounding <webwork:action name="'BaseAction'"> decorator-content </webwork:action> This is my first question: is this really the only way to get the ww property and text tag working in the sm decorators? After that I've adapted my resource to be decorated. But it works only if in this resource I don't use any ww text or property tag. Instead of the decorated resource I get a blank page: using mie 6.0: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD> <BODY></BODY></HTML> using mozilla 1.0: <html><body></body></html> Has anybody a solution to this? TIA Cheers -Paolo |
From: Boris T. <BTa...@re...> - 2002-06-06 18:08:08
|
Thanks By the way it is very difficult to troubleshoot especially if I am new to webwork. It would be vry useful to have small troubleshoot guide :-) Thanks again -----Original Message----- From: ma...@sm... [mailto:ma...@sm...] Sent: Thursday, June 06, 2002 11:00 AM To: BTa...@re... Cc: web...@li... Subject: Re: [Webwork-user] Scheleton project It out of date. I'll get it up to date soon. -Matt Boris Tamarkin wrote > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> > <HTML> > <HEAD> > <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> > <META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12"> > <TITLE>Scheleton project</TITLE> > </HEAD> > <BODY> > > <P><FONT SIZE=2>As first time user tried to deploy scheleton.ear on JBoss2.0(with Jetta)</FONT> > <BR><FONT SIZE=2>Got following exception</FONT> > </P> > > <P><FONT SIZE=2>Any advice?</FONT> > </P> > > <P><FONT SIZE=2>Thanks</FONT> > </P> > > <P><FONT SIZE=2>---------------------</FONT> > <BR><FONT SIZE=2>12:01:57,671 ERROR [MainDeployer] could not start deployment: njar:<A HREF="file:/C:/JBos" TARGET="_blank">file:/C:/JBos</A></FONT> > <BR><FONT SIZE=2>s/jboss-3.0.0/server/sentinel/tmp/deploy/server/sentinel/deploy/skele ton.ear/62.</FONT> > <BR><FONT SIZE=2>skeleton.ear^/skeleton.war</FONT> > <BR><FONT SIZE=2>java.lang.InternalError: jzentry == 0,</FONT> > <BR><FONT SIZE=2> jzfile = 191659048,</FONT> > <BR><FONT SIZE=2> total = 10,</FONT> > <BR><FONT SIZE=2> name = C:\Documents and Settings\btamarkin\Local Settings\Temp\Jetty__8080___sk</FONT> > <BR><FONT SIZE=2>eleton\webapp\WEB-INF\lib\skeleton.jar,</FONT> > <BR><FONT SIZE=2> i = 8,</FONT> > <BR><FONT SIZE=2> message = invalid LOC header (bad signature)</FONT> > <BR><FONT SIZE=2> at java.util.zip.ZipFile$2.nextElement(ZipFile.java:303)</FONT> > <BR><FONT SIZE=2> at java.util.jar.JarFile$1.nextElement(JarFile.java:200)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.compiler.TldLocationsCache.tldConfigJar(TldLocation</FONT> > <BR><FONT SIZE=2>sCache.java:234)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.compiler.TldLocationsCache.processJars(TldLocations</FONT> > <BR><FONT SIZE=2>Cache.java:207)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.compiler.TldLocationsCache.<init>(TldLocationsCache< /FONT> > <BR><FONT SIZE=2>.java:139)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.EmbededServletOptions.<init>(EmbededServletOptions.< /FONT> > <BR><FONT SIZE=2>java:350)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.servlet.JspServlet.init(JspServlet.java:265)</FONT> > <BR><FONT SIZE=2> at org.mortbay.jetty.servlet.ServletHolder.start(ServletHolder.java:225)</FONT> > </P> > > <P><FONT SIZE=2> at org.mortbay.jetty.servlet.ServletHandler.initializeServlets(ServletHa</FONT> > <BR><FONT SIZE=2>ndler.java:414)</FONT> > <BR><FONT SIZE=2> at org.mortbay.jetty.servlet.WebApplicationContext.start(WebApplicationC</FONT> > <BR><FONT SIZE=2>ontext.java:446)</FONT> > <BR><FONT SIZE=2> at org.jboss.jetty.Jetty.deploy(Jetty.java:405)</FONT> > <BR><FONT SIZE=2> at org.jboss.jetty.JettyService.performDeploy(JettyService.java:244)</FONT> > <BR><FONT SIZE=2> at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:30</FONT> > <BR><FONT SIZE=2>0)</FONT> > <BR><FONT SIZE=2>-----------------------</FONT> > </P> > > </BODY> > </HTML> |
From: <ma...@sm...> - 2002-06-06 18:00:40
|
It out of date. I'll get it up to date soon. -Matt Boris Tamarkin wrote > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> > <HTML> > <HEAD> > <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> > <META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12"> > <TITLE>Scheleton project</TITLE> > </HEAD> > <BODY> > > <P><FONT SIZE=2>As first time user tried to deploy scheleton.ear on JBoss2.0(with Jetta)</FONT> > <BR><FONT SIZE=2>Got following exception</FONT> > </P> > > <P><FONT SIZE=2>Any advice?</FONT> > </P> > > <P><FONT SIZE=2>Thanks</FONT> > </P> > > <P><FONT SIZE=2>---------------------</FONT> > <BR><FONT SIZE=2>12:01:57,671 ERROR [MainDeployer] could not start deployment: njar:<A HREF="file:/C:/JBos" TARGET="_blank">file:/C:/JBos</A></FONT> > <BR><FONT SIZE=2>s/jboss-3.0.0/server/sentinel/tmp/deploy/server/sentinel/deploy/skeleton.ear/62.</FONT> > <BR><FONT SIZE=2>skeleton.ear^/skeleton.war</FONT> > <BR><FONT SIZE=2>java.lang.InternalError: jzentry == 0,</FONT> > <BR><FONT SIZE=2> jzfile = 191659048,</FONT> > <BR><FONT SIZE=2> total = 10,</FONT> > <BR><FONT SIZE=2> name = C:\Documents and Settings\btamarkin\Local Settings\Temp\Jetty__8080___sk</FONT> > <BR><FONT SIZE=2>eleton\webapp\WEB-INF\lib\skeleton.jar,</FONT> > <BR><FONT SIZE=2> i = 8,</FONT> > <BR><FONT SIZE=2> message = invalid LOC header (bad signature)</FONT> > <BR><FONT SIZE=2> at java.util.zip.ZipFile$2.nextElement(ZipFile.java:303)</FONT> > <BR><FONT SIZE=2> at java.util.jar.JarFile$1.nextElement(JarFile.java:200)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.compiler.TldLocationsCache.tldConfigJar(TldLocation</FONT> > <BR><FONT SIZE=2>sCache.java:234)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.compiler.TldLocationsCache.processJars(TldLocations</FONT> > <BR><FONT SIZE=2>Cache.java:207)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.compiler.TldLocationsCache.<init>(TldLocationsCache</FONT> > <BR><FONT SIZE=2>.java:139)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.EmbededServletOptions.<init>(EmbededServletOptions.</FONT> > <BR><FONT SIZE=2>java:350)</FONT> > <BR><FONT SIZE=2> at org.apache.jasper.servlet.JspServlet.init(JspServlet.java:265)</FONT> > <BR><FONT SIZE=2> at org.mortbay.jetty.servlet.ServletHolder.start(ServletHolder.java:225)</FONT> > </P> > > <P><FONT SIZE=2> at org.mortbay.jetty.servlet.ServletHandler.initializeServlets(ServletHa</FONT> > <BR><FONT SIZE=2>ndler.java:414)</FONT> > <BR><FONT SIZE=2> at org.mortbay.jetty.servlet.WebApplicationContext.start(WebApplicationC</FONT> > <BR><FONT SIZE=2>ontext.java:446)</FONT> > <BR><FONT SIZE=2> at org.jboss.jetty.Jetty.deploy(Jetty.java:405)</FONT> > <BR><FONT SIZE=2> at org.jboss.jetty.JettyService.performDeploy(JettyService.java:244)</FONT> > <BR><FONT SIZE=2> at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:30</FONT> > <BR><FONT SIZE=2>0)</FONT> > <BR><FONT SIZE=2>-----------------------</FONT> > </P> > > </BODY> > </HTML> |
From: Boris T. <BTa...@re...> - 2002-06-06 17:18:59
|
As first time user tried to deploy scheleton.ear on JBoss2.0(with Jetta) Got following exception Any advice? Thanks --------------------- 12:01:57,671 ERROR [MainDeployer] could not start deployment: njar:file:/C:/JBos s/jboss-3.0.0/server/sentinel/tmp/deploy/server/sentinel/deploy/skeleton.ear /62. skeleton.ear^/skeleton.war java.lang.InternalError: jzentry == 0, jzfile = 191659048, total = 10, name = C:\Documents and Settings\btamarkin\Local Settings\Temp\Jetty__8080___sk eleton\webapp\WEB-INF\lib\skeleton.jar, i = 8, message = invalid LOC header (bad signature) at java.util.zip.ZipFile$2.nextElement(ZipFile.java:303) at java.util.jar.JarFile$1.nextElement(JarFile.java:200) at org.apache.jasper.compiler.TldLocationsCache.tldConfigJar(TldLocation sCache.java:234) at org.apache.jasper.compiler.TldLocationsCache.processJars(TldLocations Cache.java:207) at org.apache.jasper.compiler.TldLocationsCache.<init>(TldLocationsCache .java:139) at org.apache.jasper.EmbededServletOptions.<init>(EmbededServletOptions. java:350) at org.apache.jasper.servlet.JspServlet.init(JspServlet.java:265) at org.mortbay.jetty.servlet.ServletHolder.start(ServletHolder.java:225) at org.mortbay.jetty.servlet.ServletHandler.initializeServlets(ServletHa ndler.java:414) at org.mortbay.jetty.servlet.WebApplicationContext.start(WebApplicationC ontext.java:446) at org.jboss.jetty.Jetty.deploy(Jetty.java:405) at org.jboss.jetty.JettyService.performDeploy(JettyService.java:244) at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:30 0) ----------------------- |
From: Aapo L. <aap...@pr...> - 2002-06-06 13:54:01
|
> Need to get this scenario recorded. > Aapo, will you add a comment? Mission Completed, :-). |
From: Matt B. <ma...@sm...> - 2002-06-06 12:57:16
|
Need to get this scenario recorded. Aapo, will you add a comment? http://opensource.atlassian.com/projects/webwork/secure/ViewIssue.jspa?id=10 000 ----- Original Message ----- From: "Jason Carreira" <jas...@no...> To: <web...@li...> Sent: Thursday, June 06, 2002 7:45 AM Subject: RE: [Webwork-user] Executing multiple actions with only one request Here's an example of where action chaining would be useful > -----Original Message----- > From: Aapo Laakkonen [mailto:aap...@pr...] > Sent: Wednesday, June 05, 2002 8:14 PM > To: web...@li... > Subject: [Webwork-user] Executing multiple actions with only > one request > > > Is there some way to execute multiple actions with only one request? > Here is my views.properties file as an example (to show you what I'm > trying to do): > > guestbook.action=guestbook.Guestbook > guestbook.success=guestbook/default.vm > guestbook.sign.action=guestbook.Guestbook!sign > guestbook.sign.success=guestbook.action > > So the flow goes something like this: > > User signs guestbook: > > <form action="guestbook.sign.action"> > ... > </form> > > CommandDriven Guestbook action's doSign() method gets called. When it > has done the work... let's execute guestbook.action, that is mapped to > guestbook.Guestbook (the same) class, but now the default doExecute() > method get's called (that retrieves guestbook entries). After this the > guestbook/default.vm file is displayed to the user. > > The problem is that it doesn't seem to work as WebWork tries to find a > view when doSign()-method returns. It looks for /guestbook.action view > that does not exists. > > I can propably use one of these: > > 1. use WebWork standard redirect action > - needs client side redirection > + URL gets updated and refreshing browser > does not do anything weird (or re-post) > > 2. use #action and #execute velocity macros > - ties velocity template to an action > - I don't like the idea that client needs > to know where to get the information, it > should only know what information exists > and use that > + solves the problem > > 3. call doExecute() method from doSign() method > - For me it is not elegant to call some method from > totally unrelated method only to get valuestack > populated > - Makes refactoring harder as it ties different parts > of software together > + 1 line of code > > So I'm requesting somekind of forwarding mechanism. Maybe > something that > is just like the standard redirect action, but does the work on server > side. > > Or have I missed or misunderstood something in WebWork... does it > already have this mechanism implemented? > > Kind Regards > Aapo Laakkonen > > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm > > _______________________________________________ > Webwork-user mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webwork-user > _______________________________________________________________ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm _______________________________________________ Webwork-user mailing list Web...@li... https://lists.sourceforge.net/lists/listinfo/webwork-user |