304: not modified warning

Using a MS Soap Toolkit 2.0 gold client to access a web service on 6.1b gives a
304 error, whereas a java client (weblogic's Client and DClient) works perfectly.
There must be a difference in the soap get header thats being created by the
two different clients.
So, anyone know where anywhere I can get hold of the details/source code of the
weblogic soap.WebServiceProxy and weblogic.soap.SoapMethod classes to see that
they are doing correctly so that we can replicate this for the ms client!
Thanks

I have the same issue except mine would not load immediately to a blank screen.  The browser would sit and spin for as long as you let it.  Bypassed fast.fonts.net and CNN.com came right up.  Having the same issue on other sites as well not related to the above site.  Some sites load fine but when you click on a link on the site, white background and just sits and spins.  Absolutely no information in any logs.  This is annoying.  Works in in all other browsers and on mobile devices.  Issue is only related to IE that I can see.

Similar Messages

  • ??? Using JSPs to Send Not-Modified-Since Header ???

    Hi all,
    In looking at past posts, I'm afraid I know the horrible answer
    to this issue but I thought I'd ask just in case I missed
    anything.
    Let me start by saying I'm using Tomcat v4.0.4 beta 3.
    As you know, when a client (usually a web browser) has a cached
    version of a resource (usually a web page) it can send an
    "If-Modified-Since" header to the HTTP server. The server
    compares the time/date stamp specified in the header with that of
    the requested resource. If the resource has not been modified
    since the time specified in the "If-Modified-Since" header, the
    server sends back a 304 (Not-Modified) response, effectively
    telling the client (usually a web browser) that its cached
    version of the resource is still valid.
    When writing a servlet, it's easy to handle this sort of
    scenario. The javax.servlet.http.HttpServlet class has a
    "service()" method. This method first checks if the incoming HTTP
    method is a GET. If it is, the "service()" method proceeds to
    call the "getLastModified()" method of the servlet. As a
    developer, you can override "getLastModified()" to return a long
    value representing the last time the requested resource was
    changed. Depending on the value returned by "getLastModified()"
    (note that -1 is returned if you don't override the method) the
    "service()" method may simply return a 304, Not-Modified response
    rather than calling the servlet's "doGet()" method.
    Now, the $18.32 Question: How do you ensure "getLastModified()"
    is called in JSP?
    No, you cannot simply do this:
    <%!
       public long getLastModified() {
          return xxx;
    %>The problem is that the above method will never be called by the
    container.
    I traced through some of the Tomcat/Catalina/Jasper code and it
    seems to me that the response code is being set to 200/OK very
    early on in the processing.
    I also took a cursory look at the JSP spec and didn't find any
    indication of setting a "Not-Modified" response code...so, I am
    thinking this is something that is (strangely) missing in the JSP
    specification. I have a JSP page that needs to update itself once
    per day. Therefore, it would be very handy to have the
    "getLastModified()" functionality enjoyed by servlet writers.
    Can anyone confirm this?
    Thanks...

    I've not come across this before, but like you I cannot find any mention of how to handle modification dates in the JSP spec. I can think of a couple of possible ways round this:
    1. Try to delegate the functionality to a servlet. You'd need to pass the JSPs modification date and handle the return. Seems messy and I haven't tried it.
    2. Add code to the JSP to read the headers directly and set the appropriate status code. e.g. at start of JSP:
    <%@page  import="java.util.*" %>
    <%
    if (request.getMethod().equals("GET")) {
       GregorianCalendar lastModified = new GregorianCalendar(2002, 01, 01); // use constant for testing
       response.setDateHeader("Last-Modified", lastModified.getTimeInMillis());  //always set header
       long modifiedSince = -1;
       try {
          modifiedSince = request.getDateHeader("If-Modified-Since");
       } catch (IllegalArgumentException iae) {
            // System.out.println(iae);
       if (modifiedSince != -1 && modifiedSince > lastModified.getTimeInMillis()) {     
          response.setStatus(HttpServletResponse.SC_NOT_MODIFIED);
          return;
    %>This would probably best be implemented as a custom tag if needed in more than one page.

  • TS4071 I am trying to download Itunes but it is saying my system is not modified for it. I am running on a 32 bit system whatever that means. Please help!!!

    I am trying to download itunes and it's not letting me it keeps telling me that my system is not modified for it. What do I do??? Help!!!

    This is a Microsoft Windows Issue.
    From a MS Support Engineer:
    "Hi,
    ·        Is the computer on a domain?
    ·        Is the issue isolated to only this software or you get the same error message with other software’s as well?
    Try the steps below and check if it helps.
    Step 1:
    Run the software setup file as an administrator and check if it helps.
    a. Right click on the setup file of the software that you are trying to install.
    b. Select “Run as administrator”.
    Step 2:
    Temporarily disable the antivirus software running on the computer and check if you are able to install the software.
    Disable antivirus software
    Warning:
    Antivirus software can help protect your computer against viruses and other security threats. In most cases, you shouldn't disable your antivirus software. If you have to temporarily disable it to install other software, you should re-enable it as soon as you're done. If you're connected to the Internet or a network while your antivirus software is disabled, your computer is vulnerable to attacks.
    Step 3:
    a. Click Start, type "Local Security Policy" (without quotes) and press enter.
    b. Click on Software Restriction Policies.
    c. In the right pane, double click on the "enforcement".
    d. Select “All users except local administrators”.
    e. Click Ok and restart the computer and check if the issue is fixed."

  • 304 If-modified-since

    The following seems to be doing what it should i.e. comparing a modified-since header against a database value and sending a 304 if not modified accordingly. It appears to work but I would like your comments since I'm new to doing this type of thing.
    void doConditionalGet(java.sql.Timestamp ts, HttpServletRequest request,
    HttpServletResponse response) {       
            response.setDateHeader("Last-Modified", ts.getTime());
            long modifiedSince = -1;
            try {
                modifiedSince = request.getDateHeader("If-Modified-Since");
                if (modifiedSince != -1 && modifiedSince >= ts.getTime()) {               
                    response.setStatus(HttpServletResponse.SC_NOT_MODIFIED);
                    return;
            } catch (IllegalArgumentException iae) {
                log.error(iae);
        }Thank you
    Niklas

    The following seems to be doing what it should i.e. comparing a modified-since header against a database value and sending a 304 if not modified accordingly. It appears to work but I would like your comments since I'm new to doing this type of thing.
    void doConditionalGet(java.sql.Timestamp ts, HttpServletRequest request,
    HttpServletResponse response) {       
            response.setDateHeader("Last-Modified", ts.getTime());
            long modifiedSince = -1;
            try {
                modifiedSince = request.getDateHeader("If-Modified-Since");
                if (modifiedSince != -1 && modifiedSince >= ts.getTime()) {               
                    response.setStatus(HttpServletResponse.SC_NOT_MODIFIED);
                    return;
            } catch (IllegalArgumentException iae) {
                log.error(iae);
        }Thank you
    Niklas

  • VOWizard-Bug: WHERE Clause not modified on EO add if manually changed befor

    VOWizard-Bug: WHERE Clause is not modified on adding a EO (with association) if it was manually changed before
    Testcase:
    - Create a VO based on 2 EO (Association already defined) --> Jon in WHERE Clause automatically created by Wizard
    - Then modify the WHERE clause, e.g. change an equal to outer join.
    - All works fine.
    - Then add a EO (also Association defined) and chose some attributes.
    - Test and wonder why there are much more rows in the result than expected.
    - Look into the Query-Tab and control the WHERE clause: Wizard forgot to add the new join... and therefore we get a cartesian product between the old view and the new added EO...
    Possible solutions to fix the Bug:
    1. add the JOIN ;-)
    or
    2. at least display a warning that the JOIN is not automatically created!
    Regards, Markus
    GE Medical Systems

    Hi Markus-
    Once the where clause has been customized, we don't update it in the interest of not messing up the user's custom code. However, we should probably warn the user in the types of cases you mention above that he will need to update the where clause manually to include the new information. We will add this in a future release.
    Thanks,
    Ray

  • Client non-modifiable Warning while execution of RFC

    Hi All,
    When we execute the RFC in our Test server, I am get following warning. This function module is trying to update the HR infotype data. As this is Test client, it is non-modifiable (from config point of view).
    But why its throwing warning, when we change masterdata? Same thing is working fine in Production Server which is also non-modifiable. Please suggest the solution - Regards, Vinod
    Message no. TK430
    Diagnosis
    The system administrator has set your logon client to the 'not modifiable' status.
    Client-specific objects can not be changed in this client.
    System Response
    The function terminates.
    Procedure
    Contact the system administrator.
    For more information, see the SAP Library under Change and Transport System.

    Hi Sandeep,
    Thanks for the reply, but I couldnt find any namespace properties for HR infotype objects.
    Can you please specify the exact path.
    Thanks- Vinod

  • OB52 :- Open and Close Posting periods Due to not modifiable of  PRD system

    Dear All,
    Due to not modifiable status two transaction could't be done in the PRD  System.
    This is IMG activity under the following.
    1. OB52 :- Open and Close Posting periods (FA -> FA Global Setting -> Document ->Posting -> Open and Close Postinfg periods
    2. OB08 :- Enter Foriegn exchange rate. (Gen Settings) Enter foriegn exchange rate
    These transaction are to be executed regularly and directly in the ECC6.0 Production system is not possible due to non modifiable status.
    Please help me regarding this issue

    Check Note 77430 - Customizing: Current settings
    Markus

  • I cannot install itunes on my windown 7 laptop.  Error says "computer not modified".  Please help me with this problem.

    I cannot install Itunes and Icloud on my Sony Vaio Laptop - Window 7.  Error says " computer/system not modified".  Please help me with this problem. 

    Hello there, jag123059.
    The following Knowledge Base article offers up some great steps to follow for resolving issues with installing iTunes:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How to restrict the user in MIRO for not modifying  price

    Hi All 
    My requirement is How to restrict the users in MIRO screen for not modifying Material Prices  of only the for specific  ROH types .
    For example :
    Valuation class             RM description
      3021                             RM - A
      3022                             RM - B
      3024                             RM - C
    when ever we procure  the above Raw materials A,B and C and
    the Quantity of each Raw material @ 10 units  and value @ 1 INR  for each unit
    RM - A procured qty 10 @1 total price is INR  10
    RM - B procured qty 10 @1 total  price is INR 10
    RM - C procured qty 10 @1 total  price is INR 10
    total price of PO is INR 30
    when we received invoice material prices are  assume it INR 1 is excess for each material.Now the invoice price for each RM has become INR 11.
    in MIRO we want restrict the user to change the price from INR 10 to 11.
    suggest the best possible ways to restrict in MIRO screen
    Thanks & Regards
    Mala

    Dear:   
                      Take help of ABABPER fo implement exit using INVOICE_UPDATE or MRMH0003 Logistics Invoice Verification: Revaluation/RAP exit. If this does not help then seek help of MM functional who will help you to find exit for the required task.
    rEGARDS

  • How to make "payment terms" not modifiable in sales order

    Hello every 1,
    please help, i want to know:
    how to make "payment terms" not modifiable in a sales order , as we know it comes directly from CMR and client wants "PAYMENT TERMS" to be not modifiable.
    Look forward for your response.
    Thanks in Advance,
    Deepak

    You need to use SHD0 or userexit chnages, like always determine from customer master, if user changes, give message like not modifiable  or ask abaper to make non modifable field

  • DOWN PAYMENT AMOUNT FIELD NEEDS TO BE NOT MODIFIABLE IN PAYMENT REQUEST

    Hi
    In SAP, when Down Payment is called through Payment Request, the "amount" field will be changeable mode.
    My client requirement is that, the amount field should be in "not modifiable" status.
    Is there anyway that we can do this...using EXIT or something....
    Thanks in advance...
    Srikanth M

    Hi,
    system will not allow to change the Vendor line item.
    F-47 Down pyamnet request 10000
    f-48  you need to select the above request
           and enter the 10000 in bank gl line.
    you cannot change the vendor line while f-48.
    i hope will clearify your issue.
    reg
    Mmadhu M

  • GR Posting Date-not modifiable

    Hi Friends,
    We have business requirement to have GR posting date should always default to the current date and not modifiable.  Business client does not wants anyone to receive goods in the past. Please tell me how to achieve this settings?.
    Thanks
    Abdul

    Hi
    Try Field selection for MIGO transaction
    Path:SPRO-MM-IM--->field selection for header -->Select display option for doc date.
    Vivek
    Edited by: Vivek N on Dec 29, 2008 3:52 PM

  • DTR workspace is not modifiable-not able to EDIT track DC- in NWDS.

    Hi,
    i am not able to EDIT in my project that i creted from ESS track of NWDI.
    i am getting the following error:-
    Checkout is not possible. See below for details.
    Component com.sap.xss.hr.per.us.bank.cc.CcPerBank
    ======>problem: DTR workspace is not modifiable /DID_ZTECH_Dessusbanksap.com/Model Folder/src/packages/com/sap/xss/hr/per/us/bank/cc/CcPerBank.txvWDComponentDiagram
    ======>problem: DTR workspace is not modifiable /DID_ZTECH_Dessusbanksap.com/src/packages/com/sap/xss/hr/per/us/bank/cc/CcPerBank.wdcomponent
    please suggest me the needful
    thanks
    Narpal

    ok thank for reply.
    i can modify now my code but when i have created the track i have given my development server details under runtime. But i chaned that once QA1 by mistake and later relized then again reverted back to development.
    so in this case do i need to import/check-in all software component again in my track?
    Now i am having the original system details.(that i gave at the time of track creation and import ESS).
    thanks
    Narpal S Sihag

  • Installing art when "Album Art Not Modifiable"

    I was recently trying to drag and drop album artwork into the iTunes photo receptacle in the lower left hand corner and noticed that it read "Album Art Not Modifiable". Does that mean I can't paste anything there? There's no art at all currently, even when I ask iTunes to find the album art for that CD. If anyone knows of a way to override this, I'd appreciate it. Thank you.

    Is that really true?
    'Cause being new to this, I've only just added a few albums as .wav and succesfully downloaded album art, using the functionality within Itunes. And this should not have been possible?For instance Loretta Lynn "Van Lear Rose", Emmylou Harris "Stumble into grace" and Elvis Costello/Burt Bacharach "Painted from Memory" all worked just fine. But Itunes was not able to download album art for all my albums - Simply Red "Greatest Hits" from 1996 was one that did not work. So I browsed the internet and was able to find jpegs of this album art, which I know have stored locally. But how do I get that into Itunes?
    brgds,
    Linus

  • Why is there no "none" option of payment methods? , Can not modify About Me!

    Why is there no "none" option of payment methods? , Can not modify About Me!

    How to Get Apps From the App Store Without a Credit Card
    http://ipadhelp.com/ipad-help/how-to-get-free-apps-from-the-app-store-without-a- credit-card/
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    http://support.apple.com/kb/ht2534
    If None is not available - On your computer launch iTunes and click "iTunes Store" in the left navigation pane. Click the "down arrow" next to your name at the top right side of the page and click "Account." Enter your username and password and click "View Account" to log into your account information. Next to your Payment Type, click "Edit." Select the "None" button and click "Done." Confirm that your card has been removed by returning to the Apple account information screen. Under Payment Type, it should say that there is no credit card on file.
     Cheers, Tom

Maybe you are looking for

  • Launching Aperture issues

    When I launch Aperture, it initializes by showing "opening Aperture library" but after a few seconds it stops and does not open the program.  How do I launch Aperture?  It worked before, not anymore.  I've downloaded latest updates, but still have is

  • Report Template Pagination

    I've created a report "row" template and am having trouble displaying pagination. In the Pagination Template section I put <span class="RISKRPT">#TOP_PAGINATION#</span> where RISKRPT is the name of the report template. Can someone please tell me what

  • Itunes stores opens automatically

    hello: I don't want the itunes store to open automatically when I strat itunes. Any suggestions Thanks

  • Adobe Lightroom 2.5 question...filename box

    Hey everyone, Quick question hopefully someone can help me out. When I go the the File Name box in the Library mode I click on the box to rename it but for some reason it always pops up with the Rename 1 Photo box. Im not to fond of the additional wi

  • Where can I get Photoshop cs4 trial?

    I've not been able to afford the ridiculous prices to keep up with cs, cs2, cs3, etc. I'm wanting to buy cs4 but I want to try it first. All I can find on this asinine Adobe download site is the current cs 5.5. I cannot use 5.5 because I do not have