search for: servlet

Displaying 20 results from an estimated 345 matches for "servlet".

2024 Mar 24
0
Problem 1: package resteasy-3.0.26-6.module_el8.4.0+595+e59c9af2.noarch from @System requires pki-servlet-4.0-api, but none of the providers can be installed
...367 kB/s | 28 kB 00:00 Extra Packages for Enterprise Linux 8 - Next - x86_64 75 kB/s | 35 kB 00:00 Error: Problem 1: package resteasy-3.0.26-6.module_el8.4.0+595+e59c9af2.noarch from @System requires pki-servlet-4.0-api, but none of the providers can be installed - package tomcat-servlet-4.0-api-1:9.0.62-30.el8.noarch from appstream obsoletes pki-servlet-4.0-api <= 1:9.0.50 provided by pki-servlet-4.0-api-1:9.0.30-3.module_el8.5.0+854+e1c92b81.noarch from @System - package tomcat-servlet-4.0-ap...
2006 Aug 22
4
Struggling with javac
I've installed jdk-1_5_0_08-linux-i586.rpm and Tomcat. Working through some initial test install programs, I am finding that I can't seem to compile .java files into classes. For instance... javac -classpath /usr/local/tomcat/common/lib/servlet.jar HelloWorld.java as instructed fails with a gij: unrecognized option -- `-classpath' Try `gij --help' for more information. So then I notice there is no servlet.jar file, but instead a servlet-api.jar.. I change the command and it fails with the same problem. Trying the command with...
2015 Mar 18
2
Need help for write rpm spec
Hi I am try to write rpm spec for install tomcat on a linux machine.But while build the rpm i found following error + /usr/lib/rpm/find-debuginfo.sh --strict-build-id /home/rpmbuild/BUILD/Install_tomcat-1.0 extracting debug info from /home/rpmbuild/BUILDROOT/Install_tomcat-1.0-1.el6.x86_64/usr/local/jdk1.7.0_13/lib/visualvm/profiler/lib/deployed/jdk16/linux-amd64/libprofilerinterface.so ***
2006 Jan 04
14
Rails on Tomcat or JBoss?
Hi all, The Rails book talks about running Rails under Apache, but is there a (relatively) easy way to deploy it to either Tomcat or JBoss? Is the CGI servlet the only option? Thanks, Ken -- Kenneth A. Kousen, Ph.D. President Kousen IT, Inc. <http://www.kousenit.com> http://www.kousenit.com <mailto:ken.kousen@kousenit.com> ken.kousen@kousenit.com -------------- next part -------------- An HTML attachment was scrubbed.....
2006 Jun 29
7
Ajax.Request abort question
im using an Ajax.Request to hit a java servlet and do some processing. during this time, if the user feels the process is taking too long, he/she can hit a cancel button to kill the request... by calling the *abort*function off of the transport, will that kill the processing that my server is doing as well or just make the client think that...
2004 Apr 30
2
Servlet streamed Ogg skips
I am writing a J2EE servlet based web application that delivers streamed audio from a database. In response to a web request it responds with an M3U file containing a link back to a servlet that delivers the audio. I am testing this with WinAmp configured as the media player. The browser properly starts WinAmp which the...
2006 Jan 16
2
Basic (newbie) Webrick / ssl config question
I have a simple Intranet app I want to make accessible via the Internet for remote access by our employees. I want to use ssl (https) connections and I''ve found enough messages to imply Webrick as included in rails can do the job. The message at http://wrath.rubyonrails.org/pipermail/rails/2005-January/001993.html even appears to tell me exactly how to do it by modifying
2015 Feb 13
0
Dovecot FTS Sor Error
...equestHandler.java:99) at org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(ContentStreamHandlerBase.java:74) at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:135) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1967) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:777) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:418) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:207) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(Servlet...
2008 Sep 14
3
Using R from Java
Hello, I am interesting in using R from a web application, for basic statistics and plots. The server is Java-based (tomcat). The simplest solution is a system call that generates the text or the image, then the servlet forwards the output. This can be done from any language, but it is quite inelegant and slow for the initialization time. Is there any package or approach for accessing R from a Java servlet you can suggest? Thanks in advance for any suggestion. Regards, -Marzio -- http://marzio.sala.googlepage...
2005 Jun 24
1
R servlet engine ?!!!
I use CGIwithR to run a website that executes R scripts under cgi-bin. Are there any projects that implement a work frame using R similar to Java's servlet engine? Initialization times are hurting. Can initialize once process and treat all web requests as threads of this process? Any help with this subject is greatly appreciated.
2005 Jun 05
5
Problem with Java applications
...eady in use, but it is not! By accident I found out that if I issue a shorewall clear (stop doesn''t work) before starting crushftp the server comes up immediately. Due to the fact that I use ftp rather seldom it was no problem for me to wait 2 minutes. Currently I work on a project with a servlet container (jetty) and an ftp-servlet (UnlimitedFTP) on another SuSE 9.2 host. Basicly the same problems occur with java apps and shorewall. When I try to stop jetty without first doing a shorewall clear jetty crashes. In addition the ftp-servlet works more smoothly and faster without shorewall enab...
2004 May 05
5
cgi/servlets/httpd in R
Hi R-helpers Has anyone had any experience doing CGI or Servlets or using an httpd server in R? Context: we are interested in running dynamic demographic calculations on the internet (life tables, and such) in response to form submissions. I might do simple cgi to get started, but loading in data each time seems like it would be quite, quite slow. I ha...
2006 Mar 26
3
Charts and Java servers
...ramework is straightforward on the two platforms we''ve tried (Windows and Mac OS X). However, the charting components available, relying on ImageMagick or GraphicsMagick seem less clear cut. OS X was no problem - but Windows XP proved tricky. The other option we considered was using a Java servlet on Tomcat to provide the charts (using JChart or something). Is there a way within a Rails controller (for example) to proxy a call to another server (on port 8080 in this case) within the firewall, to return a resource (a generated image). Obviously we don''t want to embed an <img> l...
2006 Aug 08
12
Rails (internals) architectural question
Hi Another newbe here..... I was wondering if someone could please help me understand the controllers/view inner working in Production 1. If xxx_controller.rb is only loaded once does it mean there is only one instance of Controller serving all requests? 2. If only one instance of controller is there then how are controllers instance variables protected from data corruption when serving multiple
2010 Jan 08
1
java.lang.OutOfMemoryError: PermGen space issue with Windows 2003 xVM domu with Tomcat
...m Here is the exact error user gets: *HTTP Status 500 -* ------------------------------------------------------------------------ *type* Exception report *message* *description* _The server encountered an internal error () that prevented it from fulfilling this request._ *exception* javax.servlet.ServletException: AMSetupFilter.doFilter com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:117) *root cause* javax.servlet.ServletException: Servlet execution threw an exception com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:91) *root cause* java.lang.OutOfMem...
2004 Aug 06
5
Java Examples
Where should I look for an example of how to connect to Icecast from Java? (I have a MySQL/Tomcat application with MP3's in the DB and need to stream them using Java and Icecast.) Thanks, Mike D. _________________________________________________________________ Discover the best of the best at MSN Luxury Living. http://lexus.msn.com/
2013 Apr 28
3
Dovecot Solr Panic
...at org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(ContentStreamHandlerBase.java:54) at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:131) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1317) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:338) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:241) at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157) at org.mortbay.jetty.servlet.ServletHandler....
2002 Jun 13
1
saving a global workspace?
...stom R function and saved it in the workspace. in my homedir, i noticed the file named .RData was created. i also noticed my workspace is ONLY restored if the current working dir (when i run R) is the one with that file in it. i finally wanted to move my command-line driven Java code to become a servlet. the servlet works fine if i call built-in R commands like "mean" and pass it variables (i can even receive the results from the R call). however, when i attempt to call my saved function, R crashes (and also termintes my servlet engine!). is there a way to save to a global workspace...
2011 Feb 25
0
RCurl Post
...content=\"text/html; charset=ISO-8859-1\"/>\n<title>Error 500 null</title>\n</head>\n<body><h2>HTTP ERROR 500</h2>\n<p>Problem accessing /db/new. Reason:\n<pre> null</pre></p><h3>Caused by:</h3><pre>javax.servlet.ServletException: null\n\tat com.erm.web.NewDistServlet.doPost(NewDistServlet.java:107)\n\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:727)\n\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:820)\n\tat org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)\...
2012 Apr 12
0
CentOS-announce Digest, Vol 86, Issue 7
...f21141015d3916ec98addfc8d2dd41e89d0b680dd7f4938b0af tomcat5-jsp-2.0-api-javadoc-5.5.23-0jpp.31.el5_8.i386.rpm 6ca2b63866656bb8f9f770fb512191dba0880b39288fe3a60f1198fbb9968b93 tomcat5-server-lib-5.5.23-0jpp.31.el5_8.i386.rpm 2453bd661c35aa866f773add148258255a4a23ce4d56937c7e358f36b651b161 tomcat5-servlet-2.4-api-5.5.23-0jpp.31.el5_8.i386.rpm e784ecf1cca6810ee234e8aa6668df952db59efcaf8387dccc612f0f8df91e33 tomcat5-servlet-2.4-api-javadoc-5.5.23-0jpp.31.el5_8.i386.rpm 22e71457a2a5af9dbbaf33467e0f0f2f925758e9e4ee1a8f9872039e8ccb9f41 tomcat5-webapps-5.5.23-0jpp.31.el5_8.i386.rpm x86_64: e38d54727cda...