Difference between revisions of "Publishing Troubleshooting"

Line 9: Line 9:
  
 
==== IIS 5 ====
 
==== IIS 5 ====
 +
 +
Right click the XLCubedWeb foldaer and select "Properties"
  
 
[[File:XLCubedWebConfigIIS5AuthenticationWindows.png|center]]
 
[[File:XLCubedWebConfigIIS5AuthenticationWindows.png|center]]
Line 21: Line 23:
 
=== web.config Settings ===
 
=== web.config Settings ===
  
In the bindings
+
In the bindings section the security should be as follows for each binding.
  
 
     <security mode="TransportCredentialOnly">
 
     <security mode="TransportCredentialOnly">
Line 29: Line 31:
  
 
== Basic Authentication ==
 
== Basic Authentication ==
 +
 +
=== IIS Settings ===
  
 
==== IIS 5 ====
 
==== IIS 5 ====
Line 39: Line 43:
  
 
[[File:XLCubedWebConfigIIS6AuthenticationBasic.png|center]]
 
[[File:XLCubedWebConfigIIS6AuthenticationBasic.png|center]]
 +
 +
=== web.config Settings ===
 +
 +
In the bindings section the security should be as follows for each binding.
 +
 +
    <security mode="TransportCredentialOnly">
 +
        <transport clientCredentialType="Basic"/>
 +
    </security>

Revision as of 11:41, 28 February 2011

When you click "Connect" in the publishing dialog XLCubed will try to contact your web server.

If this fails an administrator can check the following to try to resolve the problem.


Windows Authentication

IIS Settings

IIS 5

Right click the XLCubedWeb foldaer and select "Properties"

FluenceXLWebConfigIIS5AuthenticationWindows.png

IIS 6

FluenceXLWebConfigIIS6Authentication.png
FluenceXLWebConfigIIS6AuthenticationWindows.png


web.config Settings

In the bindings section the security should be as follows for each binding.

   <security mode="TransportCredentialOnly">
       <transport clientCredentialType="Windows"/>
   </security>


Basic Authentication

IIS Settings

IIS 5

FluenceXLWebConfigIIS5AuthenticationBasic.png

IIS 6

FluenceXLWebConfigIIS6Authentication.png
FluenceXLWebConfigIIS6AuthenticationBasic.png

web.config Settings

In the bindings section the security should be as follows for each binding.

   <security mode="TransportCredentialOnly">
       <transport clientCredentialType="Basic"/>
   </security>