Servlet won't run under JRun 4.0

Problem> when I attempt to run a successfully compiled servlet in IE, IE
could not locate the page. IE displays "Oops! We couldn't find your
document.", or a window with caption/title "HTTP 500 Internal server
error" and message "The page cannot be displayed. There is a problem
with the page you are trying to reach and it cannot be displayed."
The servlet is stored in C:\JRun4\servers\default\default-ear\default-
war\WEB-INF\classes\Servlet_Class1.class. The 'default' server was
running (via jrun -start default).
The following are the URLs I used in an attempt to run the servlet:
http://localhost:8100/Servlet_Class1
http://localhost:8100/servlet/Servlet_Class1
http://localhost:8100/default/servlet/Servlet_Class1
http://localhost:8100/classes/Servlet_Class1
http://localhost:8100/default/classes/Servlet_Class1
I entered the following servlet definition in
C:\JRun4\servers\default\default-ear\default-war\WEB-INF\web.xml:
     <servlet>
          <servlet-name>Servlet_Class1</servlet-name>
          <servlet-class>Servlet_Class1</servlet-class>
     </servlet>
I defined url pattern in web.xml:
     <servlet-mapping>
          <servlet-name>Servlet_Class1</servlet-name>
          <url-pattern>/</url-pattern>
     </servlet-mapping>
Here is a portion of the servlet I'm attempting to run:
     import javax.servlet.*;
     import javax.servlet.http.*;
     import java.io.*;
     /* The servlet extends the HttpServlet class and overrides the doPost
     method. The doPost method is called when a client makes a POST request
     (<FORM name=... METHOD=post ...>), and results in the simple HTML page
     being returned to the client. */
     class Servlet_Class1 extends HttpServlet {
     /* not sure if main() method is necessary for servlets? */
          public static void main(String[] args) {
               System.out.println("inside Servlet_Class1");
          }     // main() method
          public void doPost(HttpServletRequest request,
               HttpServletResponse response)
               throws ServletException, IOException
               ... the usual
I successfully ran/accessed the following:
     http://localhost:8100/index.jsp     <-- worked; JRun installation default
     http://localhost:8100/zhome2.jsp <-- worked; a simple JSP page I wrote
http://localhost:8100/ returns the standard IE page with the
caption/title "HTTP 500 Internal server error" and message
"The page cannot be displayed. There is a problem with the page you are
trying to reach and it cannot be displayed." index.jsp does exist under
C:\JRun4\servers\default\default-ear\default-war.
I successfully ran some servlets from the 'techniques' sample directly
by entering their URLs:
http://localhost:8200/techniques/servlet/ContextInfo     <-- worked
     http://localhost:8200/techniques/servlet/InitInfo     <-- worked
I installed JRun as an "application", NOT as a "service".
My PC configuration:
     java version "1.4.0_01"
     Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0_01-b03)
     Java HotSpot(TM) Client VM (build 1.4.0_01-b03, mixed mode)
     JRun 4 (Build 47304)
     WinNT 4.0 SP5
     IE 5.50
     CLASSPATH=.;D:\jakarta-tomcat-3.3.1\lib\common\servlet.jar;C:\JRun4\servers\defa
     ult\default-ear\default-war\WEB-INF\classes
     JAVA_HOME=C:\j2sdk1.4.0_01
     Path=C:\j2sdk1.4.0_01\bin;C:\WINNT\system32;C:\WINNT;C:\Program Files\Network As
     sociates\PGPNT;C:\Program Files\MTS;d:\MSSQL7\BINN
I previously installed Tomcat but gave up on it. But I am using it's
servlet.jar to cleanly compile servlets.

still no success. I also tried entering a dot-qualified servlet name
     http://localhost:8100/servlet/zservlets.Servlet_Class1
     http://localhost:8100/zservlets.Servlet_Class1
My default-event.log contained:
08/22 18:33:19 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
08/22 18:52:03 user ServletInvoker: init
08/22 19:49:16 info Servlet_Class1
08/22 19:49:16 info Servlet_Class1
08/22 19:49:17 info Servlet_Class1
08/22 19:49:17 error Requested resource null not found
08/22 19:49:33 info zservlets
08/22 19:49:33 info zservlets
08/22 19:49:33 error Requested resource null not found
08/22 19:49:35 info zservlets
08/22 19:49:35 error Requested resource null not found
08/22 19:51:46 info Deployer Service is undeploying watched URL
file:/C:/JRun4/servers/default/default-ear/
08/22 19:51:47 user ServletInvoker: destroy
08/22 19:51:47 info 3 session(s) persisted
08/22 19:51:47 info Removing web application service from servlet engine
service: default-ear#default-war
08/22 19:51:47 info Unregistering enterprise application:
file__C__JRun4_servers_default_default-ear_#default-ear
08/22 21:41:16 error Servlet_Class1
[1]java.lang.IllegalAccessException: Class
jrun.servlet.WebApplicationService can not access a member of class
zservlets.Servlet_Class1 with modifiers ""
     at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:57)
     at java.lang.Class.newInstance0(Class.java:290)
08/22 21:41:25 user FileServlet: init
08/22 21:41:25 error Requested resource /Servlet_Class1 not found
08/22 21:41:27 error Requested resource /Servlet_Class1 not found

Similar Messages

  • Can not make XSQL servlet running under Jrun 3.1! need help

    Hi,
    I tried to run Oracle XSQL servlet under JRun 3.1,I did servlet mapping, such as
    <servlet-name>oracle-xsql-servlet</servlet-name>
    <servlet-class>oracle.xml.xsql.XSQLServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>oracle-xsql-servlet</servlet-name>
    <url-pattern>*.xsql</url-pattern>
    </servlet-mapping>
    I set classpath for XSQL related library such as oraclexsql.jar, xmlparserv2.jar,etc, I believe everything is setup correctly, however when I invoke .xsql page, I did not get data instead of getting sql text!, here is my xsql file content:
    <?xml version="1.0"?>
    <!-- reports.xsql: List of reports by user id -->
    <?xml-stylesheet type="text/xsl" href="Filter.xsl"?>
    <page connection="reports_8i" xmlns:xsql="urn:oracle-xsql">
         <dataform target="reportFilter.jsp" submit="Go">
    <xsql:set-session-param name="userid" value="{@userid}" ignore-empty-value="no"/>
         <xsql:include-param name="userid"/>
         <xsql:set-session-param name="bu_id" value="{@bu_id}" ignore-empty-value="no"/>
         <xsql:include-param name="bu_id"/>
         <xsql:set-session-param name="client_id" value="{@client_id}" ignore-empty-value="no"/>
         <xsql:include-param name="client_id"/>
         <item type="list" name="targetPage" label="Available Reports">
         <xsql:ref-cursor-function bind-params="userid">
                   reports_generation.getReportList(?)
              </xsql:ref-cursor-function>
              </item>
         </dataform>
    </page>
    What I got when I invoked this page is reports_generation.getReportList(?)!!
    It seems that JRun 3.1 did not understand xsql syntax, it means it can not find XSQL servlet related libraries, come on, I did set classpath.
    Does anyone has this experience to help me out? Highly appreicate you in advance.
    Thanks.

    i think i solved this problem by specifying the full path to javac...
    what must i do to avoid this?

  • Many of my applications won't run under Lion.

    I used to run Tiger on a G4 Powerbook and a G4 Quicksilver.  Now I have a new iMac running Lion but it does not support my PowerPC apps such as Toast or Popcorn.  Also the drivers for many devices such as my printer, scanners and external LaCie HD aren't supported.  Replacing everything is going to be expensive - any suggestions for workarounds?  I'd also like to hear of any good DVD burning/copying applications that will run under Lion other than Roxio's.

    You mentioned LaCie external hard drives - there is no driver needed for an external HD. Plug it in. If it is formatted correctly (which means it needs to be Mac OS extended (Journaled) and GUID Partition scheme (under Options) in order to be bootable on an Intel), there is nothing else you need. You may need to reformat to GUID if you're coming from a PPC. Note: back up your data first because the drive will be wiped,
    I've used Toast and updated it - they usually have special update offers if you're coming from an earlier version. As for your printer and other hardware - if it is old but still works, you could keep using it with your old Mac (transfer whatever you want to print over to the old Mac and print from there) or start upgrading.

  • Some current apps won't run under IOS 4?

    Just got this from RunKeeper
    We wanted to reach out and warn you that the RunKeeper Free and RunKeeper Pro apps that you currently have on your phones are not iOS 4 compatible. New versions that are iOS 4 compatible are in the queue awaiting Apple's approval. We don't know if they will get approved before tomorrow (we hope they do), but if not, it should be any day now. In the meantime, if you wish to continue using RunKeeper while you are waiting, hold off on downloading iOS 4 until our next app version gets approved.
    Is this going to be a general problem with older apps?

    dlcrouch wrote:
    Is this going to be a general problem with older apps?
    I suspect there are three categories:
    1. Apps which will not run under OS4
    2. Apps which will run under OS4 but not support multitasking
    3. Apps which will run under OS4 and support multitasking
    I understand Navigon has a new version in the wings in Cat 3.
    Hopefully the iTunes app store will identify those which will not work in OS4. But I suspect we may learn about some the hard way, starting tomorrow.
    Phil

  • HT3421 Battery Update 1.4 won't run under 10.6.8?

    Getting the 'Service Battery' warning under the battery menu, noticed some have mentioned the need to run Battery Update 1.4 but when I try to I get an error that I need Leopard 10.5.6 or better. Guess SL 10.6.8 doesn't qualify as 'better'?
    FWIW: CoconutBattery reports: "MacBook 4,1 43 months old w/ 263 loadcycles with max 22% capacity"

    I also updated to SnowLeopard directly when it came out, and shortly afterwards lost my power adapter so didn't use my Mac for two weeks.
    Today found the power adapter again (thank god, 'cause those things are expensive) and now my Macbook won't charge! I found the Battery Update 1.4 might help me but that one isn't working on systems running SnowLeopard...
    What to do? I know since recently (There was a critical story in my local newspaper about failing Macbook batteries) that a lot of batteries of the late 2008 series plastic Macbook are failing on people and that you can only charge one about 300 times. That sounds so weird to me because that would mean I'll have to spend €139,- every year on a new battery!!! That would make my Macbook cost a grand total of more than €1500,- if i'd use it for about 4 years.. Now that *****! (excuse my language but I'm truly shocked!)

  • ZEN touch won´t run under vista,also problem with firmware upda

    i tried to connect my zen touch 20gb with my vista ultimate pc but it didnt work so i tried it by setting up a virtual machine (with xp on it running) and it recoknized it. then i tried to update the firmware and now i ended up with version 0.0. and can't put on another one....could someone explain to me how i can update the firmware (on xp or vista, nevermind) so i can use it again ?
    tia,
    chris?

    I set up a fmware workstation virtual machine running winXP, after doing so it suddenly recognized the player also under vista (after selfinstall under the virtual xp-station!!!) , it was available as a virtual dri've and as a zen touch. i tried to update the firmware then under the xp sys but it had winMediaplayer on it which didn?t work with the zen touch as far as i know.On the VIsta machine? i tried to updade(get it to run) for hours, then tried to do everything new and started to remove every software and folders with creative parts in it, tried again etc but it wouldn?t work. the zen gave me a) the screen "syncroising" (for ever) or b)format, update firmware etc as options which didn?t work
    ?under _which_ system do i have to install _which_ firmware, software and what can the media player cause on problems please ?
    i?m a music-junkie and i really NEEEEEEEEEED this machine !!!
    thx in advance *bow*
    chris?

  • Labview 7.1 won't run under Windows 7

    Hello -
    I recently upgraded my system to Windows 7 (Ultimate, x64).  Unfortunately, when I now attempt to run Labview 7.1 on this machine I get an error saying the following:
    The requested feature is unavailable on "localhost".
    I am not sure of where to go from here.  The built in compatibility mode (running it as if it were XP SP3, for example) produces the same result.  Searching on this forum I found someone with the same message after installation errors (dealing with registry privileges) but I saw no such errors during what was an uneventful, clean install.  One thing I am wondering about (although it does not seem to be an issue with any other program that I have) is I happened to notice that Windows 7 seemingly makes all subdirectories under "Program Files" (Program Files (x86) in this case) read-only.  I turned this off for the National Instruments subdirectory and all of its subdirectories, with no change.  I also attempted the "fix" for registry privileges (in the aforementioned post on here) with no luck.
    Has anyone else seen this?  It'd be nice if it gave me a more detailed message but this seems to be all of the information available with this error.
    Thanks,
    Brett

    Hmm, you've just about stumped me.  If this is on a laptop, please try disabling the WIFI card so only one network adapter is present (there are activation issues in later versions related to this).  Are you using the default LabVIEW.INI file or are you migrating your settings from a previous install?
    Also, do you have any drivers installed?  If so, from what Driver CD are you installing them from (month/year)?
    The system I tested LV 7.1 on is a virtual machine with Windows 7 Professional x64.  I'm not sure I know many more "tricks" to try in order to get this to work, but I am not sure this is even an issue related to Windows 7.  The other thread documents this issue on a Windows 2000 system.  Once engaged by one of the NI Applications Engineers, you might try installing LabVIEW 7.1 from another copy of the distribution/installer.
    -Bob
    Message Edited by B O B on 11-10-2009 04:44 PM
    Message Edited by B O B on 11-10-2009 04:45 PM
    -Bob

  • DAQ program compiled under Win2k won't run under Win 95.

    When I compile a LabView 5.1.1 vi program that uses lvdaq.dll on my Windows 2000 workstation, that same program will not run on a Windows 95 notebook computer. Error code 21 (external subroutine could not be found) is reported for all standard DAQ vi's calling functions within lvdaq.dll even though the dll can be found in the program directory, the system directory, the vi.lib\daq directory, and via the system path. The same program compiled on a Windows 95 workstation runs on the Windows 95 notebook computer just fine. Why is lvdaq.dll not found when the program is compiled under Windows 2000? Do I need the same version of NI-DAQ on both computers?

    Larry;
    If you are doing NI-DAQ function calls on your VI you need to match the NI-DAQ version on both machines, otherwise, depending on what functions you are calling and what are the NI-DAQ versions, you might get some errors. Just for future reference, this procedure is good for NI-VISA (if you are using VISA VIs) and NI-488.2 (if you are using GPIB boards) as well.
    Regards
    Filipe Altoe
    Application Engineer
    National Instruments

  • I need to de-install Foxfire 6 and go back to Foxfire 5 on my Mac to run a picky program that won't run under Foxfire 6. I can't get install software for version 5 to run. It sees it as exe file.

    When I drag the downloaded Foxfire 5 install file to my Applications folder, it shows up as an .exe file. When I double click to run it, I get an error message saying it is not DOS executable.

    In the exact same boat here. Life-long iPhone user. Got a 6 on Tuesday and absolutely hate it to the point where I dread using it. Upgraded from an iPhone 4 I'd had for 4+ years. After making several phone calls, my understanding is that Apple will take it back no problem, within 14 days. My iPhone 4 was out of contract with AT&T but when I bought the 6, I renewed my previous contract for 2 years. My AT&T contract also has a 14 days, cancel for any reason with no early termination fee, clause. I assume your AT&T contract would have the same. But I don't think you need to worry about canceling your contract. Since you still have your iPhone 5, you should be able to bring it to the AT&T store, have them switch the existing contract from the 6 to your old 5 and then you can go return the 6 to the Apple store where you bought it. That's no different than being halfway through a two year contract, your phone is stolen and you have to buy a new one at retail price to replace it on your existing contract. You're essentially just bringing your own device you already paid for (the 5) to the existing AT&T plan.
    I would just caution that assuming you want to keep your phone number, get the service put back on your 5 at AT&T and have them deactivate the 6 before you go return the 6. Or just make sure the Apple store is capable of transferring the service from the 6 back to the 5 while you're there to do the 6 return.

  • "Peak 5.2" won't run under Mavericks

    I've just upgraded to Mavericks and discovered that my pro audio editor Peak LE 5.2 by Bias (company is out of business!) no longer works.  On opening, it gives a dialog box saying "Another copy of this application is already running on this machine. Peak must now quit."  There's nothing to do but click the "OK" button, and indeed it does quit.
    I looked for other running apps that might be in conflict, tried rebooting, and I deleted my Java runtime in case that was it - No luck.
    Any ideas?

    Just found out from another post that if you disconnect from the internet, it will work.
    I tried it, and that solved the problem!

  • Sum/Avg won't run under APEX

    I have a query that when I attempt to run in SQL-Plus, it functions fine. When I try to incorporate it into a PL/SQL dynamic content area in APEX, it keeps coming back with a Divisor = zero error. I am trying to implement as a cursor as there are multiple lines the query returns. Can someone point out things I should look for? I know exactly which line is causing the problem, but I can't tell why. Any help would be greatly appreciated.
    (I'm just going to paste the working and non-working versions for comparison as the entire region is over 1000 lines...)
    works in SQLPLUS
    select j.FACTORY_ID, f.FACTORY_NM, j.STATION_ID, s.SHORT_NM, j.PILE_CODE_ID,
                              j.CONFIG, j.PILE_CODE_ALT_FLAG, j.LOAD_RATE_ID, count(j.LOAD_JOB_ID), SUM(m.TM_MINUTES)/60, AVG(m.TM_MINUTES)/60   <---
                         from tc_load_jobs j, tc c, FACTORIES f, STATIONS s, LOAD_RATES l, TC_LOAD_JOB_TM m   <---
                        where c.DATE_INDEX = v_dt
                          and c.TC_ID = j.TC_ID
                          and l.LOAD_RATE_ID = j.LOAD_RATE_ID
                          and c.SHIFT = 'D'
                          and l.YARD = 0
                          and m.LOAD_JOB_ID = j.LOAD_JOB_ID(+)   <---
                          and j.FACTORY_ID = v_fact_id
                          and j.FACTORY_ID = f.FACTORY_ID
                          and j.STATION_ID = s.STATION_ID
                        group by j.FACTORY_ID, f.FACTORY_NM, j.STATION_ID, s.SHORT_NM, j.PILE_CODE_ID,
                              j.CONFIG, j.PILE_CODE_ALT_FLAG, j.LOAD_RATE_ID;works in APEX
      cursor c_prod is select j.FACTORY_ID, f.FACTORY_NM, j.STATION_ID, s.SHORT_NM, j.PILE_CODE_ID,
                              j.CONFIG, j.PILE_CODE_ALT_FLAG, j.LOAD_RATE_ID, count(j.LOAD_JOB_ID)
                         from tc_load_jobs j, tc c, FACTORIES f, STATIONS s, LOAD_RATES l
                        where c.DATE_INDEX = v_dt
                          and c.TC_ID = j.TC_ID
                          and l.LOAD_RATE_ID = j.LOAD_RATE_ID
                          and c.SHIFT = 'D'
                          and l.YARD = 0
                          and j.FACTORY_ID = v_fact_id
                          and j.FACTORY_ID = f.FACTORY_ID
                          and j.STATION_ID = s.STATION_ID
                        group by j.FACTORY_ID, f.FACTORY_NM, j.STATION_ID, s.SHORT_NM, j.PILE_CODE_ID,
                              j.CONFIG, j.PILE_CODE_ALT_FLAG, j.LOAD_RATE_ID;
        open c_prod;
          LOOP
          FETCH c_prod INTO p_fct_d, p_fct_nm_d, p_sttn_d, p_sttn_nm_d, p_pl_d,
                       p_cfg_d, p_alt_d, p_rt_d, p_lds_d;
          EXIT WHEN c_prod%NOTFOUND;
          select CYCLE_TIME, CYCLE_MILES, BID_TONS
            into p_bidcyc_d, p_bidmls_d, p_bidwt_d
            from LOAD_RATES
           where LOAD_RATE_ID = p_rt_d;
          p_sub_lds_d   :=  p_sub_lds_d + p_lds_d;
          select SPOT_WEIGHT into p_spotwt_d FROM SPOT_WEIGHTS
           where LOAD_RATE_ID = p_rt_d
             and DATE_INDEX = v_dt;
          p_sub_tons_d  :=  p_sub_tons_d + (p_spotwt_d*p_lds_d);
          p_sub_bidwt_d :=  p_sub_bidwt_d + (p_bidwt_d*p_lds_d);
          p_sub_bidtm_d :=  p_sub_bidtm_d + (p_bidcyc_d/60*p_lds_d);
              htp.p('<tr><td>'||p_sttn_nm_d ||' ('|| p_sttn_d ||'-'|| p_pl_d ||')</td>');
                  htp.p('<td>'|| p_fct_nm_d ||'</td><td style="text-align: center">'|| p_lds_d ||'</td>');
                  htp.p('<td class="c">'|| p_spotwt_d*p_lds_d ||'</td>');
                  htp.p('<td class="c">#HRS#</td>');
                  htp.p('<td class="c">'|| p_bidwt_d ||'</td>');
                  htp.p('<td class="c">'|| p_spotwt_d ||'</td>');
                  htp.p('<td class="c">'|| ROUND(p_spotwt_d/p_bidwt_d*100,2) ||'%</td>');
                  htp.p('<td class="c">'|| ROUND(p_bidcyc_d/60,2) ||'</td>');
                  htp.p('<td class="c">#ACTUAL#</td>');
                  htp.p('<td class="c">#CYCLE_PCT_OF_BID#</td></tr>');
          END LOOP;
        close c_prod;

    Hello,
    Can you show your query? Or at least a cut-down version which displays the problem (a 1000 line query is probably asking a lot of people to read through ;).
    There is no inherent reason why your query which works in SQLPlus shouldn't work in APEX (APEX runs inside the DB, so it's all just SQL and PL/SQL ultimately), there has to be something in your query which is causing it to behave differently.
    John
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd

  • Server 3.2.2 won't run under Yosemite - how do I administrate my Mavericks servers?

    Subject says it all.
    I (stupidly) upgraded my primary development system to Yosemite, and now my Server app (3.2.2) won't launch so I can't remotely manage any of my Mavericks servers (which I simply don't have the time upgrade at this time).
    Any suggestions?

    You need OS X Server 4 on your Mac with Yosemite. With that you should be able to manage the other servers with that and WGM 10.8
    I have not read about another way, and that is how we had to do it as well for the servers still on older versions of OS X.

  • Photoshop CS5 won't run under Win7 64-bit

    Photoshop starts, but as soon as I try to open any file, including a small JPEG, I get an annoying "Photoshop is no longer responding" type Windows OS message.
    This occurs whether it's the 64 bit version or the 32 bit version
    AMD Phenom 9750 Quad Core
    4 GB ram
    Completely updated Win 7 64-bit
    500 GB SATA-II HD
    24" HP Monitor  1920x1200
    Standard USB KB and Mouse
    Video:
    º Share Memory: Maximum up to 256MB
    º On Chip ( NVIDIA GeForce 6150SE-based. 2D/3D graphic engine)
    º Integrated DirectX 9 graphics processor
    I can't see myself plunking down any money for this unless it works on my work station.
    Any ideas? This must be a legitimate problem as I have seen other similar issues on 64 bit Win7 posted.
    Thanks all!

    I'll move this thread over to the forum that serves Photoshop CS and not Photoshop.com

  • Why oh why won't AE CS5 run under XP Pro 64 bit?

    Francly, i'm getting fed up of this stupid CG world we live in where users have to juggle and zig zag in between the permanent idiotic capitalistic software development battles going on way above our heads for teh sake of profit.
    I have a little pipeline  of 20 machines, couple of servers, couple of workstations and a bunch of render nodes. 80% which were set up with Vista (Pro Ultimatte and Business) had to be downgraded to XP Pro 64 for compatibity issues with some of the tools i was using, plug ins for 3ds max and AE mostly. believe it or not, downgrading from this piece of crap Vista did cost me money! ...and now that it is all finally running properly... the one tool i use for compositing in my pipeline that is AT LAST (and the last tool of its kind!!!!) 64 bit native.... WILL NOT RUN UNDER XP 64!!!! Which means that just because for reasons i absolutely ignore Adobe is forcing me to upgrade all operating systems on my network in order to finally benefit of what AE should have been able to do already for at least over a year! Wow! great marketting plan!
    So i'm asking two questions here... and excuse my lack of formality....
    1 -  ARE YOU FREAKIN KIDDING ME?????!!!!
    2 - What are my options if i want to upgrade to AE and Premiere cs5 in order to finally make a full use of those within the 64 bit pipeline (that all my other tools are already set up for ...for years!!!!) without having to spend s#itloads extra in operating systems and other consequent upgrades? Cause as much as i'm willing to go with the flow... i'm just fed up with wasting my money over political decisions ADOBE, AUTODESK, MICROSOFT and more are making just to squeeze a little more each time.
    pe@ce,
    Adriano Zanetti

    Obviously you did not really read my post, so i'm gonna make it more clear.
    I was forced to downgrade to XP pro 64 bit in order to follow what you call "progress", in order to use new tools, new releases, new possibilities, such a Nvidia PhysX related tools which would not run under Vista 64 at that time.
    Now instead of shooting in my legs and make me look like i belong to the prehistoric times, try to answer my question honestly and properly since you bother doing so. Not developping CS5 for XP 64 is either an agreement made with Microsoft, or a way to cut down costs on a development that was already a big fat money pit since it took ages to finally come up with a 64 bit version Premiere and AE, after YEARS of existence of 64 bit systems. You can try to make me look as dumb and bad as you want... but those are facts that don't make Adobe's purpose and motives look very neat.
    Now to read from a "community professional" that what i thought was my legitimate request as a commercial user and active member of the industry is basically irrelevant because "it's all my own fault"... wow!
    Now i don't have access to the same information you have it seems, but look at the amount of users who are still working in the caves like me running Win XP 64 for similar reasons and tell me if it is a considerate choice from Adobe to neglect them. As most professional in this business, i like to be informed and NOT FORCED! Seems fairly decent to expect from Adobe to be notified earlier... much earlier than on the release date of the upgrade that my set up will be obsolete!
    And for the very same reasons i did not renew my Autodesk subscriptions... i shall not upgrade to CS5 and will look an other way to find a cheaper more "personal/people" oriented solution, one where the support will not slap in my face "it's you own fault" like ADSK and Adobe do when you tickle relevant topics.
    Conclusion, i don't like it... and i don't feel i've put myself in this pinch, but thanks for your answer Mylenium, i'm one step closer to invest in The Foundry Nuke as a compositing solution and open source alternative for editing.
    Adriano

  • Is jsp runs under servlet container ?

    i heard that jsp converted into servlet and compiled at once when it is requested .jsp engine involving this converting process.
    is this file runs in same servlet container or any other jsp container?
    Thanks and regards,

    gunss wrote:
    i heard that jsp converted into servlet and compiled at once when it is requested .jsp engine involving this converting process.Yes. The JSP is parsed and converted into a .java file, which is then compiled into a .class file. It is a servlet, and it runs in the servlet container.
    is this file runs in same servlet container or any other jsp container?Where else would it run?
    %

Maybe you are looking for

  • ITunes is stuck in a loop "preparing apps to sync" Windows 8.1

    I am trying to restore a back up of my iPhone 4s on to a new 5s.  The sync application is stuck in an endless loop of "preparng apps to sync."  The program quits, starts again and stalls on "preparing apps to sync."

  • HT1586 What's the best HDMI switcher to use for Apple TV?

    What's the best HDMI switcher to use for Apple TV?  My widescreen TV has only one HDMI outlet and it is in use.  Thanks, Joanna

  • Audio won't copy

    I just upgraded to 10.4.4 and I am having trouble bacing up and copying .aiff files. I get error messages stating that the file does not exist or the file name id too long. This happens intermitently when I try to back up to external fire wire drives

  • My iPad screen suddenly started displaying weird colors

    Hello, well I was using Twitter on my iPad 3 when suddenly the screen started to got really weird. (The picture: https://twitter.com/rgonzalezagui/status/469652534236561408) I'm not sure if the pixels are dead now, I have never ever dropped my iPad,

  • Moving a rectangle - [CS2 VB Script]

    Hi I'm writing a scatter proof programme and I have no problem importing the graphics into separate graphic frames. The problem happens when I attempt to move each frame into position. I'm using this code:         For myCounter = 1 To UBound(myFileLi