Looking for someone to take over a Struts project in Plano, TX

2014-02-23 Thread Neil Aggarwal
. There will some need for meetings at the client site so local candidates are preferred. Thank you, Neil -- Neil Aggarwal, (972) 834-1565 We lend money to investors to buy or refinance single family rent houses. No origination fees, quick approval, no credit check

RE: S2 Can I use java templates for all tags except form?

2009-12-27 Thread Neil Aggarwal
Nestor: Is there a way I can use java templates for all tags except form? You can mix and match struts UI tags and normal HTML tags in your JSPs. I do it all the time and it will not hurt anything. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your Struts app

RE: MySQL + JDBC

2009-12-14 Thread Neil Aggarwal
Oh, and a relevant follow-up question: do you use JDBC-ODBC to connect to MySQL? I never used ODBC to talk to MySQL. I am not sure how well that would work. Thanks, Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your MySQL database on a CentOS virtual server

RE: MySQL + JDBC

2009-12-13 Thread Neil Aggarwal
Let me simplify the question: Has anyone out there managed to create a working connection to the latest version of MySQL 64-bit via JDBC from Struts 2? I am sure many people have. I run 64 bit servers with MySQL and Struts 2. What are you seeing? Neil -- Neil Aggarwal, (281)846-8957

RE: redirect with parameter

2009-12-10 Thread Neil Aggarwal
url in my bean code including all parameters I want encoded. I hope that helps, Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS for only $25/month! Unmetered bandwidth = no overage charges, 7 day free trial

RE: checkbox : unchecked elements not in list

2009-12-04 Thread Neil Aggarwal
of the checkboxes and set the checkbox to use the field name: s:checkbox name=myName When the user submits the form, everything works as expected. Can you do that in your app instead of processing the request params yourself? Neil -- Neil Aggarwal, (281)846-8957, http

RE: excute method

2009-11-26 Thread Neil Aggarwal
; } nothing is excuted Try adding a result name=input, I think success is only executed on a POST operation. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS for only $25/month! Unmetered bandwidth = no overage charges, 7 day free trial

RE: OGNL expression help

2009-11-17 Thread Neil Aggarwal
Doesn't help unfortunately as the length of the string in characters is not the same as the space required to display it in full! Have you tried adding 2 or 3 to the length value? Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS

RE: [Struts 2.1.8] datetimepicker and action: String or Date ??

2009-11-16 Thread Neil Aggarwal
= dateFormat.parse(2009-11-20 00:00:00 +0100); System.out.println(DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG).format(date)); I hope this helps, Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net CentOS 5.4 VPS with unmetered bandwidth only $25/month! 7 day no risk

RE: Struts2 Multiple validation for single field

2009-11-16 Thread Neil Aggarwal
? Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS for only $25/month! Unmetered bandwidth, 7 day no risk trial, Google Checkout - To unsubscribe, e-mail: user-unsubscr

RE: Struts2 Multiple validation for single field

2009-11-16 Thread Neil Aggarwal
. Is that the problem? I think you are going to have to do it manually. Set your field as a String and then in your validate method, check if it is null or a valid int value. If it is not what you want, throw an ActionError. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net

RE: Struts2 Multiple validation for single field

2009-11-16 Thread Neil Aggarwal
setLoad(String) in your class that does nothing. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS for only $25/month! Unmetered bandwidth, 7 day no risk trial, Google Checkout

RE: OGNL expression help

2009-11-16 Thread Neil Aggarwal
()} / I have not tested code to do this, so I don't know if that would work. Also, what if the myString is null or an empty string. The code would throw a null pointer or the field size would be zero. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app

RE: [Struts 2.1.8] datetimepicker and action: String or Date ??

2009-11-16 Thread Neil Aggarwal
not like a colon in the middle of the time zone either. I assume you are not using multiple time zones so you should be OK. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS for only $25/month! Unmetered bandwidth, 7 day no risk trial, Google

RE: OGNL expression help

2009-11-16 Thread Neil Aggarwal
() method that calls super.length(). It's a pain, but should work. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS for only $25/month! Unmetered bandwidth, 7 day no risk trial, Google Checkout

RE: [Struts 2.1.8] datetimepicker and action: String or Date ??

2009-11-16 Thread Neil Aggarwal
I skipped it because I cannot figure out the format to handle that colon in the middle of that time zone. The only solution I found was to manually take it out of the date string. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS

RE: OGNL expression help

2009-11-16 Thread Neil Aggarwal
the corresponding String methods. That would be really be a pain! Anyway, thanks for the clarification, Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS for only $25/month! Unmetered bandwidth, 7 day no risk trial, Google Checkout

RE: How to access the form data directly?

2009-11-15 Thread Neil Aggarwal
post a small example, I will try to see if I can figure something out. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net Host your struts app on a CentOS VPS for only $25/month! Unmetered bandwidth, 7 day no risk trial, Google Checkout

RE: How to access the form data directly?

2009-11-14 Thread Neil Aggarwal
Juanjo: but I don't know where are this data... In the ValueStack? I use this code in my JSP to retrieve values from the value stack: ActionContext.getContext().getValueStack().findValue(myValue); I hope that helps, Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net CentOS

[S2] Jsp not loading bean from superclass static method

2009-10-28 Thread Neil Aggarwal
-- Neil Aggarwal, (281)846-8957, http://www.JAMMConsulting.com CentOS 5.4 KVM VPS $55/mo, no setup fee, no contract, dedicated 64bit CPU 1GB dedicated RAM, 40GB RAID storage, 500GB/mo premium BW, Zero downtime - To unsubscribe, e

RE: [S2] Jsp not loading bean from superclass static method

2009-10-28 Thread Neil Aggarwal
Lukasz: struts.ognl.allowStaticMethodAccess=true I will try that. Neil -- Neil Aggarwal, (281)846-8957, http://www.JAMMConsulting.com CentOS 5.4 KVM VPS $55/mo, no setup fee, no contract, dedicated 64bit CPU 1GB dedicated RAM, 40GB RAID storage, 500GB/mo premium BW, Zero downtime

RE: [S2] Using ajax head tag makes entire application slow

2009-01-12 Thread Neil Aggarwal
Hello: I forgot to mention that I am using Struts 2.0.14 with the Tiles plugin on a CentOS 5 server. Any ideas why this is so slow? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com

RE: [S2] Using ajax head tag makes entire application slow

2009-01-12 Thread Neil Aggarwal
Musachy: Thanks for the response. It seems strange the Struts-based approach is so inefficient that we have to look at an outside solution. Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com

[S2] Using ajax head tag makes entire application slow

2009-01-09 Thread Neil Aggarwal
, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org

Size attribute not valid for datetimepicker?

2009-01-01 Thread Neil Aggarwal
on the tag, but that is not allowed. How can I increase the size of the input field? Also, when I change the date using the picker, it zeros out the time part of the field. Any idea how to make it keep the time the user entered? Thanks Neil -- Neil Aggarwal, (832)245-7314

How to output local variable as textfield label

2008-12-09 Thread Neil Aggarwal
an empty label on the page. I also tried using: s:textfield label=%{#label} name=address/ That did not work either. Any ideas how I may do this? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com

RE: How to output local variable as textfield label

2008-12-09 Thread Neil Aggarwal
. Any ideas why this did not work? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Wes Wannemacher [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: How to output local variable as textfield label

2008-12-09 Thread Neil Aggarwal
Wes: That worked, thank you. Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Wes Wannemacher [mailto:[EMAIL PROTECTED] Sent: Tuesday, December

RE: [S2] Best approach to separate look feel with same backend code

2008-01-14 Thread Neil Aggarwal
Scott: Great! I will use tiles. I am confused about know to know which set of tiles to load. The sites will have different domain names. Can I tell tiles to use a set based on that? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim

[S2] Best approach to separate look feel with same backend code

2008-01-13 Thread Neil Aggarwal
since there will be a lot of duplicated code. 2. Create one webapp and pass around a site identifier? Then, I can load the correct set of JSPs based on the identifier? Any suggestions for the best way to do this? Thanks, Neil -- Neil Aggarwal, (832)245-7314

RE: [S2] Best approach to separate look feel with same backend code

2008-01-13 Thread Neil Aggarwal
Rod: The functionality will be exactly the same for each site. How do I tell struts to load a given set of tiles based on the domain name? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com

[S2] Application wide error page

2007-09-10 Thread Neil Aggarwal
://cbsweb.jammconsulting.com/cbsweb/error.action But, when my app throws an error, the error page does not come up. Any ideas what went wrong? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details

How to get exception in action class for error page?

2007-09-10 Thread Neil Aggarwal
can I do to get the exception that was thrown? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details

RE: [S2] error-page directive not working

2007-09-06 Thread Neil Aggarwal
Hello: Does anyone have an idea how to debug this? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Neil Aggarwal [mailto:[EMAIL PROTECTED

[S2] Wildcard action name that includes slashes?

2007-09-03 Thread Neil Aggarwal
result name=success type=tilespage.products/result /action It brings up the correct page. Is there a way to have a wildcard that will match anything from the url even if there are slashes in it? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk

[S2] error-page directive not working

2007-09-02 Thread Neil Aggarwal
) // Rest of trace removed Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. - To unsubscribe, e-mail: [EMAIL

RE: [S2] How to apply formatting to s:property?

2007-08-02 Thread Neil Aggarwal
Dave: Did you give up on this? Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Neil Aggarwal [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: [S2] How to apply formatting to s:property?

2007-08-02 Thread Neil Aggarwal
! Thanks for that. I tried moving the package.properties to WEB-INF/classes so it would be application wide but that seems to be ignored. I would still really like a way to make a global properties file if possible. Any suggestions on how to do that? Thanks, Neil -- Neil Aggarwal, (832)245

RE: [S2] How to apply formatting to s:property?

2007-08-02 Thread Neil Aggarwal
on this. Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Thursday, August 02, 2007 10:55 AM

[S2] How to apply formatting to s:property?

2007-08-01 Thread Neil Aggarwal
Hello: I am trying to apply formatting to a value from s:property. I tried this: s:text name=format.currencys:property value=retailProductsCount//s:text but that did not format the value. It only outputs it unchanged. Any ideas how to do this? Thanks, Neil -- Neil Aggarwal, (832

RE: [S2] How to apply formatting to s:property?

2007-08-01 Thread Neil Aggarwal
somewhere? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 01, 2007 3:10 PM

RE: [S2] How to apply formatting to s:property?

2007-08-01 Thread Neil Aggarwal
Dave: So, is there no way to define a global format for currency? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Dave Newton [mailto

RE: [S2] How to apply formatting to s:property?

2007-08-01 Thread Neil Aggarwal
ideas? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Neil Aggarwal [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 01, 2007 2:20 PM

RE: [S2] How to apply formatting to s:property?

2007-08-01 Thread Neil Aggarwal
, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 01, 2007 2:42 PM To: Struts Users

[S2] s:text not applying formatting

2007-07-30 Thread Neil Aggarwal
//... /s:iterator navCategories is a Collection of Category objects where they have a field called retailProductsCount. The jsp code above is showing the correct value for retailProductsCount, but it is not formatted with the integer formatter. Any ideas what I did wrong? Thanks, Neil -- Neil

[S2] Use struts tags to run two loops over each 5 products in a collection?

2007-07-30 Thread Neil Aggarwal
. Is there a way to do this using struts tags? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details

RE: Don't expose .action to user?

2007-07-19 Thread Neil Aggarwal
Matt: I use URLRewrite. I only have a few rules since urlreqrite supports regex pattern mathing. Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message

RE: Don't expose .action to user?

2007-07-19 Thread Neil Aggarwal
Matt: Both. Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: mraible [mailto:[EMAIL PROTECTED] Sent: Thursday, July 19, 2007 12:04 PM To: user

RE: [JAVA] using clas.forname()

2007-07-18 Thread Neil Aggarwal
Miro: You can call Class.forName() as many times as you like without a problem. Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: temp temp

[Struts 2] If exists tag?

2007-07-18 Thread Neil Aggarwal
Hello: Is there a struts tag to check if a collection is not null and has at least one element? I want to check a collection before printing the table containing the elements using an s:iterator tag. Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate

RE: How to keep users from accessing to *.jsp strightforword?

2007-07-13 Thread Neil Aggarwal
Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: M.Liang Liu [mailto:[EMAIL PROTECTED] Sent: Friday, July 13, 2007 11:01 PM To: user

RE: [Struts 2] Tiles plugin tutorial?

2007-07-10 Thread Neil Aggarwal
the taglib in my web.xml file? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: chenshibing [mailto:[EMAIL PROTECTED] Sent: Monday, July 09, 2007

RE: [Struts 2] Tiles plugin tutorial?

2007-07-10 Thread Neil Aggarwal
James: I added the listener to my web.xml: !-- Struts tiles listener -- listener listener-classorg.apache.struts2.tiles.StrutsTilesListener/listener-class /listener I don’t see anything about the TilesInterceptor. What am I supposed to do there? Thanks, Neil -- Neil Aggarwal

RE: [Struts 2] Tiles plugin tutorial?

2007-07-10 Thread Neil Aggarwal
Dave: In that case, the example on this page: http://cwiki.apache.org/WW/tiles-plugin.html is wrong. I changed the URI and things are working now. Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http

[Struts 2] Tiles plugin tutorial?

2007-07-09 Thread Neil Aggarwal
Hello: Is there a good tutorial for the Tiles plugin in struts 2? I am not seeing anything that gives me enough to move forward. Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com

RE: [Struts 2] Tiles plugin tutorial?

2007-07-09 Thread Neil Aggarwal
, lets take my action for the home page. I have this action: action name=top/Home result name=success/top/Home.jsp/result /action How do I tell it to use my tiles definition that includes the layout? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE

[Struts2] How to right align the label for a text field?

2007-04-15 Thread Neil Aggarwal
/test/ThemeTest.action I want the label Short: to appear to the right of its table cell instead of the left. Can someone help me? Thanks, Neil -- Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com

[Struts2[ Need help - Anyone in Houston, TX?

2007-04-11 Thread Neil Aggarwal
Hello: We are having trouble ramping up with struts 2. Is there anyone in Houston TX that can help us get struts 2 up and running for a project we are working on? This would be paid work. Please contact me off-list if you can help. Thanks, Neil -- Neil Aggarwal, (214)986-3533

RE: [Struts2] How to get instance of ActionSupport class after redirect?

2007-04-07 Thread Neil Aggarwal
Ted: Thanks for the advice. I think that is the best approach to use. Thanks, Neil -- Neil Aggarwal, (214)986-3533, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: [EMAIL

[Struts2] How to get instance of ActionSupport class after redirect?

2007-04-06 Thread Neil Aggarwal
can try to give excerpts of my code to illustrate. Thanks, Neil -- Neil Aggarwal, (214)986-3533, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details

RE: [Struts2] How to get instance of ActionSupport class after redirect?

2007-04-06 Thread Neil Aggarwal
Laurie: I alyways use a redirect after a form post to avoid the stupid page expired warning if the user hits the reload button. I think we will save the ActionSupport instance in the session and get it back from there. Thanks, Neil -- Neil Aggarwal, (214)986-3533

RE: Multiple submit buttons on form not working

2007-03-01 Thread Neil Aggarwal
Dave: I see what you are saying. I changed my form to have a string field and now it captures the value of the button that was pressed. It does not match the doc but it works! Thanks, Neil -- Neil Aggarwal, (214)986-3533, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim

Multiple submit buttons on form not working

2007-02-28 Thread Neil Aggarwal
=test/FormTest s:property value=message/ s:submit value=First Message name=message1 / input type=submit name=message1 value=Direct button s:submit value=Second Message name=message2 / /s:form Any ideas why this is not working? Thanks, Neil -- Neil Aggarwal, (214)986-3533

Can actions have paths?

2007-02-26 Thread Neil Aggarwal
or are they completely flat? Thanks, Neil -- Neil Aggarwal, (214)986-3533, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: Can actions have paths?

2007-02-26 Thread Neil Aggarwal
to login: package util; import com.opensymphony.xwork2.*; public class LoginInterceptor extends AbstractInterceptor { public String intercept(ActionInvocation invocation) throws Exception { return login; } } Any ideas on this? Thanks, Neil -- Neil Aggarwal, (214)986-3533

Pass url back to redirect action?

2007-02-26 Thread Neil Aggarwal
/result result name=success/{1}/{2}.jsp/result /action I would like to have the URL for the loginRedirect result passed back from my Login class. Is there a way to do that? Thanks, Neil -- Neil Aggarwal, (214)986-3533, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your

RE: Pass url back to redirect action?

2007-02-26 Thread Neil Aggarwal
Laurie: That worked perfectly. Thank you for the guidance. Neil -- Neil Aggarwal, (214)986-3533, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. -Original Message- From: news [mailto:[EMAIL PROTECTED

What to use instead of tiles in Struts2?

2007-02-25 Thread Neil Aggarwal
Hello: The tiles plugin for struts2 is labeled experimental. Is there another way of doing similar functionality on struts2? Thanks, Neil -- Neil Aggarwal, (214)986-3533, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com

[Struts2] How to set a redirect action to https?

2007-02-25 Thread Neil Aggarwal
this work? Thanks, Neil -- Neil Aggarwal, (214)986-3533, www.JAMMConsulting.com FREE! Eliminate junk email and reclaim your inbox. Visit http://www.spammilter.com for details. - To unsubscribe, e-mail: [EMAIL PROTECTED

Null pointer from tiles insert even though ignore is true?

2005-12-24 Thread Neil Aggarwal
? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http://newsletter.JAMMConsulting.com

RE: database design

2005-10-03 Thread Neil Aggarwal
start hacking stuff together and hope it will all work at the end. I think that is why there are so many crappy systems out there. Regarding you room - I think I would need a padded room next to it! Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE

RE: how can I add request parameters to url ?

2005-08-03 Thread Neil Aggarwal
Laurie: Be careful about mixing query parameters and POST parameters. I have had instances where the browsers do not give you the query parameters that you specify on the action of the form. It is safest to put all parameters in the form via hidden tags. Neil -- Neil Aggarwal, JAMM

RE: Good Java host

2005-07-31 Thread Neil Aggarwal
James: I would like you to consider my company. We focus on custom hosting solutions and high touch customer service. Please let me know if I can be of service to you. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how

RE: [OT] Force URLEncoder to use %20 instead of + for spaces

2005-07-27 Thread Neil Aggarwal
Laurie: FYI, I got a response from someone on comp.lang.java.programmer. They suggested using the java.net.URI class. I tried it and it works perfectly. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can

Force URLEncoder to use %20 instead of + for spaces

2005-07-26 Thread Neil Aggarwal
. Is there a way to force URLEncoder to use %20 instead of + signs? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http://newsletter.JAMMConsulting.com

RE: [OT] Force URLEncoder to use %20 instead of + for spaces

2005-07-26 Thread Neil Aggarwal
: Tuesday, July 26, 2005 5:12 PM To: user@struts.apache.org Subject: Re: [OT] Force URLEncoder to use %20 instead of + for spaces Neil Aggarwal wrote: Hello: When I encode the name of an image file to place into a URL, I use this code: URLEncoder.encode(imageName,UTF-8

RE: Not getting submitted values from textarea in logic:iterate

2005-07-21 Thread Neil Aggarwal
Hello: Does anyone have any ideas on how to get this to work? Is this a bug? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http

RE: Not getting submitted values from textarea in logic:iterate

2005-07-21 Thread Neil Aggarwal
cols=75/ /logic:iterate And it worked perfectly. Thanks for tip! Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http://newsletter.JAMMConsulting.com

Not getting submitted values from textarea in logic:iterate

2005-07-20 Thread Neil Aggarwal
be helpful. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http://newsletter.JAMMConsulting.com

Security constraint not working

2005-07-14 Thread Neil Aggarwal
/howWeStarted.jsp Any ideas? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http://newsletter.JAMMConsulting.com

RE: Security constraint not working

2005-07-14 Thread Neil Aggarwal
Erik: Doh! I guess I did not copy the whole thing. Thanks for the help. Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http

How to set tiles attribute dynamically?

2005-07-08 Thread Neil Aggarwal
action=/showPage?page=community ... The problem is that the pageTitle depends on the parameter value and is not fixed. Is there a way to put a method call in the tiles-defs.xml so I can pull the correct page title from the database? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986

RE: How to set tiles attribute dynamically?

2005-07-08 Thread Neil Aggarwal
Dave: That worked perfectly! Thanks for the hint. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http://newsletter.JAMMConsulting.com

RE: Strange error-page behavior

2005-06-27 Thread Neil Aggarwal
Bill: You are right, when I use the page errorPage directive, I get it to go to the error page, but when I use the one in web.xml, that gives me the Internal Error. Strange. Thanks for your help, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE

Re: Strange error-page behavior

2005-06-26 Thread Neil Aggarwal
, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http://newsletter.JAMMConsulting.com

Strange error-page behavior

2005-06-24 Thread Neil Aggarwal
(ThreadPool.jav a:644) at java.lang.Thread.run(Thread.java:595) What can I do to fix this? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less

RE: Strange error-page behavior

2005-06-24 Thread Neil Aggarwal
Wendy: The reason I need to execute code is for me to send an error report to the site admin. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less

RE: Strange error-page behavior

2005-06-24 Thread Neil Aggarwal
Wendy: I tried setting my error page directive to: error-page exception-typejava.lang.Throwable/exception-type location/errorPage.jsp/location /error-page I am still getting an IllegalStateException. That seems weird to me. Neil -- Neil Aggarwal, JAMM Consulting, (214

RE: Strange error-page behavior

2005-06-24 Thread Neil Aggarwal
Laurie: Is there an app-wide way to set the buffer size or do I need to put a page buffer directive in each of my JSPs? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17

How to get current top-level struts action?

2005-06-18 Thread Neil Aggarwal
am using tiles. I have tried browsing the struts API and searching the web to no avail. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http

RE: How to get current top-level struts action?

2005-06-18 Thread Neil Aggarwal
lperInterface.html Martin- - Original Message - From: Neil Aggarwal [EMAIL PROTECTED] To: 'Struts Users Mailing List' user@struts.apache.org Sent: Saturday, June 18, 2005 7:03 PM Subject: How to get current top-level struts action? Hello: I am trying to figure out how

Errors not showing on page

2005-06-07 Thread Neil Aggarwal
failed because: br html:errors/ If you feel this is not correct, please a href=mailto:[EMAIL PROTECTED]contact customer service./a Any idea why the errors are not showing up? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how

RE: Errors not showing on page

2005-06-07 Thread Neil Aggarwal
Michael: The redirect was it. I took out the redirect=true and everything is working fine. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (214) 986-3533, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http

RE: (Newbie question) tiles:getAsString error attribute not found

2005-04-06 Thread Neil Aggarwal
Antonio: That seems counterintuitive to me, but it worked. Thanks for your help! Neil -- Neil Aggarwal, JAMM Consulting, (972)612-6056, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http

(Newbie question) tiles:getAsString error attribute not found

2005-04-05 Thread Neil Aggarwal
this error in the tomcat log: SEVERE: ServletException in '/layout.jsp': ServletException in '/header.jsp': Error - tag.getAsString : attribute 'pageTitle' not found in context. Check tag syntax Any ideas? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (972)612-6056

Shortcut action mapping from html:link?

2005-04-04 Thread Neil Aggarwal
=base.definition ... I realize this is pure MVC at its best, but it would be nice to be able to do something like: html:link definition=page.services ... / which would end up doing the same thing. Is there such a thing in Struts? Thanks, Neil -- Neil Aggarwal, JAMM Consulting

RE: Handle images path in one place

2005-02-14 Thread Neil Aggarwal
Graham: I don't like depending on JavaScript for this. I think your modification to html:base would be perfect. I have voted for it. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (972)612-6056, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating

Struts friendly way to switch between http and https?

2005-02-12 Thread Neil Aggarwal
using name-based virtual hosting, the host name in the url is different for http and https mode. Is there a more struts-friendly way to do this? Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (972)612-6056, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce

RE: Handle images path in one place

2005-02-12 Thread Neil Aggarwal
Craig: I tried this and it worked flawlessly. Thank you for the info. Thanks, Neil -- Neil Aggarwal, JAMM Consulting, (972)612-6056, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17% or more in 6 months or less! http

RE: Struts friendly way to switch between http and https?

2005-02-12 Thread Neil Aggarwal
Leon: I have apache in front of tomcat. Apache does the ssl, but I still need to generate the URLs with the http and https prefix. Neil -- Neil Aggarwal, JAMM Consulting, (972)612-6056, www.JAMMConsulting.com FREE! Valuable info on how your business can reduce operating costs by 17

  1   2   >