我有以下 F# 代码来使用类型提供程序访问 Web 服务。调用web方法时出现缺少用户名的错误。
An unhandled exception of type 'System.InvalidOperationException' occurred in mscorlib.dll
Additional information: The username is not provided. Specify username in ClientCredentials.
如何设置用户名/密码?我尝试使用代码智能来获取属性来设置它们,但找不到它们。
open System
open System.ServiceModel
open Microsoft.FSharp.Linq
open Microsoft.FSharp.Data.TypeProviders
type service = WsdlService<"https://services.....?wsdl">
[<EntryPoint>]
let main argv =
let client = service.GetBasicHttpBinding_IXxxDataStorage()
let forecast = client.GetSomeList("201401") // Error: username not set
0 // return an integer exit code
我认为这可以解决问题。在 ClientCredentials
中嗅探各种旋钮以在此处转动。
client.DataContext.ClientCredentials.UserName.UserName <- "user"
client.DataContext.ClientCredentials.UserName.UserName <- "password"
我是一名优秀的程序员,十分优秀!