Microsoft SDK XRM GetProxy“NoURL”

时间:2016-09-02 10:17:11

标签: c# sdk microsoft-dynamics xrm

我们正在使用本指南并在GetProxy期间停留。

https://msdn.microsoft.com/en-us/library/hh675404.aspx

它给了我们这个错误:

  

mscorlib.dll中发生未处理的“System.ServiceModel.Security.MessageSecurityException”类型异常

     

附加信息:从另一方收到了无担保或不正确安全的故障。请参阅内部FaultException以获取故障代码和详细信息。

当我们看到InnerException时:

  

{System.ServiceModel.FaultException:Authentication Failure NoURL}

我们正在为Office365 XRM使用OnlineFederation AuthenticationProviderType。

我们如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

如果您使用的是MS CRM 2016,请在解决方案中安装以下软件包

Link to Package

puts "Enter your name: "
#flush stdout set name [gets stdin]

    set in [open session.mvw r]

    # get the path to the parent directory
    set hostDir [file dirname session.mvw]
    set tempfile "$hostDir/temp2.txt"

    # open/create a temp file
    set out [open $tempfile w]
    set count 0

    while { [eof $in] != 1 } {
        gets $in line
        #set firstItem [lindex $line 0]   incr count
        # a match has been found...
        if {$count == 2 } {
            puts $out {GRAPHIC_FILE_1 = "E:/ge work/hyperview scripting/${name}.rst"}
        } elseif {$count == 3} {
            puts $out {GRAPHIC_FILE_1 = "E:/ge work/hyperview scripting/${name}.rst"}
            } else {
            puts $out $line 
            }
        }
    close $in
    close $out
    close $hostDir

    # over-write the existing file
    #file rename -force $tempfile session_file.mvw