Prev: file loading
Next: Free Online Subversion Training
From: sangeeta chowdhary on 14 Apr 2010 00:01 On Apr 14, 1:33 am, Lew <l...(a)lewscanon.com> wrote: > sangeeta chowdhary quoted the sig: > > >> -- > >> Lew > > Please do not quote sigs. > > Lew wrote: > >> What happens if you eliminate the 'onClick' from the input button? > > sangeeta chowdhary wrote: > > If i [sic] remove onClick button then it will not validate the form. > > Not on the client side, no, it won't, but that doesn't matter a whit. > Sometimes when you are diagnosing the problem you have to try things > that you know won't stay in the final version, but are necessary to > understand the situation. > > I ask again, what happens if you eliminate the 'onClick' from the > input button? I mean, with respect to the bug you're hunting, of > course. I wonder (because I do not know) if somehow the JS is forcing > a GET instead of a POST. OTOH, you handle GET, so I'm mystified. > > I really don't see in your code how that error 405 can happen, so I'm > taking shots in the dark. > > -- > Lew Good Morning sir, Thanks for your reply. i have tried what you have asked me for,but now its giving error- Address not found: You tried to access the address http://localhost:8080/musicStore/catalog/registerUser, which is currently unavailable. Please make sure that the Web address (URL) is correctly spelled and punctuated, then try reloading the page. Make sure your Internet connection is active and check whether other applications that rely on the same connection are working. Check that the setup of any Internet security software is correct and does not interfere with ordinary Web browsing. If you are behind a firewall on a Local Area Network and think this may be causing problems, talk to your systems administrator. Try pressing the F12 key on your keyboard and disabling proxy servers, unless you know that you are required to use a proxy to connect to the Internet. Reload the page. Need help? Open the Opera Help. Go to Opera's online support desk.
From: sangeeta chowdhary on 14 Apr 2010 00:14 On Apr 14, 6:31 am, "John B. Matthews" <nos...(a)nospam.invalid> wrote: > In article > <a0c92b45-c9b8-435f-82b1-e387df898...(a)b23g2000yqn.googlegroups.com>, > > > > > > Lew <l...(a)lewscanon.com> wrote: > > sangeeta chowdhary quoted the sig: > > >> -- > > >> Lew > > > Please do not quote sigs. > > > Lew wrote: > > >> What happens if you eliminate the 'onClick' from the input button? > > > sangeeta chowdhary wrote: > > > If i [sic] remove onClick button then it will not validate the form. > > > Not on the client side, no, it won't, but that doesn't matter a whit. > > Sometimes when you are diagnosing the problem you have to try things > > that you know won't stay in the final version, but are necessary to > > understand the situation. > > > I ask again, what happens if you eliminate the 'onClick' from the > > input button? I mean, with respect to the bug you're hunting, of > > course. I wonder (because I do not know) if somehow the JS is > > forcing a GET instead of a POST. OTOH, you handle GET, so I'm > > mystified. > > If doGet() was a late addition, I'd wonder if the servlet container > needs to be restarted or the context reloaded. Using Tomcat, I've become > accustomed to the convenience of Manager App: > > <http://tomcat.apache.org/tomcat-6.0-doc/manager-howto.html> > > > I really don't see in your code how that error 405 can happen, so I'm > > taking shots in the dark. > > -- > John B. Matthews > trashgod at gmail dot com > <http://sites.google.com/site/drjohnbmatthews> good morning sir, thanks for your reply. i have tried what you have asked to do,now i am getting this error- Address not found: You tried to access the address http://localhost:8080/musicStore/catalog/registerUser, which is currently unavailable. Please make sure that the Web address (URL) is correctly spelled and punctuated, then try reloading the page. Make sure your Internet connection is active and check whether other applications that rely on the same connection are working. Check that the setup of any Internet security software is correct and does not interfere with ordinary Web browsing. If you are behind a firewall on a Local Area Network and think this may be causing problems, talk to your systems administrator. Try pressing the F12 key on your keyboard and disabling proxy servers, unless you know that you are required to use a proxy to connect to the Internet. Reload the page. Need help? Open the Opera Help. Go to Opera's online support desk.
From: Lew on 14 Apr 2010 07:55 sangeeta chowdhary wrote: > i [sic] have tried what you have asked to do,now i [sic] am getting this error- > > Address not found: > > You tried to access the addresshttp://localhost:8080/musicStore/catalog/registerUser, > which is currently unavailable. Please make sure that the Web address > (URL) is correctly spelled and punctuated, then try reloading the > page. That says the app server isn't running, or else not on port 8080, or else the "musicStore" app is not running. -- Lew
From: Lew on 14 Apr 2010 17:50 sangeeta chowdhary quoted: >>>>> -- >>>>> Lew Lew wrote: >>> Please do not quote sigs. sangeeta chowdhary quoted: >> -- >> John B. Matthews >> trashgod at gmail dot com >> <http://sites.google.com/site/drjohnbmatthews> Please do not quote sigs. -- Lew Please do not quote sigs.
From: Arne Vajhøj on 18 Apr 2010 21:51
On 13-04-2010 21:31, John B. Matthews wrote: > If doGet() was a late addition, I'd wonder if the servlet container > needs to be restarted or the context reloaded. Using Tomcat, I've become > accustomed to the convenience of Manager App: > > <http://tomcat.apache.org/tomcat-6.0-doc/manager-howto.html> Me too. Especially if called from build.xml it is very convenient. Arne |