NAV2013/2015 Web Client does not work without Internet connection

#nav2015

Hallo, diesesmal ein Problem das nicht von mir selbst sondern von einem Workshop Teilnehmer erkundet und gemeinsam mit MS dann optimiert wurde.

Danke Rene Gubler an dieser Stelle! 

wrote:

We have a workaround in place if you can kindly test this in a development environment first.

For NAV 2013 R2:

1. Open IIS Manager, locate NAV 2013 R2 Web Client, expand it and select Resources folder, right click and select „Explore“
2. In IE download following links:
https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.1.min.js
https://ajax.aspnetcdn.com/ajax/jquery.ui/1.10.2/jquery-ui.min.js
3. Place jquery-1.9.1.min.js and jquery-ui.min.js in the Resources folder
4. Open default.master file from the root of the web client folder
5. Modify following lines:

 

Replace:

  <script src=“https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.1.min.js“ type=“text/javascript“> </script>
  <script src=“https://ajax.aspnetcdn.com/ajax/jquery.ui/1.10.2/jquery-ui.min.js“ type=“text/javascript“> </script>

With:

  <script src=“Resources\jquery-1.9.1.min.js“ type=“text/javascript“> </script>
  <script src=“Resources\jquery-ui.min.js“ type=“text/javascript“> </script>

6. Start RTC Client and go to „Control Add-ins“ page

7. Select Microsoft.Dynamics.Nav.Client.BusinessChart and invoke Export

8. Save the zip file on the disk and unzip it

9. Open the manifest.xml and modify the ScirptUrl tag

Instead of:

<ScriptUrl>https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js</ScriptUrl>

Change it to:

<ScriptUrl>Resources/jquery-1.9.1.min.js</ScriptUrl>

10. Zip the folder back and import in „Control Add-ins“ page

For NAV 2015:

Same as above but the lines in step 5 need to be added to default.master file instead of replacing them. (They don’t exist in NAV 2015).

Kommentar hinterlassen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert