Differences between WL or Netscape for Servlets and JSP's

What are the advantages / disadvantages of running Servlets under WL,
          vs. say, running them in Netscape's servlet engine? Assuming EJB
          container is run separately, either one of these could make calls to the
          WL EJB server, so perhaps it would be simpler and faster to run servlets
          and JSP's under Netscape, and have them call via t3 into a weblogic
          server for EJB's?
          Thoughts
          david
          David Michaels <[email protected]>
          Director of Technology
          ShockMarket Corporation (650) 330-4665
          [david.vcf]
          

David,
          One of the major reasons to run your servlets on Weblogic is that we have an
          optimization that allows us to pass by reference objects when calling from
          servlets to EJB. This makes things much faster.
          A number of our customers, in addition, have seen performance problems when
          using other servlet engines. It just seems to cause problems due to their
          threading models etc.
          Finally, our servlet engine is by far the most mature and robust on the
          market today. Our JSP implementation is also the best in terms of
          performance.
          Thanks,
          Michael
          Michael Girdley
          WLS Product Manager
          David Michaels <[email protected]> wrote in message
          news:[email protected]..
          > What are the advantages / disadvantages of running Servlets under WL,
          > vs. say, running them in Netscape's servlet engine? Assuming EJB
          > container is run separately, either one of these could make calls to the
          > WL EJB server, so perhaps it would be simpler and faster to run servlets
          > and JSP's under Netscape, and have them call via t3 into a weblogic
          > server for EJB's?
          >
          > Thoughts
          >
          > david
          >
          > --
          > David Michaels <[email protected]>
          > Director of Technology
          > ShockMarket Corporation (650) 330-4665
          >
          >
          

Similar Messages

  • InterMedia Java Classes for Servlets and JSPs and Netscape

    I am using the interMedia Java Classes for Servlets and JSPs to upload and retrieve multimedia data. I have found that it is much more performant in Internet Explorer (5.5) than in Netscape Communicator (4.7). In fact, I cannot upload images larger than 10K at all using netscape. However, the same image can be uploaded into the same application using IE. Is this a known issue?
    Thanks in advance.

    Hi,
    We have successfully uploaded multimedia data in the giga-byte range (Quicktime and AVI files) at the same speed with both the Netscape (4.7n) and MS IE (4.n and 5.n) browsers. One thing we have noticed is that its very important to set the manual proxy settings correctly if you have an environment with a proxy server. If you don't, then uploads can go via the proxy server and, for some reason, that seems to take considerably longer. For example, suppose you are in the www.xyzco.com domain and are connecting to a host named webserver.www.xyzco.com, then specify webserver and webserver.www.xyzco.com (to cover both cases) in the "Do not use proxy servers for..." box in the manual proxy server configuration screen. Also, if you're using a tool such as JDeveloper that uses the host IP address in the debugger environment, then you also need to add the numeric-based (nnn.nnn.nnn.nnn) IP address to this list.
    Hope this helps.
    In order to better understand the variety of ways in which our customers are using interMedia, we'd be very interested in knowing a little more about your application, the interMedia functionality that you are using, and how you are developing and deploying your application. If you are able to help us, please send a short email message with some information about your application, together with any comments you may have, to the Oracle interMedia Product Manager, Joe Mauro, at [email protected] Thank you!
    Regards,
    Simon
    null

  • What's the difference between task list release for order and release for c

    What's the difference between task list release for order and release for cost?

    Pallavi,
    The status of the task list determines in which other application areas the respective task list may be used.
    Release for costing: means that the task list can be used to calculate costs in Transaction IA16 i.e. the costs for the task list operations would be calculated if released for costing status is set.
    Release for use in the order: Released for Order means that you can use the task list in an order i.e. you could include operations from a task list in an order.
    Regards,
    Usman

  • Eclipse Plugins for Servlets and JSP.

    Hi Guys,
    Can any one suggest where i can get the eclipse plugins for Servlets and JSP. May i am wrong posting this question in this forum. I already browsed thru all the forum to get the info but in vain. so any help will be appreciated.
    Thank You,
    cheers,
    thrinath.j

    [url http://www.eclipse.org/webtools/]http://www.eclipse.org/webtools/
    Regards

  • Web hosting for servlet and jsp

    i m looking for web hosting service which provide support for servlet and jsp
    i m looking for both type i mean paid web hosting and also free
    free for my r&d purpose and paid to host my client web site which i created using JRUN.

    thanks i got some isp
    but i m also looking for free service also
    for my r&d purpose
    if u know any , pls tell me also
    i got one www.mycgiserver.com of this kind but there is some problem with this site i want to know if there is any other site also

  • JDBC installation for servlets and jsp

    Hello All,
    I am trying to use JDBC for my web application. i have a book but not very detailed and cannot find a good search on google.
    they have said that the ODBC-JDBC bridge driver comes with jdk1.2 or forward. and ask me to set up an ODBC data source. so i went in control panel/systems tab and then try to add SQL and then when click finish it asks me how to connect to sql server, i entered my usename and password but says connection failed.
    This is my worst nightmare. please help so i can start building web application using servlets and jsp.

    Let me tell you right now, you have BORING nightmares.

  • How to  set the classpath for servlet and jsp???

    i add C:\tomcat-5.0\common\lib\servlet-api+jsp-api to the class path from DOS prompt, as show below:
    set CLASSPATH=%classpath%;C:\tomcat-5.0\common\lib\servlet-api.jar;C:\tomcat-5.0\common\lib\jsp-api.jar
    then, i compile the servlet:
    javac FirstServlet.java
    no error
    and i copy the .class file into C:\tomcat-5.0\webapps\servlets-examples\WEB-INF\classes
    i set the JAVA_HOME enviroment variable as below:
    set JAVA_HOME=C:\Program Files\Java\jdk1.5.0_08
    i start the tomcat version 5.0 and run web browser and type http://localhost:8080/servlets-examples/servlet/FirstServlet
    i get the error message:
    HTTP Status 404 - /servlets-examples/servlet/FirstServlet
    type Status report
    message /servlets-examples/servlet/FirstServlet
    description The requested resource (/servlets-examples/servlet/FirstServlet) is not available.
    Apache Tomcat/5.0.30
    Can anybody tell me how to solve the problem. Thanks a lot.

    You will have to create the servlet mapping in the Web.xml file
    <servlet>
                 <servlet-name>FirstServlet</servlet-name>
                 <servlet-class>FirstServlet</servlet-class>
        </servlet>
    <servlet-mapping>
            <servlet-name>FirstServlet</servlet-name>
            <url-pattern>/servlet/FirstServlet</url-pattern>
        </servlet-mapping>

  • Difference between EPM Add-in for Excel and BPC 10.0?

    Hi Forum,
    I'm currently researching an upgrade to version 10.0.  We're currently running BPC 7.0 for MS.  I'm confused at the moment, because I'm not sure if/what the difference is between the EPM Add-In and BPC 10.0.  Can someone answer this?
    I'm also not understanding the future roadmap for BPC 10.0 and beyond.  It appears to me that an attempt to merge Business Objects functionality and BPC functionality into one product/suite of products is what is happening, but I could be wrong about that too.  Can someone expand on this as well?
    Thanks,
    Mike
    Edited by: hutchinsm on Oct 19, 2011 4:53 PM

    The EPM10 Client (aka add-in) is the unified Excel interface for a subset of EPM products (Profitability and Cost Management, Financial Consolidations, Strategy Management and BPC).  Clients did not like having different report writing paradigms in all of these applications, so the EPM10 Client was developed utilizing a technology called Extended Analytics Analyzer mashed with some of the BPC reporting functionality from BPC7.x to provide one stop shopping for accessing data in EPM applications.  Additionally, the EPM10 Client can be used in many cases to report directly against native BW cubes or any other source that supports an ODBO connection. 
    BPC10 is the planning and consolidations application with the code engine to support the application functionality.  If you purchase/upgrade to BPC10, the EPM10 Client is made available as an additional download to complete the package.  In BPC10, the EPM10 Client is used both for reporting as well as for write back to the database for end users.
    A new roadmap with BPC10 and beyond is just being finalized.  Look for announcements around this in the next few weeks.

  • Need good ebook to down load for servlets and jsp..

    hi everyone......
    plz give me the link to download good servlet & jsp tutorial..
    i am new to this technologies..

    Hit Google,,
    http://www.google.com/search?hl=en&client=netscape-pp&rls=com.netscape%3Aen-US&q=Free+Jsp%2CServlet+Ebooks+for++download&btnG=Search

  • Difference between execution mode of Print preview and Print for Output

    Hello,
    Can anybody tell the difference between execution mode of print preview and print for an output (For eg. PO output or Invoice)?. I am trying to download some documents linked to Purchase order to desktop. The code is written in the same driver program for printing PO and it is executed after smartform function module is called. It works fine in print preview mode and it fails in print mode. The reason why download fails in print mode is that GUI not available (just found from debugging).
    Any ideas?
    Thanks
    Anil

    HI
    try using any other printer and find out if you are getting the correct output. The printer needs to support Multiple Unicode encoding schemes like UTF 8, UTF 16BE, and UTF 16LE, plus special characters and logos, bi-directional text layout, and custom characters..

  • Difference between SAP NetWeaver Gateway 2.0 and SAP NetWeaver Gateway productivity accelerator for Microsoft

    Hi Experts ,
    Can anyone tell me the difference between SAP NetWeaver Gateway 2.0 and SAP NetWeaver Gateway productivity accelerator for Microsoft ?
    Best Regards,
    SK

    SAP  Netweaver Gateway 2.0 is a product for Exposing ERP data as OData for external consumption which is independent of any Microsoft product. Using this you can model OData services and Expose them for light weight consumption. You can use this in use cases where  you just want to consume the OData in some client or so, and you do not want any kind of accelerators to help you in development or in your integration.
    GWPAM is an interoperability framework from SAP that leverages SAP NetWeaver Gateway and Microsoft technologies enabling customers and partners to easily and quickly compose solutions that consume and extend SAP throughout Microsoft technologies for on premise and on demand deployment. With GWPAM you get components like
    GWPAM Visual Studio Add-On,GWPAM Template,GWPAM Project,GWPAM Outlook Add-In which are very much Microsoft specific.

  • Difference between Service Pack 5 for CR-XI (R2) and BOE-XI (R2)

    Difference between "Service Pack 5" for CR-XI (R2) and BOE-XI (R2)
    ========
    There are two different "Service Pack 5" files available for download...
    CRYSTAL REPORTS XI (R2) = crxir2win_sp5.exe
    BUSINESS OBJECTS ENTERPRISE XI (R2) = boxir2win_sp5.exe
    If we have workstations that have both CRYSTAL REPORTS XI and the BUSINESS OBJECTS ENTERPRISE "Client Tools" installed locally on them do I need to run both versions of the "Service Pack 5" - or will running just one (1) of them update all the installed desktop tools...?
    Thanks in advance!

    I think the CR patch has client issues only.
    The enterrpsie one is sufficient in most cases. Is that CR XIR1 or CR XIR2 client you have installed? Make sure it's CR XIR2 or you could run into issues
    Regards,
    Tim

  • Does anyone know the difference between the Applecare Warranty for the Macbook Pro and the Applecare Protection Plan Auto Enroll 607-8192-B APP FOR MacBook

    Does anyone know the difference between the Applecare Warranty for the Macbook Pro and the Applecare Protection Plan Auto Enroll 607-8192-B APP FOR MacBook

    AFAIK, the difference is that the auto-enroll occurs automatically when you purchase the device and you will have to disburse the cost right there and then. Whereas the other comes in a box, can be purchased separately later and you must manually enroll your device into the system to activate the additional protection. This must occur before the base one year warranty is over.
    So, if you don't want to pay up at the moment you buy the computer, you can wait up to say 11 months and buy the AppleCare warranty extension later. Just be sure to complete the enrollment BEFORE the base warranty is over, else Apple will not honor the extension (all in the fine print). This applies to all devices that offer an AppleCare option: notebooks, desktops, iStuff, etc.

  • Difference between using app server connection pooling and using the driver

    Hi all,
    How to get connection pooling with out application server and tomcat also?
    What is the difference between using app server connection pooling and using the driver supported connection pooling?
    Regards,
    Murali

    maybe the performance of App server pool is better than the JDBC pool,
    for you don't know wether the implementation of the JDBC interface is good or bad.

  • What the difference between u0093Valuate GL Account Open Itemsu0094 and u0093Valuate G/

    hi gurus
    What the difference between “Valuate GL Account Open Items” and “Valuate G/L Account Balances”?
    We found out that when we perform valuate GL account Open items there will be reversal done at the same time whereas when we perform Valuate G/L Account Balances there is NO reversal posting even though we hv entered the reversal posting date and Period.
    Pls advise which one we should perform?

    “Valuate GL Account Open Items” are for open item managed accounts including vendor/customer accounts. The valuation is performed for each (open) line items on key date specified.
    "“Valuate GL Balance" is for account NOT managed on Open Item basis but managed in foreign currency. The period balance of key date in foreign currency is valuated. Reversal document can be created by selecting 'Reverse postings' in "Postings" tab.
    Kyoko

Maybe you are looking for

  • How can I connect my MBP to other devices?

    Hello, I have a Yamaha DVD Receiver ("Natural Sound", RDX-E700) and would like to connect it to my MBP so I can hear the my music from iTunes through the loudspeakers connected to the DVD Receiver. Every time I try it doesn't work, even if I switch t

  • Anyone using a Laserjet All-In-One on an Intel Mac?

    I just got an HP Laserjet 2820 all in one unit (scanner, printer, copier) for use with my MacBook Pro. My main reason for going with this model was the automatic document feeder (ADF) that allows me to put a stack of documents in and automatically cr

  • Synchronise purchases across devices with multiple apple ID.

    I connect to iTunes with different apple ID, how do I get all my purchases across all my devises? Thanks

  • How can I get Automator to create a workflow for combining .jpgs into pdf?

    I have a large folder with many subfolders, and each subfolder has many subfolders. Those last mentioned subfolders have many .jpgs inside which I want to make them into a pdf. The question is, how can I get automator to do this for me? I tried using

  • File Processing Techniques in ABAP

    Hi, Friends, Can any one let me know the file processing techniques used in ABAP. Open/Close , Read/Write . are these used for file processing, if so can you explain me this syntax and scenario. please let me know. Regards, Roberts.K