Doesn't work via SSLVPN

Page 1 of 2 12 LastLast
  1. #1

    Doesn't work via SSLVPN

    Hello,

    I've got issue when accesing the site through SonicWALL SSLVPN.
    I'm sure it's not a bug, but a kind of incompatibility issue.

    For instance, the SSL-thing does rewrite all the hrefs in the pages in the following manner.

        <script type="text/javascript" src="https://sslvpn.inorder.ru/go/http://operations.inorder.ru/extjs/adapter/ext/ext-base-js/coolite.axd?v=2648"></script>
        <script type="text/javascript" src="https://sslvpn.inorder.ru/go/http://operations.inorder.ru/extjs/ext-all-js/coolite.axd?v=2648"></script>
        <script type="text/javascript" src="https://sslvpn.inorder.ru/go/http://operations.inorder.ru/coolite/coolite-core-js/coolite.axd?v=2648"></script>
        <script type="text/javascript" src="https://sslvpn.inorder.ru/go/http://operations.inorder.ru/coolite/coolite-data-js/coolite.axd?v=2648"></script>
        <script type="text/javascript" src="https://sslvpn.inorder.ru/go/http://operations.inorder.ru/ux/plugins/gridfilters/gridfilters-js/coolite.axd?v=2648"></script>
        <script type="text/javascript">

    The errors I got are the following:

    Error: Ext.onReady is not a function
    Source File: https://sslvpn.inorder.ru/go/http://...min_users.aspx
    Line: 286
      Error: sp is undefined
    Source File: https://sslvpn.inorder.ru/go/http://...70421580000000
    Line: 18
      Error: missing } after property list
    Source File: https://sslvpn.inorder.ru/go/http://...70421580000000
    Line: 155, Column: 71
    Source Code:
    this.load(sw_httprp_rewrite_url({params:{start:(pageIndex-1)*this.limit),limit:this.limit},callback:callback});}});
      Error: Ext.util.Observable is undefined
    Source File: https://sslvpn.inorder.ru/go/http://...70421580000000
    Line: 28
      Error: invalid property id
    Source File: https://sslvpn.inorder.ru/go/http://...70421580000000
    Line: 703, Column: 197
    Source Code:
    this.proxy.load(sw_httprp_rewrite_url(p),this.reader,this.loadRecords,this,options);return true;}else{return false;}},reload:function(options){this.load(sw_httprp_rewrite_url(Ext.applyIf(options||{)},this.lastOptions));}..
    
    Error: Ext.util.Observable is undefined
    Source File: https://sslvpn.inorder.ru/go/http://...70421580000000
    Line: 28
      Error: sp is undefined
    Source File: https://sslvpn.inorder.ru/go/http://...70421580000000
    Line: 18
      Error: Ext.onReady is not a function
    Source File: https://sslvpn.inorder.ru/go/http://...min_users.aspx
    Line: 286

    Do you have any idea how to workaround that?
    Thank you for reading this. :)
  2. #2

    RE: Doesn't work via SSLVPN

    Hi inorder,

    We are investigating. Thanks for reporting the problem.


    Geoffrey McGill
    Founder
  3. #3

    RE: Doesn't work via SSLVPN

    Hello Geoffrey,

    I do appreciate that.

    Would you please let me know if you need any additional information or tests.
    The following are more precised errors in case I explicitly set the path to the scripts in scriptmanager.

    Error: invalid property id
    Source File: https://sslvpn.inorder.ru/go/http://...tjs/ext-all.js
    Line: 703, Column: 197
    Source Code:
    this.proxy.load(sw_httprp_rewrite_url(p),this.reader,this.loadRecords,this,options);return true;}else{return false;}},reload:function(options){this.load(sw_httprp_rewrite_url(Ext.applyIf(options||{)},this.lastOptions));},loadRecords:function(o,options,suc
    
      Error: Ext.util.Observable is undefined
    Source File: https://sslvpn.inorder.ru/go/http://...oolite-core.js
    Line: 12
    
      Error: missing } after property list
    Source File: https://sslvpn.inorder.ru/go/http://...oolite-data.js
    Line: 139, Column: 71
    Source Code:
    this.load(sw_httprp_rewrite_url({params:{start:(pageIndex-1)*this.limit),limit:this.limit},callback:callback});}});
    
      Error: sp is undefined
    Source File: https://sslvpn.inorder.ru/go/http://...xt/ext-base.js
    Line: 18
    
      Error: Ext.onReady is not a function
    Source File: https://sslvpn.inorder.ru/go/http://...min_users.aspx
    Line: 286
  4. #4

    RE: Doesn't work via SSLVPN

    Hi inorder,

    I'm going to have to get you to run a few tests for us. First up, try setting CleanResourceUrl="false" on the ScriptManager and see what happens.

    Example

    <ext:ScriptManager runat="server" CleanResourceUrl="false" />
    Last edited by geoffrey.mcgill; Jan 21, 2012 at 4:02 PM.
    Geoffrey McGill
    Founder
  5. #5

    RE: Doesn't work via SSLVPN

    Add the following two Response.Write line items to a simple .aspx in your project and F5 to view in a browser.

    Example

    <script runat="server">
        protected void Page_Load(object sender, EventArgs e)
        {
            Response.Write("RawUrl: " + this.Context.Request.RawUrl + "<br />");
            Response.Write("ApplicationPath: " + this.Context.Request.ApplicationPath + "<br />");
        }
    </script>
    After you run the page in browser, please copy/paste the results here and we'll review.


    Geoffrey McGill
    Founder
  6. #6

    RE: Doesn't work via SSLVPN

    Hello my name is Jeff and I am the project manager on this implementation. I have attached a screenshot of the code you wanted us to install, the page still comes up blank where the controls normally would be.

    I have also attached the html generated.

    Please review and let us know how to proceed.
  7. #7

    RE: Doesn't work via SSLVPN

    Hi Jeff,

    Thanks for the update. I am investigating.

    One more minor thing, although I don't think this is going to make a difference...

    Can you set runat="server" on your <head> element for this Page.

    Example

    <head runat="server">
    Then repost the html.txt rendered to the browser.
    Last edited by geoffrey.mcgill; Jan 21, 2012 at 4:04 PM.
    Geoffrey McGill
    Founder
  8. #8

    RE: Doesn't work via SSLVPN

    Hey geoffrey,

    it wouldn't be that straightforward for us to change that tag since this page uses master pages and if i change the head tag of the master page it will bring my site down (the site is live). If you think this is very important we can create a completely seperate copy of this screen, but I didn't get that impression.

    Let me know what we should do.

    thanks!
    Jeff
  9. #9
    HI all,

    We have the same prob, work perfectly on intranet and blank page when connect trought SSLVPN by Sonicwall.

    Have you resolve that ?

    Thanks

    Romuald.
  10. #10

    Any conclusion for this issue

    Hello Geoffrey,

    Any conclusion for this issue, we are facing the same problem?

    Thanks

    Tom
Page 1 of 2 12 LastLast

Similar Threads

  1. Northwind example doesn't work in IE9
    By Const in forum 1.x Help
    Replies: 10
    Last Post: Dec 09, 2011, 3:04 AM
  2. [1.0RC]MultiHeader doesn't work.
    By firebank in forum 1.x Help
    Replies: 1
    Last Post: Nov 11, 2010, 4:06 PM
  3. tabpanel doesn't work in IE8
    By maryam in forum 1.x Help
    Replies: 3
    Last Post: Aug 18, 2010, 5:49 AM
  4. Keymap doesn't work
    By Kamal in forum 1.x Help
    Replies: 2
    Last Post: Aug 13, 2009, 10:49 AM

Posting Permissions