.NET: We are just like Struts... only better.

2003-12-25 Thread Vic Cekvenich
Just like everyone else. http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/aspnet-aspnet-j2ee-struts.asp This was fun to read, it puts a smile on my face. Somone has a chip on their sholder. * Main point made in there: Do not use JDBC, you make us look bad, use

RE: File Upload

2003-12-25 Thread David Friedman
Jacob, Did anyone ever get back to you on this? Where are you trying to get your MultiPartRequestWrapper? In an ActionForm subclass, you can use the method: getMultipartRequestHandler() In an Action subclass, you can do pull it from above using: MultipartRequestWrapper multiWrapper =

Re: .NET: We are just like Struts... only better.

2003-12-25 Thread isleong
Just like everyone else. http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/aspnet-aspnet-j2ee-struts.asp This was fun to read, it puts a smile on my face. Somone has a chip on their sholder. Great article, Vic. First time there is some Struts-bashing from

check box values get from collection

2003-12-25 Thread shahfazal
Hi I have to display rows based on an SQL query. i have the value objects returned in a collection. while iterating thru the collection i have to display a checkbox at the startingof the row with a value that is one of the properties of the Value object. i wrote something like logic:iterate

check box values get from collection (clearer version)

2003-12-25 Thread shahfazal
Hi I have to display rows based on an SQL query. i have the value objects returned in a collection. while iterating thru the collection i have to display a checkbox at the startingof the row with a value that is one of the properties of the Value object. i wrote something like logic:iterate

RE: File Upload

2003-12-25 Thread Jacob Ginu
David, No one has got back to me on this except you.There seems to be not much info regarding this.Iam going throught the link you sent me. I tried to call MultipartRequestWrapper from an action subclass.I was not successful in it. Thanx for your response. Regards, Ginu Jacob David Friedman

RE: File Upload

2003-12-25 Thread David Friedman
Jacob, That post was all from working examples I had while looking into the problem (I was curious when I read the original post back then). Let me know if I can assist you with anything. Feel free to post your ActionForm and Action subclasses for assistance. Regards, David -Original

RE: sub classing Action Servlet

2003-12-25 Thread Mohan Radhakrishnan
Just extend it and call super.init() servlet-nameaction/servlet-name servlet-classcom.cellx.lucid.servlet.IntranetServlet/servlet-class Nothing special that I know of. Mohan -Original Message- From: Sudhakar G [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003

Re: .NET: We are just like Struts... only better.

2003-12-25 Thread James Mitchell
On Thu, 25 Dec 2003 [EMAIL PROTECTED] wrote: Just like everyone else. http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/aspnet-aspnet-j2ee-struts.asp This was fun to read, it puts a smile on my face. Somone has a chip on their sholder. Great article,

Annoying Validation issue

2003-12-25 Thread Joe Hertz
I am passing in an object my JSP page needs in with request scope. Works fine. I'm also using the Validator, which also, individually, works fine. They however, fight with eachother. Here's how: When you use the validator and put a depends=required on a form's select box, the check isn't

Re: .NET: We are just like Struts... only better.

2003-12-25 Thread Joe Hertz
It was left handed bashing. To paraphrase- Bill was announcing .NET when Struts was only a glimmer in Craig's eye. Microsoft is committed to .NET and therefore .NET is Windows. With Struts/J2EE you are at the mercy of whoever develops the implementation of the Servlet Container, et al, or

RE: Annoying Validation issue

2003-12-25 Thread Andrew Hill
I think most people get round this by having a seperate action to do the setup. The input would point at that action rather then directly at the JSP. (Personally I much prefer to use the same action for both page setup and processing submissions (with a wee bit of branching logic as Ive rather

RE: .NET: We are just like Struts... only better.

2003-12-25 Thread Andrew Hill
snip To para-paraphrase, We ARE the implementation, therefore however it works it how it works. /snip There is a distinct appeal (from a developers viewpoint) to having only one particular implementations annoying idiosyncrasies to workaround. ...well at least till the next version comes out...