Re: Automatic scaling decisions based on performance metrics

2010-02-08 Thread anthonyvierra
Amazon EC2 has a scale feature that allows scaling based on
configuration of settings such as memory, processor, etc. Is this the
service your configuring?

On 2/8/10, Pid  wrote:
> On 08/02/2010 13:05, Shashank Rachamalla wrote:
>> Hi
>>
>> I am currently involved in developing a module which performs automatic
>> scaling of application server instances based on their performance. I am
>> using JMX to pull data pertaining to server and underlying jvm on which
>> the applications are deployed. I can also collect performance data for
>> guest operating system.  We are using mod_jk as load balancer. The
>> challenging task here is to decide when to scale out and when to scale
>> in. Please suggest some strategies used to determine the load at a
>> cluster level based on which scaling decisions can be taken. Also can
>> any scaling decisions be taken by considering performance statistics of
>> a single instance in a cluster.
>
> Excellent!  This sounds like a great idea for an open source project.
> Where is it hosted?  I might be interested in contributing...
>
>
> p
>
>> The following are parameters currently monitored for each server
>> instance.
>>
>> Guest OS
>>
>> 1) CPU Usage
>> 2) Swap Usage
>>
>> JVM
>>
>> 1) JVM Free Memory
>>
>> App Server ( context is / )
>>
>> 1) Maximum Request Processing Time.
>> 2) Number of errors processing requests.
>> 3) Number of errors encountered while processing requests.
>>
>> Regards,
>> Shashank
>>
>>
>> Please do not print this email unless it is absolutely necessary.
>>
>> The information contained in this electronic message and any attachments
>> to this message are intended for the exclusive use of the addressee(s) and
>> may contain proprietary, confidential or privileged information. If you
>> are not the intended recipient, you should not disseminate, distribute or
>> copy this e-mail. Please notify the sender immediately and destroy all
>> copies of this message and any attachments.
>>
>> WARNING: Computer viruses can be transmitted via email. The recipient
>> should check this email and any attachments for the presence of viruses.
>> The company accepts no liability for any damage caused by any virus
>> transmitted by this email.
>>
>> www.wipro.com
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
>> For additional commands, e-mail: users-h...@tomcat.apache.org
>>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>

-- 
Sent from my mobile device

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: JSESSIONID and impact on google

2010-02-09 Thread anthonyvierra
If you want to be seo friendly then change the application so that
session is not in the url.

Google sees each unique url as one page. With each visit to a jsession
site it will see the same content on multiple pages and the score will
go down for those seo terms.

Simple answer: Use cookies for sessions.

Keep urls clean and descriptive using - between words.

On 2/9/10, Pid  wrote:
> On 09/02/2010 16:32, Marian Simpetru wrote:
>> jsessionid in URLs returned around 79 million search results.
>
> Yep. I know they're there.
>
>> google search on jsessionid SEO will give you lots of examples.
>>
>> On a question asked to google, they reply by explaining the algorithm
>> (multiple URL with same content -> lower ranking, JSESSIONID=zzz ->
>> multiple URLS)
>>
>> I can see there is a penalty in google webmaster tools. Can't say on
>> other websites...
>
> This I also know.
>
> But as I said, it would be surprising *to me* to find that Google
> weren't trying to filter this type of noise out of their URL indexes.
>
> Having thought about it a little more, I would like to add that we
> implement XML Sitemaps on our site and this may be having an effect on
> matters.
>
>   http://sitemaps.org/protocol.php
>
>
> When I look in my logs I can see sequential(ish) requests for URLs from
> all of the bots hitting our site and they do not have session id
> parameters appended.
>
> Of 68600 URLs appearing in the Google index of the site I have in mind,
> only 46 match a search for jsessionid and some of those appear because
> the HTML contains a URL to another site with the parameter present.
>
> The total number of URLs referenced in the XML sitemaps is somewhat
> below the total indexed on this domain and the difference is markedly
> larger than 46.
>
> I, perhaps hastily, have concluded that search engines are somehow
> storing pages without the session id parameter present in the URL.
>
>
> p
>
>
>> Marian
>>
>> On Tue, 2010-02-09 at 16:07 +, Pid wrote:
>>> On 09/02/2010 15:46, Christopher Schultz wrote:
>>> >  -BEGIN PGP SIGNED MESSAGE-
>>> >  Hash: SHA1
>>> >
>>> >  Marian,
>>> >
>>> >  On 2/9/2010 9:31 AM, Marian Simpetru wrote:
>>> >>  Google act as a non cookie browser and hence he is served with non
>>> >>  unique URLs (because of session ID is appended to URL).
>>> >
>>> >  I heard at one point that Google's crawler *did* support cookies. I
>>> >  never verified that, but it sounds like they currently do not support
>>> > them.
>>> >
>>> >>  Question is: Is there a way to configure tomcat to only use cookies
>>> >> (not
>>> >>  append jsessionid to URL for cookie0less browsers).
>>> >
>>> >  It's not a Tomcat configuration, but you can always write a filter
>>> > like
>>> >  this:
>>> >
>>> >  public class NoURLRewriteFilter
>>> >  implements Filter
>>> >  {
>>> > public void doFilter(...) {
>>> >   chain.doFilter(request, new HttpServletResponseWrapper(response)
>>> > {
>>> > public String encodeURL(String url) { return url };
>>> > public String encodeUrl(String url) { return url };
>>> > public String encodeRedirectURL(String url) { return url };
>>> > public String encodeRedirectUrl(String url) { return url };
>>> >   });
>>> > }
>>> >  }
>>> >
>>> >  Now, this will likely cause an explosion in the number of sessions
>>> >  generated by Google's crawler. You might want to couple this with a
>>> >  separate filter (or just create a GoogleCrawlerFilter that does all
>>> >  this) that identifies Google's (and others) user agent and intercepts
>>> >  calls to getSession() and either refuses to create a session (probably
>>> >  not a good idea) or returns a fake session that gets discarded after
>>> >  every request. Another option would be to set the session timeout to
>>> >  something like 10 seconds so the session dies relatively quickly
>>> > instead
>>> >  of sticking around for a long time, wasting memory.
>>> >
>>> >>  Maybe a better idea would be that someone from Apache Tomcat should
>>> >> push
>>> >>  to google with some standards tomcat implement in this respect so
>>> >> that
>>> >>  google change the algorithm and not punish with low ranking websites
>>> >>  powered by tomcat.
>>> >
>>> >  This is not a"Tomcat problem": it's a problem with any site that
>>> >  requires sessions to maintain state on the server.
>>> >
>>> >  I agree with Chuck: fix your webapp to tolerate Google's crawler, or
>>> >  suffer the consequences.
>>> >
>>> >  Something else you can do is use a robots.txt file to prevent the
>>> >  crawler from hitting certain URLs. That might help.
>>>
>>> I'm not doing anything special, I don't think.
>>> Google bots hit our site, the session count goes up a bit.
>>> Google does not include jsessionid in the URLs it indexes.
>>>
>>> It may be that the site has been around for long enough that the Google
>>> algorithms know that we have a session id should be removed from a URL.
>>>
>>> It would be surprising to me if Google 

Re: Tomcat dies suddenly

2010-02-12 Thread anthonyvierra
Is it possible to run this server with a basic tomcat application under load
to rule out the application causing the crash?

On Fri, Feb 12, 2010 at 4:20 AM, Carl  wrote:

> This problem continues to plague me.
>
> A quick recap so you don't have to search your memory or archives.
>
> The 10,000 foot view:  new Dell T105 and T110, Slackware 13.0 (64 bit),
> latest Java (64 bit) and latest Tomcat.  Machines only run Tomcat and a
> small, special purpose Java server (which I have also moved to another
> machine to make certain it wasn't causing any problems.)  Periodically,
> Tomcat just dies leaving no tracks in any log that I have been able to find.
> The application has run on a Slackware 12.1 (32 bit) for several years
> without problems (except for application bugs.)  I have run memTest86 for 30
> hours on the T110 with no problems reported.
>
> More details: the Dell 105 has an AMD processor and (currently) 8 GB
> memory. The T110 has a Xeon 3440 processor and 4 GB memory.  The current
> Java version is 1.6.0_18-b07.  The current Tomcat version is 6.0.24.
>
> The servers are lightly loaded with less than 100 sessions active at any
> one time.
>
> All of the following trials have produced the same results:
>
> 1.  Tried openSuse 64 bit.
>
> 2.  Tried 32 bit Slackware 13.
>
> 3.  Increased the memory in the T105 from 4GB to 6 GB and finally to 8 GB.
>
> 4.  Have fiddled with the JAVA_OPTS settings in catalina.sh.  The current
> settings are:
>
> JAVA_OPTS="-Xms512m -Xmx512m -XX:PermSize=384m -XX:MaxPermSize=384m
> -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+PrintGCDetails
> -XX:+PrintGCTimeStamps -XX:+HeapDumpOnOutOfMemoryError
> -XX:HeapDumpPath=/usr/local/tomcat/logs"
>
> I can see the incremental GC effects in both catalina.out and VisualJVM.
> Note the fairly small (512MB) heap but watching VisualJVM indicates this is
> sufficient (when a failure occurs, VisualJVM will report the last amount of
> memory used and this is always well under the max in both heap and permGen.)
>
> More information about the failures:
>
> 1.  They are clean kills as I can restart Tomcat immediately after failure
> and there is no port conflict.  As I understand it, this implies the linux
> process was killed (I have manually killed the java process with kill -9 and
> had the same result that I have observed when the system fails) or Tomcat
> was shut down normally, e.g., using shutdown.sh (this always leaves tracks
> in catalina.out and I am not seeing any so I do not believe this is the
> case.)
>
> 2.  They appear to be load related.  On heavy processing days, the system
> might fail every 15 minutes but it could also run for up to 10 days without
> failure but with lighter processing.  I have found a way to force a more
> frequent failure.  We have four war's deployed (I will call them A, B, C and
> D.)  They are all the same application but we use this process to enable
> access to different databases.  A user accesses the correct application by
> https://xx.com/A or B, etc.  A is used for production while the others
> have specific purposes.  Thus, A is always used while the others are used
> periodically.  If users start coming in on B, C and/or D, within hours the
> failure occurs (Tomcat shuts down bringing all of the users down, of
> course.)  Note that the failure still does not happen immediately.
>
> 3.  They do not appear to be caused by memory restrictions as 1) the old
> server had only 2 GB of memory and ran well, 2) I have tried adding memory
> to the new servers with no change in behavior and 3) the indications from
> top and the Slackware system monitor are that the system is not starved for
> memory.  In fact, yesterday, running on the T105 with 8 GB of memory, top
> never reported over 6 GB being used (0 swap being used) yet it failed at
> about 4:00PM.
>
> 4.  Most of the failures will occur after some amount of processing.  We
> update the war's and restart the Tomcats each morning at 1:00AM.  Most of
> the failures will occur toward the end of the day although heavy processing
> (or using multiple 'applications') may force it to happen earlier (the
> earliest failure has been around 1:00PM... it was the heaviest processing
> day ever.)  It is almost as if there is a bucket somewhere that gets filled
> up and, when filled, causes the failure.  (So there is no misunderstanding,
> there has never been an OOM condition reported anywhere that I can find.)
>
> Observations (or random musings):
>
> The fact that the failures occur after some amount of processing implies
> that the issue is related to memory usage, and, potentially, caused by a
> memory leak in the application.  However, 1) I have never seen (from
> VisualJVM) any issue with either heap or permGen and the incremental GC's
> reported in catalina.out look pretty normal and 2) top, vmstat, system
> monitor, etc. are not showing any issues with memory.
>
> The failures look a lot like the linux OOM killer (which Mark or Chris said
> wa

Re: [OT] Tomcat dies suddenly

2010-02-13 Thread anthonyvierra
CentOS, Sun JVM, IBM Hardware = 100% Uptime

On Sat, Feb 13, 2010 at 9:44 PM, Jorge Medina
wrote:

> There have been 144 messages on this thread...and you have spent already
> months trying to solve the problem...I think it will be more cost effective
> to replace the boxes, run a standard JVM from Sun..and close this
> thread!
>
> On Sat, Feb 13, 2010 at 6:11 PM, Caldarale, Charles R <
> chuck.caldar...@unisys.com> wrote:
>
> > > From: André Warnier [mailto:a...@ice-sa.com]
> > > Subject: Re: [OT] Tomcat dies suddenly
> > >
> > > Maybe we should also investigate if the SegFaults are simultaneous with
> > > anyone specific entering the room where the servers are.
> >
> > Ah yes, the old nylon underwear problem...
> >
> > Or the pizza with plutonium toppings.
> >
> >  - Chuck
> >
> >
> > THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
> > MATERIAL and is thus for use only by the intended recipient. If you
> received
> > this in error, please contact the sender and delete the e-mail and its
> > attachments from all computers.
> >
> >
>


Re: [OT] Tomcat dies suddenly

2010-02-14 Thread anthonyvierra
ok i left out the cluster part ;)

On Sun, Feb 14, 2010 at 1:21 PM, Christopher Schultz <
ch...@christopherschultz.net> wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Anthony,
>
> On 2/14/2010 1:01 AM, anthonyvie...@gmail.com wrote:
> > CentOS, Sun JVM, IBM Hardware = 100% Uptime
>
> 100%, eh? Care to make a wager?
>
> - -chris
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.10 (MingW32)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
>
> iEYEARECAAYFAkt4aXQACgkQ9CaO5/Lv0PDdqgCdFW5C4rWO4XwCI9/EK9APlk+K
> CXIAn3akAol+pBE12guiAz+krXytzV1T
> =w3u5
> -END PGP SIGNATURE-
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: j_security_check not working with flash

2009-12-21 Thread anthonyvierra
Try resetting your browser, meaning fully close it, or try from a
different browser. Same result? I sometimes get the exact same
"(/./j_security_check) is not available." when i have had my
browser open on the doc for while and re-authenticate. Same thing
happens on my cisco call manager when i let the login go stale a few
times without closing the browser. Maybe that will help you
troubleshoot it further.

On Mon, Dec 21, 2009 at 1:50 PM, vpapado  wrote:
>
> Hello,
>
> I have a problem authenticating my users with j_security_check interworking
> with a flash on my login.jsp page.
>
> Here is how things go:
>
> I use j_security_check method to authenticate my users.
> As a result, I have assigned a login.jsp page where I have a login form and
> at the top of the page a menu developed with flash:
>
> ..::1 - Login Form::..
> 
> Username:
> Password:
> 
> 
>
> ..::2 - Menu Flash::..
>
>
>
> When the user is prompt to login, then inserts the correct username -
> password.
> But after submit, the authentication method fails and the error page appears
> from Tomcat:
>
> HTTP Status 404 - /./j_security_check
> type Status report
> message /./j_security_check
> description The requested resource (/./j_security_check) is not
> available.
>
>
> Then I simply remove my flash menu and the whole login procedure of the user
> is performed correctly!!
> This means that flash caused the error in this page!!
>
> Is there a way I can have in my login.jsp page my flash menu and perform the
> login successfully?
>
> Thanks in Advance for the answer,
> papado.
> --
> View this message in context: 
> http://old.nabble.com/j_security_check-not-working-with-flash-tp26880231p26880231.html
> Sent from the Tomcat - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: TomCat 6 performance issues

2009-12-22 Thread anthonyvierra
Has the issue come from a single server? Or do you have a second
machine producing the same result?

On 12/21/09, DOrlov  wrote:
>
> Hello.
> I have TomCat server on production and have from 80 up to 400 requests per
> second.
>
> In server.xml I have next connector description:
>
>  maxThreads="200"
>acceptCount="100"
>minSpareThreads="5"
>maxSpareThreads="75"
>enableLookups="false"
>disableUploadTimeout="true"
>connectionTimeout="1500"
>keepAliveTimeout="0"
>maxKeepAliveRequests="1"
>/>
>
> For application spesific we don't need to support keep alive and don't need
> to wait for huge requests.
> Main task is to serve responses as fast as we can.
>
> ~Time for request processing on server (I use tomcat log figures and own
> time counters for checking) is 1 ms.
>
> PROBLEM now:
> Most part of time server works fine and ~ time for request/response 300 ms
> (for external users via browser)
>
> BUT time to time request/response time is upto 5 seconds for the same users.
> How I could figure out a problem? How could I check if it is Tomcat server
> problem or not?
>
> You are very welcome with comments.
>
> Thanks,
> Denis.
>
>
>
> --
> View this message in context:
> http://old.nabble.com/TomCat-6-performance-issues-tp26884227p26884227.html
> Sent from the Tomcat - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>

-- 
Sent from my mobile device

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: TomCat 6 performance issues

2009-12-22 Thread anthonyvierra
Is there any other hardware/software between tomcat and the checking
box? Load balancer, app firewall ?

On 12/22/09, DOrlov  wrote:
>
>
>
> anthonyvierra wrote:
>>
>> Has the issue come from a single server? Or do you have a second
>> machine producing the same result?
>>
>>
>
> I have another production box with different code, but same TomCat
> configuration. And time to time I have the same issues.
>
> TomCat server side code on another box works fast enough (<5 ms per request)
>
> --
> View this message in context:
> http://old.nabble.com/TomCat-6-performance-issues-tp26884227p26888782.html
> Sent from the Tomcat - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>

-- 
Sent from my mobile device

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: How to access files in network drive

2010-01-03 Thread anthonyvierra
Tomcat is started under a user account with its own security. Give
that user permission to the path.

On 1/3/10, WM C  wrote:
>
> Hi -
>
> This is more like a general java question.
>
> In my web app, I need to read files from a network drive folder, which has
> access restriction (my account is permitted).
>
> During development time, since I am using Eclipse and Tomcat is integrated
> inside, so both were run under my account, everything works fine, but when
> deployed onto a testing server, where Tomcat runs using a system account,
> file access was denied.
>
> How to resolve this problem? Is there a way when accessing file, I can pass
> in a user identity as parameter, or "log on" first just like access
> database? Seems java File API does not have this option.
>
> Any suggestions are appreciated!
>
> William
>   
> _
> Hotmail: Powerful Free email with security by Microsoft.
> http://clk.atdmt.com/GBL/go/171222986/direct/01/

-- 
Sent from my mobile device

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Securing Tomcat Applications from Reverse Engineering

2010-01-21 Thread anthonyvierra
Hi Kranti - Honestly if the ideas in the product are that valuable anyone
who uses the product with a web browser, print screen, and paint can fully
mock up the application and send the mockups to development. Anything that
is deployed on a server that is out of your control, is exactly that. I
understand your need as: "To remotely deploy a tomcat application to a
customer server." This is the root of the issue. Have you considered a
hosted model for delivery?

2010/1/21 Kranti™ K K Parisa 

> Well there are soo many comments on the cost of IP and other tools. when we
> are a small team started working on a web based product with open source
> tools, for sure we can't spend too much on the tools to protect the IP
> rights. because once we deploy for few clients, if its a good product, what
> if they steal the code and also ideas. i agree to have legal terms and all
> that stuff. but that would be a big story for us being small.
>
> so just wanted to see if anything available to protect our work, ideas
> (ideas at code implementation level by using different opensource
> technologies, well there are many companies who started like this).
>
> anyways thanks for the comments, i would love to share if we invent
> anything
> in this process, because small is big and it matters :)
>
> Best Regards,
> Kranti K K Parisa
>
>
>
> On Thu, Jan 21, 2010 at 5:00 PM, André Warnier  wrote:
>
> > Peter Crowther wrote:
> >
> >> 2010/1/21 Kranti™ K K Parisa 
> >>
> >>
> >>> How could we achieve this without the above tool? Because the pricing
> of
> >>> the
> >>> above tool is very costly.
> >>>
> >>> Well, you could always spend the developer-years to create your own
> >>> version
> >>>
> >> of that tool... which would probably be *more* costly.
> >>
> >
> >
> > I'll add something to that, just for the sake of it.
> > I personally find this situation ironic : here we have someone who wants
> to
> > protect their own code, presumably so that they can charge the customer
> for
> > a copy of it, in order to get back their cost of development and some
> > justified profit for their work.
> > But the same people are apparently unwilling to pay for a product that
> > would allow them to do so, and is sold on the same terms.
> >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> > For additional commands, e-mail: users-h...@tomcat.apache.org
> >
> >
>


Re: Recommendations for Automating Deployments and then dev, qa, uat, prod testing

2010-01-23 Thread anthonyvierra
How about CI - continious integration server that builds, tests, and
deploys the apps if the tests are successful?

There are a few great CI servers out there. I happen to use Bamboo
from atlassian. All CI use a build tool like ant or maven.

CI would make your small ops team superstars.

On 1/23/10, Pierre Goupil  wrote:
> Hello,
>
> Maven can for sure cover all these needs. But be aware that it has a steep
> learning curve and that if someone uses it, everybody should do so.
>
> Depending upon your role on the project the required level of knowledge will
> vary, though.  For an operationnal guy it may reduce to launch 2 or 3
> well-defined goal, for most developers, it may reduce to 3-4 more. But in
> the beginning, someone will have to study the whole problematic and write
> the POM files.
>
> According to what I see of your need, I'd recommend to do a small-step study
> after applying to a professional training: Maven is a very rich tool and
> whoever will write the POMs will benefit (regarding cost and hassle) from
> not to have and learn everything by himself.
>
> Plus, it could be a best practice not to put all critical build-system
> knowledge in the same hands.
>
> Regards,
>
> Pierre
>
>
>
> On Sat, Jan 23, 2010 at 5:17 PM, Fletcher Cocquyt
> wrote:
>
>> Hi, this question is coming from the operations team perspective.
>> Currently our (small 3 member) ops team is responsible for deploying java
>> apps
>> weekly from a set of dozens in a less than great 4am-6am window on
>> Wednesdays.
>>
>> This process is not perfectly defined and slow - the developer's check all
>> the
>> code into SVN and tag the release - ops checks it all out and builds it on
>> the
>> tomcat nodes with the dev supplied ant build.xml.  This can take several
>> minutes
>> per app per node and if there are any errors the 4-6am window is done.
>>
>> So my initial goal is a way to better define the requirements around
>> deployments
>> so we can go from the slow error-proone build from SVN tag, to something
>> like
>> the quick packaged war file deployment.
>>
>> One candidate seems to be maven -
>>
>> http://www.waltercedric.com/java-j2ee-mainmenu-53/361-maven-build-system/1555-deploy-to-tomcat-6-using-maven.html
>>
>> Ideally, the entire release to production process would be such a well
>> defined,
>> quick and pre-tested event, than ops would  only be notified if the 4am
>> deployment failed and the automated rollback also failed.
>>
>> So questions about the things maven seems to address:
>> testing: unit, integration testing - article mentions selenium?
>> sensitive data: database passwords (can these be securely handled in
>> maven?)
>>
>> Additional, medium-long term goals:
>> Standardize the development environment and processes.
>> Leverage the virtual infrastructure we have built with vmware: have the
>> developers use standard VM images from templates (ensure consistent JDK,
>> libs
>> etc), integrate with lab manager/vApp/VMware Studio concepts.
>>
>> thanks for any feedback / recommendations,
>> Fletcher.
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
>> For additional commands, e-mail: users-h...@tomcat.apache.org
>>
>>
>
>
> --
> Ad augusta per angusta
>
> Des résultats grandioses par des voies étroites
>

-- 
Sent from my mobile device

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Grails WAR file not working

2010-01-27 Thread anthonyvierra
Did you list the version of JVM & Tomcat & OS from the server you are having
trouble with, or from the desktop that is working? Your asking for help but
not giving any info here

On Wed, Jan 27, 2010 at 8:41 AM, AwTIn  wrote:

>
>
>
> n828cl wrote:
> >
> >> From: AwTIn [mailto:tanner.kl...@gmail.com]
> >> Subject: RE: Grails WAR file not working
> >>
> >> Tomcat version: 5.5.7
> >
> > That's over 4.5 years old, so it might be time to upgrade...
> >
> >> JVM: 1.5.0-b64
> >
> > That's nearly 6 years old...
> >
> >> OS: Ubuntu
> >
> > Are you running a real Tomcat (one downloaded from tomcat.apache.org),
> or
> > a 3rd-party repackaged version from Ubuntu?  If the latter, it scatters
> > files all over the place and then tries to symlink them back together, so
> > it's hard to tell where new webapps are actually supposed to go.
> >
> > Try updating to the current Tomcat version (5.5.28 or 6.0.24) and a
> > current JVM and see if the problem persists.
> >
> > Also, as I said before, look in the Tomcat logs for any errors that might
> > be reported there for the deployment of the webapp.
> >
> >  - Chuck
> >
> >
> > THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
> > MATERIAL and is thus for use only by the intended recipient. If you
> > received this in error, please contact the sender and delete the e-mail
> > and its attachments from all computers.
> >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> > For additional commands, e-mail: users-h...@tomcat.apache.org
> >
> >
>
> I don't think so things are the issue.  I am doing work on Ubuntu but
> tomcat
> and its Websites is on a remote computer.  Also, I currently have a working
> WAR file in the 'webapps' directory.  I can browse to it and everything.
> The issue is just with this one.
>
> --
> View this message in context:
> http://old.nabble.com/Grails-WAR-file-not-working-tp27326818p27342717.html
> Sent from the Tomcat - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>