I need servlets.jar Can anyone send it?

Hi all,
I am working on a windows nt 4 staion. My problem is that I need to compile servlets but everytime I try to install the JSDK, I have a probleme NT don't want to install it.
Could anyone send me servlets.jar to [email protected]?
Thanks for your help
Cecile

Hi
I shall send it to you today.
bye

Similar Messages

  • Hi all can anyone send docs for Report Designer bi7.0

    hi all,
    Can anyone send me the documents for report designer bi 7.0.
    regds
    hari

    hi hari,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/910aa7a7-0b01-0010-97a5-f28be23697d3
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4487dd91-0b01-0010-eba1-bcd6419
    /people/michael.eacrett/blog/2006/06/07/whats-new-in-sap-netweaver-702004s--an-introduction-to-the-functionality-deltas-and-major-changes
    http://searchsap.techtarget.com/cgi-bin/rd.pl/ftID-1121728-ctID-1064004?//expert/KnowledgebaseAnswer/0,289625,sid21_gci1064004,00.html
    http://help.sap.com/saphelp_nw04s/helpdata/en/9d/24ff4009b8f223e10000000a155106/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10564d5c-cf00-2a10-7b87-c94e38267742
    http://wiki.ittoolbox.com/index.php/Upgrade_BW_to_Netweaver_2004s_from_v3.0B
    http://help.sap.com/saphelp_nw70/helpdata/en/88/4d354277dcb26be10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5c46376d-0601-0010-83bf-c4f5f140e3d6
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a4/1be541f321c717e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b3/05154219fce12ce10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b3/05154219fce12ce10000000a1550b0/frameset.htm
    hope this helps..

  • Can anyone send tutor for performance tuning?

    can anyone send tutor for performance tuning?I like to chk my coding.

    1.      Unused/Dead code
    Avoid leaving unused code in the program. Either comment out or delete the unused situation. Use program --> check --> extended program to check for the variables, which are not used statically. 
    2.      Subroutine Usage
    For good modularization, the decision of whether or not to execute a subroutine should be made before the subroutine is called. For example:  
    This is better:
    IF f1 NE 0.
      PERFORM sub1.
    ENDIF. 
    FORM sub1.
    ENDFORM.  
    Than this:
    PERFORM sub1.
    FORM sub1.
      IF f1 NE 0.
      ENDIF.
    ENDFORM. 
    3.      Usage of IF statements
    When coding IF tests, nest the testing conditions so that the outer conditions are those which are most likely to fail. For logical expressions with AND , place the mostly likely false first and for the OR, place the mostly likely true first. 
    Example - nested IF's:
      IF (least likely to be true).
        IF (less likely to be true).
         IF (most likely to be true).
         ENDIF.
        ENDIF.
       ENDIF. 
    Example - IF...ELSEIF...ENDIF :
      IF (most likely to be true).
      ELSEIF (less likely to be true).
      ELSEIF (least likely to be true).
      ENDIF. 
    Example - AND:
       IF (least likely to be true) AND
          (most likely to be true).
       ENDIF.
    Example - OR:
            IF (most likely to be true) OR
          (least likely to be true). 
    4.      CASE vs. nested Ifs
    When testing fields "equal to" something, one can use either the nested IF or the CASE statement. The CASE is better for two reasons. It is easier to read and after about five nested IFs the performance of the CASE is more efficient. 
    5.      MOVE statements
    When records a and b have the exact same structure, it is more efficient to MOVE a TO b than to  MOVE-CORRESPONDING a TO b.
    MOVE BSEG TO *BSEG.
    is better than
    MOVE-CORRESPONDING BSEG TO *BSEG. 
    6.      SELECT and SELECT SINGLE
    When using the SELECT statement, study the key and always provide as much of the left-most part of the key as possible. If the entire key can be qualified, code a SELECT SINGLE not just a SELECT.   If you are only interested in the first row or there is only one row to be returned, using SELECT SINGLE can increase performance by up to three times. 
    7.      Small internal tables vs. complete internal tables
    In general it is better to minimize the number of fields declared in an internal table.  While it may be convenient to declare an internal table using the LIKE command, in most cases, programs will not use all fields in the SAP standard table.
    For example:
    Instead of this:
    data:  t_mara like mara occurs 0 with header line.
    Use this:
    data: begin of t_mara occurs 0,
            matnr like mara-matnr,
            end of t_mara. 
    8.      Row-level processing and SELECT SINGLE
    Similar to the processing of a SELECT-ENDSELECT loop, when calling multiple SELECT-SINGLE commands on a non-buffered table (check Data Dictionary -> Technical Info), you should do the following to improve performance:
    o       Use the SELECT into <itab> to buffer the necessary rows in an internal table, then
    o       sort the rows by the key fields, then
    o       use a READ TABLE WITH KEY ... BINARY SEARCH in place of the SELECT SINGLE command. Note that this only make sense when the table you are buffering is not too large (this decision must be made on a case by case basis).
    9.      READing single records of internal tables
    When reading a single record in an internal table, the READ TABLE WITH KEY is not a direct READ.  This means that if the data is not sorted according to the key, the system must sequentially read the table.   Therefore, you should:
    o       SORT the table
    o       use READ TABLE WITH KEY BINARY SEARCH for better performance. 
    10.  SORTing internal tables
    When SORTing internal tables, specify the fields to SORTed.
    SORT ITAB BY FLD1 FLD2.
    is more efficient than
    SORT ITAB.  
    11.  Number of entries in an internal table
    To find out how many entries are in an internal table use DESCRIBE.
    DESCRIBE TABLE ITAB LINES CNTLNS.
    is more efficient than
    LOOP AT ITAB.
      CNTLNS = CNTLNS + 1.
    ENDLOOP. 
    12.  Performance diagnosis
    To diagnose performance problems, it is recommended to use the SAP transaction SE30, ABAP/4 Runtime Analysis. The utility allows statistical analysis of transactions and programs. 
    13.  Nested SELECTs versus table views
    Since releASE 4.0, OPEN SQL allows both inner and outer table joins.  A nested SELECT loop may be used to accomplish the same concept.  However, the performance of nested SELECT loops is very poor in comparison to a join.  Hence, to improve performance by a factor of 25x and reduce network load, you should either create a view in the data dictionary then use this view to select data, or code the select using a join. 
    14.  If nested SELECTs must be used
    As mentioned previously, performance can be dramatically improved by using views instead of nested SELECTs, however, if this is not possible, then the following example of using an internal table in a nested SELECT can also improve performance by a factor of 5x:
    Use this:
    form select_good.
      data: t_vbak like vbak occurs 0 with header line.
      data: t_vbap like vbap occurs 0 with header line.
      select * from vbak into table t_vbak up to 200 rows.
      select * from vbap
              for all entries in t_vbak
              where vbeln = t_vbak-vbeln.
      endselect.
    endform.
    Instead of this:
    form select_bad.
    select * from vbak up to 200 rows.
      select * from vbap where vbeln = vbak-vbeln.
      endselect.
    endselect.
    endform.
    Although using "SELECT...FOR ALL ENTRIES IN..." is generally very fast, you should be aware of the three pitfalls of using it:
    Firstly, SAP automatically removes any duplicates from the rest of the retrieved records.  Therefore, if you wish to ensure that no qualifying records are discarded, the field list of the inner SELECT must be designed to ensure the retrieved records will contain no duplicates (normally, this would mean including in the list of retrieved fields all of those fields that comprise that table's primary key).
    Secondly,  if you were able to code "SELECT ... FROM <database table> FOR ALL ENTRIES IN TABLE <itab>" and the internal table <itab> is empty, then all rows from <database table> will be retrieved.
    Thirdly, if the internal table supplying the selection criteria (i.e. internal table <itab> in the example "...FOR ALL ENTRIES IN TABLE <itab> ") contains a large number of entries, performance degradation may occur.
    15.  SELECT * versus SELECTing individual fields
    In general, use a SELECT statement specifying a list of fields instead of a SELECT * to reduce network traffic and improve performance.  For tables with only a few fields the improvements may be minor, but many SAP tables contain more than 50 fields when the program needs only a few.  In the latter case, the performace gains can be substantial.  For example:
    Use:
    select vbeln auart vbtyp from table vbak
      into (vbak-vbeln, vbak-auart, vbak-vbtyp)
      where ...
    Instead of using:
    select * from vbak where ... 
    16.  Avoid unnecessary statements
    There are a few cases where one command is better than two.  For example:
    Use:
    append <tab_wa> to <tab>.
    Instead of:
    <tab> = <tab_wa>.
    append <tab> (modify <tab>).
    And also, use:
    if not <tab>[] is initial.
    Instead of:
    describe table <tab> lines <line_counter>.
    if <line_counter> > 0. 
    17.  Copying or appending internal tables
    Use this:
    <tab2>[] = <tab1>[].  (if <tab2> is empty)
    Instead of this:
    loop at <tab1>.
      append <tab1> to <tab2>.
    endloop.
    However, if <tab2> is not empty and should not be overwritten, then use:
    append lines of <tab1> [from index1] [to index2] to <tab2>.
    P.S : Please reward if you find this useful..

  • Can anyone send me TCS XI  running projects clients ?

    can anyone send me TCS XI running projects clients?
    please send ASAP..

    HI Bipin and Prasad,
    Please note TBIT40 materials are copyright protected by SAP AG. Distruibution of any such material is ILLEGAL.
    If you need the training material, attend a training course in any SAP authorised training centre.
    Regards,
    Jai Shankar

  • Can anyone send me TBIT40files.zip?

    hai,
    I am working with TBIT40 Exercise3. For that i need TBIT40files.zip files for PurchaseOrderCombined.xsd,transforms_zip.zip and for testing scenario.
    can anyone send me to [email protected]
    Thanks.
    prasad

    HI Bipin and Prasad,
    Please note TBIT40 materials are copyright protected by SAP AG. Distruibution of any such material is ILLEGAL.
    If you need the training material, attend a training course in any SAP authorised training centre.
    Regards,
    Jai Shankar

  • Can anyone send me the link related COPA Cubes and Reports

    I guess if you want links on help.sap.com you can search and find the same too!!
    Hi,
    can anyone send me the COPA Standard cubes and Reprots list and
    can anyone send the link where we get the above objects ...
    Regards,
    Suman
    Edited by: Arun Varadarajan on Feb 11, 2009 12:58 PM

    Hi.......
    Go to RSA1 >> Business content >> Click on Object Types >> There click on Infocube >> Expand the node >> Click on Select Objects.............there search for the Term COPA...........u will get all the standard COPA infocubes.......
    Check this.......
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/910aa7a7-0b01-0010-97a5-f28be23697d3
    http://help.sap.com/saphelp_nw70/helpdata/EN/a4/1be541f321c717e10000000a155106/frameset.htm
    Regards,
    Debjani....

  • Can anyone send me the 1easyIO.llb library file ?

    I need the library file "1easyIO.llb".  Can anyone send it to me/post it/ send me a link to download the same.
    I have labview 8.2 and did install DAQ-mx drivers. But 1easyIO.llb was not a part of this installation.

    I know that. If you do have traditional DAQ installed and hence the 1easyIO.llb under the directory <National Instruments\Labview\DAQ>, can you post that here? I will really appreciate it !!!!!
    Message Edited by Support on 12-14-2007 04:51 PM

  • .ME Calendar and iPhone Sharing - Can Anyone Send You A Calendar Event Req?

    Hello All,
    I have a quick question for the forum? I am looking to get an iPhone and using .ME services.
    My question is with - Calendar. Can anyone send me a meeting request or other calendar events?
    For example, my wife needs to make sure I know about an appointment, is there a way she can send me the appointment request?
    I would love to get my wife a phone also, that way we can have calendars to help keep us in touch of things to come....kids kind of have a way of keeping you busy....
    Would we setup a central shared calendar on .ME and make the appointments there and then add us to the appointment so it would send the request to both of us?
    Will you be able to access more then one calendar on the iPhone?
    Sorry if this has been asked before, just trying to find a nice to keep thing little more organized in a somewhat chaos day..
    Thanks...

    David,
    I would love to hear any responses you get to this. David Rock in his book Quiet Leadership says that the human brain can only retain 7 things in the active short term memory at one time. Ergo, the need for things like Outlook Calendars. But I find it frustrating that I cannot send my wife a calendar invite so that she knows when I have certain obligations or meetings.
    Kindly,
    Dave Han

  • HT3775 can anyone send me the download link so i can play MPEG movie on my iMAC

    Can anyone send me the download link so i can play Quick time MPEG movie on my iMAC.
    THANKS

    If it is a QuickTime movie it should play as is. No need to download anything.
    If it doesn't play in QuickTime, try VLC.

  • I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    again image capture is not involved with deleting photos from iPhoto in any way ever
    the paid version of iPhoto Library Manager is very good for finding duplicates as is Duplicate Annihilator
    And I have no idea who told you this - or what it means - but re-read both of my opening statements
    I was told I could delete multpiles thru image capture by transferring my iPhoto library etc
    LN

  • Can anyone send me docs about transportations in bw do and donts?

    hi all,
    Can anyone send me the documents about transportation procedure to be carried in bw do and donts.
    to my email id [email protected]
    thanxs in advance
    regds
    hari

    Hi,
    SAP Help
    http://help.sap.com/saphelp_nw04/helpdata/en/94/d4943b00ce6622e10000000a114084/frameset.htm
    Also check
    TRANSPORTATION
    Transportation
    Thanks

  • HT3633 I have an error message that reads: java.lang.noclassdefFounder - need to fix can anyone help?

    I have an error message that reads: java.lang.noclassdefFounder - need to fix can anyone help?

    That's a bug in whatever Java program you're running.
    That's not an error specific to OS X.
    (There's usually a whole lot more text dumped by Java, too.)
    Check with whoever wrote or is supporting the package you're working with.

  • Can anyone send me business blueprint for abap ?

    hi all,
    Can anyone send me business blue print for abap. my email id is [email protected]
    thanxs
    hari

    hi all,
    Can anyone send me business blue print for abap. my email id is [email protected]
    thanxs
    hari

  • Can anyone send/post me the code for RTP server which reads soundcard

    hi all,
    can anyone send me the code for RTP server which reads soundcard and RTP client to tranmit the sound.

    How much are you going to pay?

  • Can anyone send me

    Hi all,
    Can anyone send me RD20 and related to that BR30 with your past experience or some business scenarios please. I want to work them on my Prod Instance like real environment. If you fell "in secure" to publish them please remove your client name and company name as well. Or else you can send me to my personal mail ID [email protected]
    Thanks in advance for your time and consideration .

    If the ASA has a current support contract, the TAC call center should be able to associate your CCO userid with it.
    Meanwhile see your e-mail separately.

Maybe you are looking for

  • IWeb not seeing .Mac Web gallery photo albums

    I uploaded a photo album created in iPhoto to .Mac Web Gallery. The photo album is accessible on the web. When I go into iWeb to put a link to it, I've gone to Insert>.Mac Web Gallery, which is what the instructions say you are supposed to do. Howeve

  • Anybody using MailTags?

    So it would seem that MailTags is the best way for me to do what I want. That is I maintain a whitelist of people who can send me email and typically my server tags the email (by adding a header as the message was delivered) as to whether the sender

  • Where is Leaks menu in Xcode 4.4.1 ?

    Hi I am learning about performance tools in Xcode. In a tutorial from Stanford University, I saw a menu in  Run > Start with Performance Tool > Leaks for finding memory leaks . But my Xcode has not Run menu.  In View and Preferences I couldn't find i

  • Override/Hide Master Page Footer?

    I am working on my work's SharePoint subsite. The site inherits its master formatting from the main site's master page, and I have no access to the master page whatsoever. If it matters, I also do not have access to SharePoint Designer. The master pa

  • Finder crashes when renaming or deleting a file

    Hello, on my MacMini I have Snow Leopard (10.6.2) installed and have a lot of troubles with finder. Every time i tried to rename a file it crashed. So i did some research and found out that StuffIt used to be a problem but i didn't have it installed.