Return-Path: X-Original-To: apmail-tomcat-users-archive@www.apache.org Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4D2831777D for ; Sat, 4 Oct 2014 00:03:16 +0000 (UTC) Received: (qmail 80991 invoked by uid 500); 4 Oct 2014 00:03:12 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 80928 invoked by uid 500); 4 Oct 2014 00:03:12 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 80917 invoked by uid 99); 4 Oct 2014 00:03:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Oct 2014 00:03:12 +0000 X-ASF-Spam-Status: No, hits=2.2 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [209.85.217.174] (HELO mail-lb0-f174.google.com) (209.85.217.174) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Oct 2014 00:02:46 +0000 Received: by mail-lb0-f174.google.com with SMTP id p9so1824992lbv.5 for ; Fri, 03 Oct 2014 17:02:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=5t3zflcSZuD2svORsH3gpgpVgTQvSZdRPpb7cx5KzvY=; b=QSkt9M9TJMfHhyzX75vxCK01e1wJ26qrLRdfghpIG/hstB82yvfKaE2EUKWn5Bva/6 nES7hyQj7jsWQ+RI+L73Yk4npK0TJ6TFIp2neUZpOft3xCugo11NEe8Gr9bQfaUd4aBi F6fols7S/cuhiCig8y1T+Pl2Oma0mRsDOnmTo5el3iwwlU/exgl4/e3Z/S+otfGarwkY X8RZa7gn/SbZY87f20GatgNC6CpLhGHInaR/OauoYSPCe/+76s/EbTyYENEkQYLvaJuZ cdN8SK+cHQYaQVKjXozmubbqOEWSBFysxq/XKdIX2iL88wCTHl5bsP9BE70oVOurHgVR 195w== X-Gm-Message-State: ALoCoQkTu86bVqE7QdtBCrf5UnxxtzX3CS3TXh4EvYGVxQpxjq9G9guhCTW14IP/uIlY5Ya0Iha4 MIME-Version: 1.0 X-Received: by 10.152.1.74 with SMTP id 10mr9238162lak.43.1412380965363; Fri, 03 Oct 2014 17:02:45 -0700 (PDT) Received: by 10.152.135.143 with HTTP; Fri, 3 Oct 2014 17:02:45 -0700 (PDT) In-Reply-To: <542E0C34.9030600@christopherschultz.net> References: <542E0C34.9030600@christopherschultz.net> Date: Fri, 3 Oct 2014 20:02:45 -0400 Message-ID: Subject: Re: Struts 2 /Glassfish to Tomcat migration From: Kiran Badi To: Tomcat Users List Content-Type: multipart/alternative; boundary=089e013c6b82ba755305048d91f3 X-Virus-Checked: Checked by ClamAV on apache.org --089e013c6b82ba755305048d91f3 Content-Type: text/plain; charset=UTF-8 Thanks Chris for replying.I did resolve the 404 issue,it's error on my part. One of view jsp was in incorrect folder so it was throwing 404 error.Fixed it and now it works fine. I do not recall as how I installed this tomcat probably I downloaded the zip file and then integrated that installation with netbeans. x86-64 do I need to download this file from apache tomcat site ? how do I use this file ? edit the environment variables ? On Thu, Oct 2, 2014 at 10:38 PM, Christopher Schultz < chris@christopherschultz.net> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA256 > > Kiran, > > On 10/2/14 9:59 PM, Kiran Badi wrote: > > I am migration my glassfish struts 2 based application to Tomcat > > 7.055. > > > > I am coming across 2 issues, first one is below exception while > > starting Tomcat > > > > java.lang.UnsatisfiedLinkError: C:\Apache Software > > Foundation\apache-tomcat-7.0.55\bin\tcnative-1.dll: Can't load IA > > 64-bit .dll on a AMD 64-bit platform > > You have the IA-64 library in your path, and you need the x86-64 > library instead. How did you install Tomcat? If you used the binary > installer, it should have correctly detected your architecture and > used the correct library. If you installed it manually, you should > have a selection of tcnative .dll files. fine the x86-64 one and use that. > > > these are java information, > > > > Using CATALINA_BASE: "C:\Apache Software > > Foundation\apache-tomcat-7.0.55" Using CATALINA_HOME: "C:\Apache > > Software Foundation\apache-tomcat-7.0.55" Using CATALINA_TMPDIR: > > "C:\Apache Software Foundation\apache-tomcat-7.0.55\temp" Using > > JRE_HOME: "C:\Program Files\Java\jdk1.7.0_13" > > > > Though the server starts and I can access the home page, but it > > seems like struts.xml file is getting ignored and i am getting 404 > > for all jsp which are under web-inf. > > The inability to start the APR connector won't have any effect on this. > > How are you trying to access your .jsp files within WEB-INF? Via a > direct URL or some kind of internal forward from another URL? > > > Is their any migration guide from glassfish 4x to Tomcat ? > > You shouldn't have to do too much to migrate, as long as you don't > have anything GlassFish-specific in your webapp. You should be able to > take your existing WAR file and drop it into Tomcat's webapps/ > directory. That should get you 90% of the way. If you use JNDI-based > resources, you'll have additional configuration, but I won't get into > that unless you actually need it. > > > I was thinking that copying struts.xml to config directory and > > setting dispatcher servlet should be sufficient. I am missing > > anything here. > > What is "config directory" and how did you "set [the] dispatcher servlet"? > > - -chris > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1 > Comment: GPGTools - http://gpgtools.org > > iQIcBAEBCAAGBQJULgw0AAoJEBzwKT+lPKRYoI8P/2N1QNVZK1ZfvPqNNY2sALE0 > 4obJMM/vKtzDsKrJmJ+kaTfSAt1Cnd6fOP3VCFUYrfkKGWUjOfTczxN6c2RgvJbV > R8Y9nwUhevgb2Y36slZ2Kda6g2XmxH5WR8PU/qEF8qRu+ZM7BSkKAkfUz+lrbrC2 > a4MD02LmiQXaXEyxsFzOcW+Ig9iMUi4gpCA5hJw9SJtObedeW9rfQDrNJVpMd559 > FFUdGE6hz2/+3JcTV+gYutYrS0sGuPrTL/WA+X7OYTdPheU6R9JmiK8OmLBA6COg > aNBT6k/Bm29NgTQVAXATkomI7fBCV3HRYlIH7eA1oZgMPgSKf6PTdrfKaAvZZfz0 > qxXl9dD7gXgssNN59CxxDu2xHlYv11RMN/vlVodpdWWHWkttetigpQi1wL3dDfJd > uBzi8vl8DXVcs+44sZ+lPNa07VjHRxR8zElqTppQ9f500ozQN+5j18LYtOKefoOZ > HmQ1lhs721hN5XzWP1xQRZGFNVg1fb0tBFVf/n2TT3n9DhiQhXpy029xKYkUBa9q > Ch2iFzQN1HbLimBVuUlKx2fDjy8P6BWUfN0I1T9kSPLwZwtSZy8V0JuSuaOdkNby > kQ6PQBV5CMQNdMNcNE5rIDUA66YyLOMXMYnN/pQaT5JIoeTJL0b2jVNweFGcdukp > ANyaJNqtL6SuIS7DUmvE > =QXr1 > -----END PGP SIGNATURE----- > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > For additional commands, e-mail: users-help@tomcat.apache.org > > --089e013c6b82ba755305048d91f3--