- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个要在 Windows Phone 8 应用程序中使用的 WCF SOAP Web 服务。
这是我的服务的 web.config :
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="ersteinb">
<security mode="TransportWithMessageCredential"/>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint contract="PDAErsteinService.IPDAErsteinMobileService" binding="basicHttpBinding" bindingConfiguration="ersteinb" name="PDAErsteinMobileServiceEndPoint"/>
</client>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- Pour éviter la divulgation des informations sur les métadonnées, définissez la valeur ci-dessous sur false et supprimez le point de terminaison des métadonnées ci-dessus avant le déploiement. -->
<serviceMetadata httpGetEnabled="true"/>
<!-- Pour recevoir les détails d'exception des erreurs à des fins de débogage, définissez la valeur ci-dessous sur true. Définissez-la sur false avant le déploiement pour éviter la divulgation des informations d'exception. -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
我需要在调用我的服务时发送凭据,因为他在反向代理下。
我找不到除此之外的其他方法来使用凭据调用我的服务:
PDAErsteinMobileServiceClient client = new PDAErsteinMobileServiceClient();
client.clientCredentials.UserName.UserName = "foo";
client.clientCredentials.UserName.Password = "foofoo";
client.GetAttelageCollectionCompleted += client_GetAttelageCollectionCompleted;
client.GetAttelageCollectionAsync();
使用这种方法,我得到了这样的异常:
System.ServiceModel.ProtocolException exception was not handled by user HResult code = 2146233087 Message = The remote server returned an unexpected response: (401) Authorization Required. In Silverlight, a 404 response code may be reported even when the service sends a different error code. Source = System.ServiceModel StackTrace: [...]
我确定我的凭据没问题,但我很确定我没有以正确的方式发送它们。如果不是那样,那可能是我在 web.config 中的安全性是错误的。
当我尝试在 ConsoleApplicationProject 中调用此服务时,我得到了这个异常:
System.ServiceModel.Security.MessageSecurityException exception was not handled HResult = 2146233087 Message = the HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Basic realm = "Foooo" '. [...]
有人可以在 WP8 中使用 Credentials 发布带有 Web 服务调用的示例吗?
最佳答案
如果可以使用<security mode="TransportCredentialOnly" />
那么你的问题就解决了
请注意您提供的配置中缺少端点地址,我假设您已经这样做了,所以不要透露您的 url。
客户端 web.config 的变化
<bindings>
<basicHttpBinding>
<binding name="ersteinb">
<security mode="TransportCredentialOnly"/> //note this change
</binding>
</basicHttpBinding>
</bindings>
更改调用服务的代码:
PDAErsteinMobileServiceClient client = new PDAErsteinMobileServiceClient();
using (OperationContextScope scope = new OperationContextScope(client.InnerChannel)) {
HttpRequestMessageProperty request = new HttpRequestMessageProperty();
request.Headers[System.Net.HttpRequestHeader.Authorization] = "Basic " + EncodeCredentials("foo", "foofoo");
OperationContext.Current.OutgoingMessageProperties.Add(HttpRequestMessageProperty.Name, request);
client.GetAttelageCollectionAsync();
}
//use this function
private string EncodeCredentials(string username, string password) {
string credentials = username + ":" + password;
var asciiCredentials = (from c in credentials
select c <= 0x7f ? (byte)c : (byte)'?').ToArray();
return Convert.ToBase64String(asciiCredentials);
}
服务 web.config 的变化
<system.serviceModel>
<services>
<service behaviorConfiguration="ValidatorServiceBehaviour"
name="WCFServiceLibrary.SettingsService">
<endpoint binding="basicHttpBinding"
bindingConfiguration="ValidatorBinding"
contract="PDAErsteinService.IPDAErsteinMobileService" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/PDAErsteinService/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ValidatorServiceBehaviour">
<serviceDebug httpsHelpPageEnabled="true"
includeExceptionDetailInFaults="true" />
<serviceMetadata httpGetEnabled="true" />
<serviceCredentials>
<userNameAuthentication userNamePasswordValidationMode="Custom"
customUserNamePasswordValidatorType="UserValidator.Validator, UserValidator" />
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding name="ValidatorBinding">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Basic"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
关于c# - WP8 应用程序中具有 WCF 服务的凭据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24648843/
我有一个问题,我不断收到错误 没有为“svn.ssl.server”凭据注册的提供者 我正在使用在另一台 SVN 服务器上工作的相同代码,但我设置的新服务器似乎无法连接,即使我可以通过 Web 浏览器
如何通过 shell 在 Hudson 中输入 subversion 凭据? 我尝试在 HUDSON_HOME 中生成文件 hudson.scm.SubversionSCM.xml 并重新加载配置,但
我正在尝试使用 powershell 访问远程注册表,如下所示: $reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey("LocalMachi
我需要将凭据存储在 powershell 中以便多次使用。 StackOverflow 上有很多例子,所以我拿了一个 $tmpCred = Get-Credential $tmpCred.Passwo
我遇到了 youtube java 凭据的问题,通常它运行良好并且我能够上传到 youtube,但今天我收到此异常无效的凭据。 YouTubeService service = new YouTube
我正在阅读中提供的 Hadoop 凭证文档 https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-common/Crede
我想知道在为 MySQL 凭据/主机创建变量时最佳做法或建议做什么。 define('HOST', 'localhost'); // etc.. mysql_connect(HO
我试图让 Jenkins 从 BitBucket 克隆我的 mercurial 项目。它不会,因为它说凭据有问题 - 好吧,bitbucket 拒绝 Jenkins 提供的任何内容。 我几乎 100%
这里有一百万篇关于如何使用 git 缓存凭据的帖子。但是,如果机器重新启动,它们似乎都不成立。有没有办法缓存在机器重新启动时持续的凭据? 最佳答案 是的,在 Debian 和 Ubuntu 上,您可以
我正在尝试在我的环境中为 IIS 节点使用共享配置,我想使用组托管服务帐户凭据来实现这一目标。 当我将应用程序池的凭据应用为 MyDomain\GmsaAccount$ 时,它运行良好,但是当我尝试在
我创建了一个应用程序,它充当 2 个不同 API(WebEx 和 Exchange Web 服务)和电子邮件之间的桥梁。用户向一个特殊的电子邮件地址发送日历邀请,该应用程序解析 ICS 并创建一个 W
我正在尝试将凭据从 Jenkins 迁移到另一个凭据存储。 我想从 Jenkins 商店读取凭据,并找到了这个脚本 ( https://github.com/tkrzeminski/jenkins-g
我有一个在 Windows 上运行的 Jenkins 服务器。它将用户名:密码存储在凭据插件中。这是一个定期更新密码的服务用户。 我正在寻找一种运行脚本的方法,最好是 Powershell,它将更新
我想知道如何创建 Jenkins 和 Jenkins 中运行的作业可以使用的凭据以连接到 3rd 方服务。 最佳答案 您应该指定您将使用的第 3 方服务。 以下是带有 的凭据示例bitbucket 我
我正在一个网站上工作,我们希望使用 Spring Security Kerberos 使用 Kerberos 身份验证。所以,我们不支持 NTLM。当用户发出未经身份验证的请求时,服务器将回复带有 h
如果我设置 git config --global credential.username my_username 选项,然后使用 --local 选项覆盖一个存储库,这并没有什么区别 - 它在尝试提
我正在尝试使用需要 gce_client_id 和 gce_client_secret key 的第 3 方应用程序。为了生成它们,我浏览了凭据图标并尝试创建一个 OAuth 2.0 客户端 ID。但
我在使用 Azure 时遇到身份验证问题。我有一个运行 powershell 脚本的连续构建服务器,我收到如下消息: Your Azure credentials have not been set
首先,我想说我在安全和身份验证方面的知识非常有限。 我有一个应用程序可以从 docker store 中提取和运行容器。这是一个私有(private)仓库,所以我需要传递用户名和密码,以便用户可以拉取
我使用 Google 文档中的代码(如下所示)来管理 Google 日历。 public class CalendarQuickstart { private static final Str
我是一名优秀的程序员,十分优秀!