[CLOSED] Problem under Opera last version

Page 3 of 4 FirstFirst 1234 LastLast
  1. #21
    After some investigation I see that response 401 for POST requests only
    Even for my javascript sample, if replace GET by POST then you will get failed request
    If set for DirectEvent
    Method="GET" Type="Load"
    then request is executed fine

    I see 'Authorization' header in POST request and i guess it is a source of issue

    So, as you see it is not Ext.Net/ExtJS issue, POST requests are failed under Opera
    At this moment, i did not find any workaround (only if use GET request but it is not suitable for all cases)
  2. #22
    Hello

    Very interesting point, I have reported to Opera, I have opened a bug tracker on ther side.

    Could you tell me when I can use get method in place of post one, perhaps, it will works for me, and where I put
    Method="GET" Type="Load"
    In the config part of the call? And how to do on direct method call in javascript?
  3. #23
    GET request can pass data in query string only of url (an there is limitation on size of query string)

    Could you tell me when I can use get method in place of post one, perhaps, it will works for me, and where I put
    1 Method="GET" Type="Load"



    In the config part of the call? And how to do on direct method call in javascript?
    I am not sure that clear understood you. Just define that properties for direct event
    For direct method, you can define it in DirectMethod attribute or in javascript
    [DirectMethod(Method = HttpMethod.GET]
    
    App.direct.MyMethod({method: "GET"});
  4. #24
    I got it. I will try to use get as a work around, hope it will good
  5. #25
    Just another question : on a store definition where I change method?
  6. #26
    PageProxy:
    <ext:PageProxy>
        <RequestConfig Method="GET" />
    </ext:PageProxy>
    AjaxProxy:
    <ext:AjaxProxy>
        <ActionMethods Read="GET" />
    </ext:AjaxProxy>
  7. #27
    Thanks a lot, now all I have to do, is to change all my call (and hope it works)...funny, thanks Opera and Safari.
  8. #28
    just for my knowledge, how system decides to use POST or GET? Is it browser related? Or something else?
  9. #29
    just for my knowledge, how system decides to use POST or GET? Is it browser related? Or something else?
    If you use XmlHttpRequest then you have to specify required method manually
    DirectEvent/DirectMethod use GET if no extra parameters and there is no form to submit (or Type="Load" to prevent any form submitting) otherwise POST. If you specify method manually then DirectEvent will use it
  10. #30
    Thank you, it's more clear now
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [CLOSED] KeyMap and Opera problem
    By voipswitch in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: May 08, 2013, 9:18 AM
  2. [CLOSED] Problem in last svn version (3977)
    By feanor91 in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: May 02, 2012, 12:24 PM
  3. [CLOSED] Problem when updating to new version
    By Pablo_Azevedo in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Oct 08, 2010, 12:17 PM
  4. [CLOSED] Problem getting the Professional version 1.0?
    By flormariafr in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 26, 2010, 10:21 AM
  5. combo edit problem in 0.8 version
    By Dinesh.T in forum 1.x Help
    Replies: 2
    Last Post: Jul 22, 2009, 10:15 AM

Posting Permissions