Use jakarta fileupload

Hello!
I'm using java studio creator 2 update 1, and i'm using fileupload of jakarta, and i need to send a file to a ftp, but i don't undersant how to do this...
DiskFileUpload upload = new DiskFileUpload();
upload.setSizeMax(50*1024*1024); //50Mb
upload.setRepositoryPath("c:/temp");
i don't know how to continue...
Someone have an example of this component?

Did you try the FileUpload component comes bundled with Creator 2U1.
- Winston
http://blogs.sun.com/winston

Similar Messages

  • Can't use Jakarta FileUpload in JSF?

    I am trying to use Jakarta FileUpload for uploading a file to server database. It works fine in JSP. However, when I migrate the system to JSF, it does not work again. I can find that the request type seems that is different. In JSP, the request received by Servlet is SRTServletRequest. In JSF, it is MultiPartExternalContextImpl$MultiPartServletRequestWrapper.
    When I trace the fileupload class in JSF, the jakarta fileupload cannot parse the request to List object and finally, fail to get the file(s).
    My question is, can I parse the "JSF request" to get the file(s)? If not, how can I change the request type?
    I know that there is a fileupload package in JSF, however, can it upload the file by inputstream (memory in server) only, rather than need to upload the file at a server (second storage in server) first?
    Thanks for any reply.

    I use file upload of myFaces extensions with Sun JSF RI.
    I did the following steps:
    1) Added: Tomahawk.jar to "lib" folder.
    2) Added myFaces apache filter to "web.xml". Take a look here: http://myfaces.apache.org/tomahawk/extensionsFilter.html.
    3) Added upload field to the form:
    for example:
    <t:inputFileUpload
    id="themeFile"
    value="#{themeBean.themeFile}"
    storage="file"
    required="true"
    validator="#{themeBean.validateThemeFileName}"
    style="width:100%" />
    4) Add to your Bean the following member (with setter and getter):
    private UploadedFile themeFile;
    5) On the "save" action of the form add the following code in order to extract the uploaded file:
    InputStream in = new BufferedInputStream(
    themeFile.getInputStream()); // This is the uploaded file
    BufferedOutputStream os =
    new BufferedOutputStream(new FileOutputStream(newFile)); // newFile is the file you would like to store on the server
    byte[] data = new byte[BUFFER_SIZE];
    int readSize;
    while ((readSize = in.read(data, 0, BUFFER_SIZE)) != -1)
    os.write(data, 0, readSize);
    in.close();
    os.close();
    Hope it helps . . .

  • Maximum file size using htmlb:fileUpload

    Hello Gurus,
    in a bsp application we are using htmlb:fileUpload. It was possible to upload a 43 MB file without problem. But our maximum file size is about 220 MB. We made a test with a 190 MB file. After we hit the post button, the browser disconnects immediately (without timedelay) with the message: page cannot be displayed.
    for me it looks like we hit some restriction.
    any idears how to manage the 220 MB file in the browser beside splitting it into smaller files would be greatly appreciated.
    thx a lot in advance and regards from
    Michael

    Hello again,
    could it be this parameter which is for the limitation responsible ?
    icm/HTTP/max_request_size_KB   = 102400
    thx and best regards from Michael

  • Use rich:fileUpload/ to enable/disable my buttons with checking file names

    Hello!
    I need to upload some files with using <rich:fileUpload>,and i did it but i need to check file names for some reasons and enable or disable upload button but my problem is that when i open my modal panel and click add button of <rich:fileUpload> and then add upload button of <rich:fileUpload>(not my upload button but upload button wich <rich:fileupload> has) i check file name but the button is not enable/disable until i close my modal panel and open it agin,so i need to know how to modify my code to make it work?
    <rich:modalPanel  id="uploadFile" autosized="true" resizeable="false">
                    <f:facet name="header">
                     <h:panelGroup>
                         <h:outputText value="uploadFiles"></h:outputText>
                     </h:panelGroup>
                 </f:facet>
                 <h:form>
                      <rich:fileUpload  maxFilesQuantity="#{uploadBean.maxUploadFiles}" allowFlash="true" fileUploadListener="#{uploadBean.uploadListener}" immediateUpload="false"/>
                             <table>
                                <tr>
                                     <td><h:commandButton disabled="#{!uploadBean.xlsNameValid}" rendered="#{!uploadBean.admin}"  action="#{uploadBean.upload}" value="upload" /></td>
                                     <td><h:commandButton action="#{uploadBean.clearFiles}" value="cancel" id="cancel"/></td>
                                </tr>           
                           </table>
                 </h:form>
                 <rich:componentControl for="uploadFile" attachTo="cancel" operation="hide" event="onclick"/>
              </rich:modalPanel>

    No the problem is that file is being checked on server side, but if file is invalid the button Upload(my button ,not standart rich:fileUpload) must be disbaled,and shown,but i have to close this modal panel and open it again to see my button enabled/disabled

  • Importing Hotmail Address Book using Jakarta HttpClient

    Hi,
    I am using jakarta httpclient to import hotmail address book. For that i am loading the login form first and then retrieving dynamic parameters and then posting the form for authentication of user.
    I am unable to authenticate user after posting the form , it redirects me to the login page.
    Can somebody help me to figure out what i am missing in my code??
    Following is the code i have written so far:
    (To run java one will need to enter hotmail emailId and password in the loginData)
    package msn.contacts.fetcher;
    import java.io.InputStream;
    import org.apache.commons.httpclient.Header;
    import org.apache.commons.httpclient.HttpClient;
    import org.apache.commons.httpclient.HttpStatus;
    import org.apache.commons.httpclient.NameValuePair;
    import org.apache.commons.httpclient.cookie.CookiePolicy;
    import org.apache.commons.httpclient.methods.GetMethod;
    import org.apache.commons.httpclient.methods.PostMethod;
    import org.cyberneko.html.parsers.DOMParser;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.InputSource;
    public class MSNContactsFetcher {
         private String msnLoginUrl = "http://login.live.com/login.srf";
         public void login(){
              HttpClient httpClient = new HttpClient();
              httpClient.getParams().setCookiePolicy(CookiePolicy.BROWSER_COMPATIBILITY);
              int statusCode = -1;
              InputStream responseStream = null;
              DOMParser parser = null;
              InputSource source = null;
              try{
                   GetMethod loadForm = new GetMethod(msnLoginUrl);
                   loadForm.setFollowRedirects(true);
                   statusCode = httpClient.executeMethod(loadForm);
                   /*Header[] headers = loadForm.getResponseHeaders();
                   for(int i= 0;i<headers.length;i++){
                        System.out.println("Header name:: " + headers.getName() + " value::: " + headers[i].getValue());
                   System.out.println("Hotmail Status Code::: " + statusCode );          
                   if(statusCode == HttpStatus.SC_OK){
                        System.out.println("Hotmail Login Form Loaded Successfully");
                        System.out.println(loadForm.getResponseBodyAsString());
                        //System.exit(1);
                        String PPFT = null;
                        String PPSX = null;
                        String loginFormAction;
                        parser = new DOMParser();
                        responseStream = loadForm.getResponseBodyAsStream();
                        source = new InputSource(responseStream);
                        parser.parse(source);
                        Node form = parser.getDocument().getElementsByTagName("form").item(0);
                        NamedNodeMap attributes = form.getAttributes();
                        String formAction = attributes.getNamedItem("action").getNodeValue();
                        System.out.println("Form action ::: " + formAction);
                        NodeList inputElements = parser.getDocument().getElementsByTagName("input");
                        Node inputNode;
                        String name;
                        for(int i=0;i<inputElements.getLength();i++){
                             inputNode = inputElements.item(i);
                             name = inputNode.getAttributes().getNamedItem("name").getNodeValue();
                             //System.out.println(name + " " + inputNode.getAttributes().getNamedItem("value").getNodeValue() );
                             if(name.equals("PPFT")){
                                  PPFT = inputNode.getAttributes().getNamedItem("value").getNodeValue();
                             else if(name.equals("PPSX")){
                                  PPSX = inputNode.getAttributes().getNamedItem("value").getNodeValue();
                             else if(PPFT != null && PPSX!= null)
                                  break;
                             else
                                  continue;
                        System.out.println("PPFT::: " + PPFT + " PPSX::: " + PPSX );
                        NameValuePair[] loginData = {
                                  new NameValuePair("PPSX",PPSX),
                                  new NameValuePair("PwdPad","IfYouAreReadingThisYouHaveTooMuc"),
                                  new NameValuePair("login","<emailId>"),
                                  new NameValuePair("passwd","<password>"),
                                  new NameValuePair("LoginOptions","3"),                              
                                  new NameValuePair("PPFT",PPFT)                              
                        PostMethod postLoginForm = new PostMethod(formAction);                         
                        postLoginForm.setRequestBody(loginData);
                        httpClient.executeMethod(postLoginForm);
                        statusCode = postLoginForm.getStatusCode();
                        System.out.println("Status Code::: " + statusCode);
                        String responseString = postLoginForm.getResponseBodyAsString();
                        System.out.println("Response string:: " + responseString);
              }catch(Exception ex){
                   System.out.println("Exception Occurred -->> " + ex.getMessage());
                   ex.printStackTrace();
         public static void main(String[] args) {
              System.getProperties().setProperty("httpclient.useragent", " Mozilla/5.0 (Win98; I;Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4");
              System.setProperty("org.apache.commons.logging.Log","org.apache.commons.logging.impl.SimpleLog");
              System.setProperty("org.apache.commons.logging.simplelog.showdatetime","true");
              System.setProperty("org.apache.commons.logging.simplelog.log.httpclient.wire.header","debug");
              MSNContactsFetcher msn = new MSNContactsFetcher();
              msn.login();

    are you having issues with the initial login, or is hotmail successfully taking your information, but failing to remember it when you access more of the site for address book information gathering?
    If the first part is happening, you're probably not setting up your connection within a SSL environment correctly (I'm only guessing that's what hotmail uses, as I'm not a hotmail user). There's plenty of documentation on apache's jakarta site on how to do this/troubleshoot it.
    If you're connecting, and it's not holding the information, then the cookie storing is not set up right. In that case, you may want to post a new topic more specifically relating to cookies (probably want to do it in the networking section of these forums, as it's far more pertinent there).
    I wish I could help you more, but I am far more familiar with instantiating web connections via the UrlConnection class, and not with the Jakarta Commons libraries. :(

  • Should I install Apache Web server to use Jakarta Tomcat Servlet engine?

    Hello,
    I have some problems and now have a question:
    Should I install Apache Web server to use Jakarta Tomcat Servlet engine?
    JTK home page is available via http://localhost:8080
    Tomcat ver 3.1.3
    Thanks.

    No, you don't need to run Apache webserver (httpd) to run Tomcat. Tomcat by default runs on port 8080, but you can set it to any port, including 80, if you have permission to do so (on *nix systems, you need root permissions to run services on any port below 1024).
    Tomcat is a webserver as well, just one that includes a servlet container and JSP processor. So it will serve your html files, images, etc (aka static content), just as well as Apache httpd, in addition to being able to run servlets and JSPs.
    Apache httpd has more options for serving static content than Tomcat, so many people prefer to use it as their main webserver and only use Tomcat as a sort of "plugin" to handle servlets and JSPs. This can be achieved through a connector. Instructions on how to set this up are on the Jakarta website.
    So you could use Apache and Tomcat combined, next to each other, or totally separated. In many cases, just Tomcat will do.

  • Help in mutlipart post FIle Upload using Apache FileUpload

    Hi there,
    I am using the FileUpload class of Apache and getting an issue when I try to write the multipart post data (file) into a physical disk on the server. I am attaching herewith the servlet code. The error I get when I compile the code is:
    Information: 1 error
    Information: 0 warnings
    Information: Compilation completed with 1 errors and 0 warnings
    C:\unzipped\commons-fileupload-1.0-src\commons-fileupload-1.0\src\java\FileUpload.java
    Error: line (80) write(java.io.File) in org.apache.commons.fileupload.FileItem cannot be applied to (java.lang.String)
    C:/unzipped/commons-fileupload-1.0-src/commons-fileupload-1.0/src/java/FileUpload.java:80: write(java.io.File) in org.apache.commons.fileupload.FileItem cannot be applied to (java.lang.String)
    Any help would be greatly appreciated.
    Thanks
    John

    are you calling the writeFile method trying to pass a String instead of a File object?

  • Uploading a file to server using servlet (Without using Jakarta Commons)

    Hi,
    I was trying to upload a file to server using servlet, but i need to do that without the help of anyother API packages like Jakarta Commons Upload. If any class for retrieval is necessary, how can i write my own code to upload from client machine?.
    From
    Velu

    <p>Why put such a restriction on the solution? Whats wrong about using that library?
    The uploading bit is easy - you put a <input type="file"> component on the form, and set it to be method="post" and enctype="multipart/form-data"
    Reading the input stream at the other end - thats harder - which is why they wrote a library for it. </p>
    why i gave the restriction is that, i have a question that <code>'can't we implement the same upload'</code>
    I was with the view that the same can be implemented by our own code right?

  • .doc to pdf using jakarta tomcat POI

    Hi
    I need to convert my test.doc file in to
    test.pdf.I found a API jakarta tomcat POI project handling file systems
    1) is it possible to do that?(test.doc convert to test.pdf)
    2) do i have to use POIFS API or HSSF API HPSF API?which API
    3) do i have to use a jar file which i can add to class path?
    4) Is there place where i can see a simple example for file type convertion
    Thanks
    Suda

    Asking the same question in the same way with a different subject will not get it
    answered any faster...
    http://forum.java.sun.com/thread.jsp?forum=31&thread=330932&tstart=0&trange=15
    As a matter of fact, I HATE when people do that....
    If anyone knew the answer and wanted to get the duke dollars (if any)
    (suggest you offer some)
    then they would answer... the FIRST time.
    The answer to your question seems to be:
    1) DO SOME RESEARCH!
    2) RTFM!
    3) WRITE SOME TESTS
    4) READ/STUDY THE API

  • Using Jakarta HttpClient API for HTTPS file upload

    Any code sample on how to upload a file via the Jakarta HttpClient API?
    I tried the PostMethod, not sure I used it right, got response msg from the server response code 301, which indicated the file had been permanently moved. What did that mean? Besides, I didn't see PutMethod have a way to specify the target uploaded file filename, it only take a File object.
    Tried the PutMethod as well, but the method I though I can use was "depreciated".
    Any idea?
    jml

    I did. The sample code use the PutMethod and specify the file object. But when I use the similar code, I got 301, which means "File permanently moved". Not sure what that mean.
    jml

  • Test.doc to test.pdf using jakarta tomcat POI

    Hi
    I need to convert my test.doc file in to
    test.pdf.I found a API jakarta tomcat POI project handling file systems
    1) is it possible to do that?(test.doc convert to test.pdf)
    2) do i have to use POIFS API or HSSF API HPSF API?which API
    3) do i have to use a jar file which i can add to class path?
    4) Is there any place where i can see a simple example for file type convertion
    Thanks for your help
    Suda

    This should help some.
    This code converts word to text.
    Did it two days ago. No shizerat.
    You'll need to download the hdf code from
    the "scratch section" of the poi site- which is how I got it to work.
    import java.io.*;
    import org.apache.poi.hpsf.*;
    import org.apache.poi.poifs.eventfilesystem.*;
    public class PoiTest {
    public static void main(String[] args)
    throws IOException
    final String filename = args[0];
    POIFSReader r = new POIFSReader();
    r.registerListener(new MyPOIFSReaderListener(),
    "\005SummaryInformation");
    r.read(new FileInputStream(filename));
    // create temp file of content
    String curDir=System.getProperty("user.dir");
    String pathSep=System.getProperty("file.separator");
    String tempF=curDir+pathSep+"temp.txt";
    testDoc td=new testDoc(filename, tempF);
    td.getText();
    } // end of class PoiTest
    -----------Shizzy code, I know - but it worked for me----
    ----this is my docTest class I wrote to make it easy--
    to get word into a text file---------------------------------------
    import org.apache.poi.hdf.extractor.util.*;
    import org.apache.poi.hdf.extractor.data.*;
    import org.apache.poi.hdf.extractor.*;
    import java.util.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import org.apache.poi.poifs.filesystem.POIFSFileSystem;
    import org.apache.poi.poifs.filesystem.POIFSDocument;
    import org.apache.poi.poifs.filesystem.DocumentEntry;
    import org.apache.poi.util.LittleEndian;
    class testDoc {
    String origFileName;
    String tempFile;
    WordDocument wd;
    testDoc(String origFileName, String tempFile) {
    this.tempFile=tempFile;
    this.origFileName=origFileName;
    public void getText() {
    try {
    wd = new WordDocument(origFileName);
    Writer out = new BufferedWriter(new FileWriter(tempFile));
    wd.writeAllText(out);
    out.flush();
    out.close();
    catch (Exception eN) {
    System.out.println("Error reading document:"+origFileName+"\n"+eN.toString());
    } // end for getText
    } // end of class

  • How to read .doc files using jakarta POI api......

    Hi all,
    I've googled a lot on reading the file contents of an MS word file. I couldn't get a solution yet. Can you please give some sample codes for using the POI api for extracting only the text contents from an MS word file.
    Thanks and Regards,

    whenever i click the folders, it's taking
    to the internal folders. but there's no
    option to download the whole package.Thats because you're looking at a tool which displays the contents of an svn repository through a web site.
    What you need is a subversion client (the repository is a subversion repository).
    There are several easy to use clients available:
    Here's two:
    1) subclipse: If you use eclipse. Dammed great tool IMHO. http://subclipse.tigris.org/
    2) tortoise svn http://tortoisesvn.tigris.org/
    When you've got a client, you'll need to give it a repository URL from which to check out.
    For the POI project, that URL is http://svn.apache.org/repos/asf/jakarta/poi/trunk/
    ~D

  • Loading remote EJB from servlet using jakarta and openejb

    I am trying to create an environment where I use
    openejb as my EJB container, and JAKARTA Tomcat
    as my
    Servlet/JSP container. However,
    i'm having a problem in lookingup my remote EJB from my
    jakarta application.
    That exact code works perfectly if I run it standalone. I
    am using the same JRE. Jakarta has also loaded the
    openejb-0.8.3.jar and openejb_client-0.8.3.jar
    What I dont understand is why jakarta
    would behave differently than command-line java when I
    am
    running in the same JRE on a single machine.
    Any help would be much appreciated.

    Several fairly major improvements have been maid in OpenEJB specifically for the Tomcat people. For one, the whole way you integrate them has completely been rewritten. Now all you have to do is copy a openejb_loader-0.9.1.war into the Tomcat webapps directory and change an init-param in it. Pretty straight forward. OpenEJB 0.8.3 won't work with Tomcat in the same VM, however OpenEJB 0.9.0 and up have been totally revamped in all things related to classloading so that it can co-exist with Tomcats unique classloading architecture.
    O'Reilly just published an article detailing the ins and outs of the integration, it's a pretty good read:
    http://www.onjava.com/pub/a/onjava/2003/02/12/ejb_tomcat.html

  • Javax.servlet.ServletException: 55.0 when using Jakarta Request taglib in WL7.0 SP2

              Hi,
              We are converting our application from iPlanet (SunOne) to WL7.0.
              I get the following error when tag library is used in our jsp file.
              The tag library is jakarta Request library.
              Any suggestions on how to debug this ?
              Thank you,
              Robert
              Use of the tag lib:
              ==============
              <%@ taglib prefix="req" uri="/WEB-INF/tlds/taglibs-request.tld" %>
              <req:existsParameter name="nextPage">
              <req:setAttribute name="currentPage"><req:parameter name="nextPage"/></req:setAttribute>
              The error message.
              ==============
              javax.servlet.ServletException: 55.0
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:450)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:445)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:543)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:369)
              at com.standardandpoors.framework.presentation.XslJspView.generateView(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean.process(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              at com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost(CcrermfControllerServlet.java:298)
              at com.standardandpoors.framework.controller.SpControllerServlet.service(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.service(CcrermfControllerServlet.java:127)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              <Jul 11, 2003 12:31:46 PM EDT> <Info> <EJB> <010051> <EJB Exception during invocation
              from home: com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_HomeImpl@3e49a8
              threw exception: com.standardandpoors.SpException
              com.standardandpoors.SpException
              at com.standardandpoors.framework.controller.PresentationControllerBean.process(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              at com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost(CcrermfControllerServlet.java:298)
              at com.standardandpoors.framework.controller.SpControllerServlet.service(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.service(CcrermfControllerServlet.java:127)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              >
              java.rmi.RemoteException: EJB Exception: ; nested exception is:
              com.standardandpoors.SpException
              com.standardandpoors.SpException
              at com.standardandpoors.framework.controller.PresentationControllerBean.process(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              at com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost(CcrermfControllerServlet.java:298)
              at com.standardandpoors.framework.controller.SpControllerServlet.service(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.service(CcrermfControllerServlet.java:127)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              <Jul 11, 2003 12:31:46 PM EDT> <Info> <EJB> <010051> <EJB Exception during invocation
              from home: com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_HomeImpl@3e49a8
              threw exception: com.standardandpoors.SpException
              com.standardandpoors.SpException
              at com.standardandpoors.framework.controller.PresentationControllerBean.process(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              at com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost(CcrermfControllerServlet.java:298)
              at com.standardandpoors.framework.controller.SpControllerServlet.service(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.service(CcrermfControllerServlet.java:127)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              >
              java.rmi.RemoteException: EJB Exception: ; nested exception is:
              com.standardandpoors.SpException
              com.standardandpoors.SpException
              at com.standardandpoors.framework.controller.PresentationControllerBean.process(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              at com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost(CcrermfControllerServlet.java:298)
              at com.standardandpoors.framework.controller.SpControllerServlet.service(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.service(CcrermfControllerServlet.java:127)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              java.rmi.RemoteException: EJB Exception: ; nested exception is:
              com.standardandpoors.SpException
              com.standardandpoors.SpException
              at com.standardandpoors.framework.controller.PresentationControllerBean.process(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              at com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost(CcrermfControllerServlet.java:298)
              at com.standardandpoors.framework.controller.SpControllerServlet.service(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.service(CcrermfControllerServlet.java:127)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              [11/Jul/2003 12:31:43:373] debug: |XslJspView|generateView|ExecuteThread: '12'
              for queue: 'default'|4|Dispatcher.include is executed.
              [11/Jul/2003 12:31:43:373] debug: |com.standardandpoors.framework.presentation.TransformEngine|transform|ExecuteThread:
              '12' for queue: 'default'|4|Entered transform()
              [11/Jul/2003 12:31:43:373] debug: |com.standardandpoors.framework.presentation.TransformEngine|transform|ExecuteThread:
              '12' for queue: 'default'|4|.====. 1
              [11/Jul/2003 12:31:43:373] debug: |com.standardandpoors.framework.presentation.TransformEngine|transform|ExecuteThread:
              '12' for queue: 'default'|4|.---. 2
              [11/Jul/2003 12:31:43:373] debug: |com.standardandpoors.framework.presentation.TransformEngine|transform|ExecuteThread:
              '12' for queue: 'default'|4|.. 3
              [11/Jul/2003 12:31:43:433] debug: |com.standardandpoors.framework.presentation.TransformEngine|transform|ExecuteThread:
              '12' for queue: 'default'|4|.. 4
              [11/Jul/2003 12:31:44:84] debug: |com.standardandpoors.framework.presentation.TransformEngine|transform|ExecuteThread:
              '12' for queue: 'default'|4|returning from transform()
              [11/Jul/2003 12:31:44:94] debug: |XslJspView|generateView|ExecuteThread: '12'
              for queue: 'default'|4|>>> Before including /loans/loansPostBody.jsp
              [11/Jul/2003 12:31:46:808] info: |XslJspView|generateView|ExecuteThread: '12'
              for queue: 'default'|3|javax.servlet.ServletException: 55.0
              [11/Jul/2003 12:31:46:838] info: |PresentationControllerBean|process|ExecuteThread:
              '12' for queue: 'default'|3|----exception handled due to Response Fail
              [11/Jul/2003 12:31:46:838] info: |PresentationControllerBean|process|ExecuteThread:
              '12' for queue: 'default'|3|----------Using error page =SevereError.jsp
              [11/Jul/2003 12:31:46:848] error: |PresentationControllerBean|process|ExecuteThread:
              '12' for queue: 'default'|1|java.lang.IllegalStateException: Cannot forward a
              response that is already committed
              at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:136)
              at com.standardandpoors.framework.controller.PresentationControllerBean.process(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              at com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost(CcrermfControllerServlet.java:298)
              at com.standardandpoors.framework.controller.SpControllerServlet.service(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.service(CcrermfControllerServlet.java:127)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              [11/Jul/2003 12:31:46:848] info: |com.standardandpoors.framework.servlets.controller.SpControllerServlet|doPost|ExecuteThread:
              '12' for queue: 'default'|3|------------3
              [11/Jul/2003 12:31:46:848] info: |com.standardandpoors.framework.servlets.controller.SpControllerServlet|doPost|ExecuteThread:
              '12' for queue: 'default'|3|@@@@Notice: Exception was handled by displaying errorPagejava.rmi.RemoteException:
              EJB Exception: ; nested exception is:
              com.standardandpoors.SpException
              [11/Jul/2003 12:31:46:858] error: |com.standardandpoors.framework.servlets.controller.SpControllerServlet|doPost|ExecuteThread:
              '12' for queue: 'default'|1|java.rmi.RemoteException: EJB Exception: ; nested
              exception is:
              com.standardandpoors.SpException
              com.standardandpoors.SpException
              at com.standardandpoors.framework.controller.PresentationControllerBean.process(Unknown
              Source)
              at com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              at com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost(CcrermfControllerServlet.java:298)
              at com.standardandpoors.framework.controller.SpControllerServlet.service(Unknown
              Source)
              at com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.service(CcrermfControllerServlet.java:127)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              [11/Jul/2003 12:31:46:858] info: |com.standardandpoors.ccrermf.controller.CcrermfControllerServlet|doPost|ExecuteThread:
              '12' for queue: 'default'|3|mRequestNameString=ListAllLoans
              <Jul 11, 2003 12:32:21 PM EDT> <Info> <Management> <140009> <Configuration changes
              for domain saved to the repository.>
              

    Can you provide a little more detail about this exception? Can you post the
              jsp here so we could find the reason for the exception
              --Nagesh
              "Robert Zanzerkia" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi,
              > We are converting our application from iPlanet (SunOne) to WL7.0.
              > I get the following error when tag library is used in our jsp file.
              > The tag library is jakarta Request library.
              >
              > Any suggestions on how to debug this ?
              >
              > Thank you,
              > Robert
              > Use of the tag lib:
              > ==============
              >
              > <%@ taglib prefix="req" uri="/WEB-INF/tlds/taglibs-request.tld" %>
              >
              > <req:existsParameter name="nextPage">
              > <req:setAttribute name="currentPage"><req:parameter
              name="nextPage"/></req:setAttribute>
              >
              >
              > The error message.
              > ==============
              > javax.servlet.ServletException: 55.0
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :450)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :445)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImp
              l.java:543)
              > at
              weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImp
              l.java:369)
              > at
              com.standardandpoors.framework.presentation.XslJspView.generateView(Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean.process
              (Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost
              (CcrermfControllerServlet.java:298)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.service(Unknow
              n
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.servic
              e(CcrermfControllerServlet.java:127)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
              tStubImpl.java:1058)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :401)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
              ebAppServletContext.java:5445)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
              r.java:780)
              > at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:3105)
              > at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2588)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > <Jul 11, 2003 12:31:46 PM EDT> <Info> <EJB> <010051> <EJB Exception during
              invocation
              > from home:
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              HomeImpl@3e49a8
              > threw exception: com.standardandpoors.SpException
              > com.standardandpoors.SpException
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean.process
              (Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost
              (CcrermfControllerServlet.java:298)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.service(Unknow
              n
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.servic
              e(CcrermfControllerServlet.java:127)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
              tStubImpl.java:1058)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :401)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
              ebAppServletContext.java:5445)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
              r.java:780)
              > at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:3105)
              > at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2588)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > >
              > java.rmi.RemoteException: EJB Exception: ; nested exception is:
              > com.standardandpoors.SpException
              > com.standardandpoors.SpException
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean.process
              (Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost
              (CcrermfControllerServlet.java:298)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.service(Unknow
              n
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.servic
              e(CcrermfControllerServlet.java:127)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
              tStubImpl.java:1058)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :401)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
              ebAppServletContext.java:5445)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
              r.java:780)
              > at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:3105)
              > at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2588)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > <Jul 11, 2003 12:31:46 PM EDT> <Info> <EJB> <010051> <EJB Exception during
              invocation
              > from home:
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              HomeImpl@3e49a8
              > threw exception: com.standardandpoors.SpException
              > com.standardandpoors.SpException
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean.process
              (Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost
              (CcrermfControllerServlet.java:298)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.service(Unknow
              n
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.servic
              e(CcrermfControllerServlet.java:127)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
              tStubImpl.java:1058)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :401)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
              ebAppServletContext.java:5445)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
              r.java:780)
              > at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:3105)
              > at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2588)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > >
              > java.rmi.RemoteException: EJB Exception: ; nested exception is:
              > com.standardandpoors.SpException
              > com.standardandpoors.SpException
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean.process
              (Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost
              (CcrermfControllerServlet.java:298)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.service(Unknow
              n
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.servic
              e(CcrermfControllerServlet.java:127)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
              tStubImpl.java:1058)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :401)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
              ebAppServletContext.java:5445)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
              r.java:780)
              > at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:3105)
              > at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2588)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > java.rmi.RemoteException: EJB Exception: ; nested exception is:
              > com.standardandpoors.SpException
              > com.standardandpoors.SpException
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean.process
              (Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost
              (CcrermfControllerServlet.java:298)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.service(Unknow
              n
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.servic
              e(CcrermfControllerServlet.java:127)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
              tStubImpl.java:1058)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :401)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
              ebAppServletContext.java:5445)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
              r.java:780)
              > at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:3105)
              > at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2588)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > [11/Jul/2003 12:31:43:373] debug: |XslJspView|generateView|ExecuteThread:
              '12'
              > for queue: 'default'|4|Dispatcher.include is executed.
              > [11/Jul/2003 12:31:43:373] debug:
              |com.standardandpoors.framework.presentation.TransformEngine|transform|Execu
              teThread:
              > '12' for queue: 'default'|4|Entered transform()
              > [11/Jul/2003 12:31:43:373] debug:
              |com.standardandpoors.framework.presentation.TransformEngine|transform|Execu
              teThread:
              > '12' for queue: 'default'|4|.====. 1
              > [11/Jul/2003 12:31:43:373] debug:
              |com.standardandpoors.framework.presentation.TransformEngine|transform|Execu
              teThread:
              > '12' for queue: 'default'|4|.---. 2
              > [11/Jul/2003 12:31:43:373] debug:
              |com.standardandpoors.framework.presentation.TransformEngine|transform|Execu
              teThread:
              > '12' for queue: 'default'|4|.. 3
              > [11/Jul/2003 12:31:43:433] debug:
              |com.standardandpoors.framework.presentation.TransformEngine|transform|Execu
              teThread:
              > '12' for queue: 'default'|4|.. 4
              > [11/Jul/2003 12:31:44:84] debug:
              |com.standardandpoors.framework.presentation.TransformEngine|transform|Execu
              teThread:
              > '12' for queue: 'default'|4|returning from transform()
              > [11/Jul/2003 12:31:44:94] debug: |XslJspView|generateView|ExecuteThread:
              '12'
              > for queue: 'default'|4|>>> Before including /loans/loansPostBody.jsp
              > [11/Jul/2003 12:31:46:808] info: |XslJspView|generateView|ExecuteThread:
              '12'
              > for queue: 'default'|3|javax.servlet.ServletException: 55.0
              > [11/Jul/2003 12:31:46:838] info:
              |PresentationControllerBean|process|ExecuteThread:
              > '12' for queue: 'default'|3|----exception handled due to Response Fail
              > [11/Jul/2003 12:31:46:838] info:
              |PresentationControllerBean|process|ExecuteThread:
              > '12' for queue: 'default'|3|----------Using error page =SevereError.jsp
              > [11/Jul/2003 12:31:46:848] error:
              |PresentationControllerBean|process|ExecuteThread:
              > '12' for queue: 'default'|1|java.lang.IllegalStateException: Cannot
              forward a
              > response that is already committed
              > at
              weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
              l.java:136)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean.process
              (Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost
              (CcrermfControllerServlet.java:298)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.service(Unknow
              n
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.servic
              e(CcrermfControllerServlet.java:127)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
              tStubImpl.java:1058)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :401)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
              ebAppServletContext.java:5445)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
              r.java:780)
              > at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:3105)
              > at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2588)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              >
              > [11/Jul/2003 12:31:46:848] info:
              |com.standardandpoors.framework.servlets.controller.SpControllerServlet|doPo
              st|ExecuteThread:
              > '12' for queue: 'default'|3|------------3
              > [11/Jul/2003 12:31:46:848] info:
              |com.standardandpoors.framework.servlets.controller.SpControllerServlet|doPo
              st|ExecuteThread:
              > '12' for queue: 'default'|3|@@@@Notice: Exception was handled by
              displaying errorPagejava.rmi.RemoteException:
              > EJB Exception: ; nested exception is:
              > com.standardandpoors.SpException
              > [11/Jul/2003 12:31:46:858] error:
              |com.standardandpoors.framework.servlets.controller.SpControllerServlet|doPo
              st|ExecuteThread:
              > '12' for queue: 'default'|1|java.rmi.RemoteException: EJB Exception: ;
              nested
              > exception is:
              > com.standardandpoors.SpException
              > com.standardandpoors.SpException
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean.process
              (Unknown
              > Source)
              > at
              com.standardandpoors.framework.controller.PresentationControllerBean_p9mhja_
              EOImpl.process(PresentationControllerBean_p9mhja_EOImpl.java:46)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.doPost(Unknown
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.doPost
              (CcrermfControllerServlet.java:298)
              > at
              com.standardandpoors.framework.controller.SpControllerServlet.service(Unknow
              n
              > Source)
              > at
              com.standardandpoors.apps.ccrermf.controller.CcrermfControllerServlet.servic
              e(CcrermfControllerServlet.java:127)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
              tStubImpl.java:1058)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :401)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :306)
              > at
              weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
              ebAppServletContext.java:5445)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
              r.java:780)
              > at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:3105)
              > at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2588)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              >
              > [11/Jul/2003 12:31:46:858] info:
              |com.standardandpoors.ccrermf.controller.CcrermfControllerServlet|doPost|Exe
              cuteThread:
              > '12' for queue: 'default'|3|mRequestNameString=ListAllLoans
              > <Jul 11, 2003 12:32:21 PM EDT> <Info> <Management> <140009> <Configuration
              changes
              > for domain saved to the repository.>
              

  • Problems in Using Jakarta POI in Jserv- NoClassDefFound

    Hi,
    I'm trying to deploy an application on Jserv which used the Jakarta's POI API. I placed the Jar file in the server folders and specified the same path in the file Jserv.properties.
    But then when trying to access that folder it gives the error NoClassDefFound for the poi's packages meaning its not picking up the classes under this jar.
    I restarted the Jserv several times after mentioning the path.
    Can anybody help me on this in pointing out wat i have missed here.
    Thanks in advance,
    Vijay

    hello,
    i'm also having problems using poi. I've copied the poi jar to tomcat/lib and also to the lib directory of the systems jdk. I've done the same with the commoms-logging.jar.
    Within a jsp is import these things:
    <code>
    <%@ page
         buffer="128"
         import="java.util.*,
              org.apache.poi.hssf.usermodel.*,
              org.apache.poi.hssf.util.*"
    %>
    </code>
    But when calling the url of the page i get:
    Package org.apache.poi.hssf.usermodel not found in import.
    Why, it is in the import? Whats wrong there?
    Thank you,
    Hava a nice day,
    Nico

Maybe you are looking for

  • How to use attribute in report

    Hi, I want to make one report like -- PONO,Material,Plant Delivery Time,POQTY,GRNQTY,Actual Delevery time,Lead Time(Plant del.time-actual deli.time) where plant del. time is the attribute of 0Mat_Plant my problem is how to incorporate and use PLant d

  • Exception in Integration Configuration

    Hello, we get an exception in the Integration Directory when we create an Integration Configuration. When saving the changes we get the following error message: Internal error: Link from Integrated Configuration | bs_cbp_c | http://BusinessPartner/as

  • External HD reformat interrupted; now I can't use disk

    I recently purchased a 2TB Seagate GoFlex external hard drive (connected to my Airport Extreme via ethernet cable) to use at a Time Machine backup. After setting it up per the Seagate instructions, the initial backup was agonizingly slow - just 200 G

  • Adding titles/project to FCPX from Motion 5...

    I suppose this question could go in the Motion forum or FCPX, but it seems to belong here more, I think. I've created a brief project (about 14 seconds) in Motion 5 that I want to put at the beginning of videos I edit in FCPX.  It's just some titles

  • How to generate a View from Query

    Hi How to save a Query as a view....that to be used in web templates I had a query with 20 diff columns and 20 free chars in it. My requirment is to generate 5 to 8 different views for the same query with diff combinations KF's & CHAR's and same them