Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
1k views

iPhone App Store 'Prepare for Upload' forever

I added two applications to my iTunes Connect account 10 days ago or so. One was a 'light' version, the other I'll charge for. The full version is already on the app store, but the status of the free ...
3
votes
2answers
3k views

How to turn off certificate revocation for a WCF service's client?

How can I turn off certificate revocation for a WCF service's client? The client proxy was generated by wsdl.exe and inherits SoapHttpClientProtocol.
1
vote
2answers
69 views

submitting ios app using the private key of a revoked distribution certificate

I have a distribution certificate that is still valid on my mac. the team agent revoked it in the ios portal by mistake. Am I still able to use the old certificate to submit apps to the app store? ...
1
vote
2answers
436 views

Is there a (simple) way to parse CRL in Python?

I'm trying to do something stupid: load a CRL and output the list of revoked certificates serials. With M2Crypto loading the CRL is done with: import M2Crypto crl = M2crypto.X509.load_crl('my.crl') ...
0
votes
0answers
58 views

Checking local CRL using WebResponse object in .NET

Given that IIS can work against a locally loaded certificate revocation list (CRL) by installing the CRL via MMC is it possible to validate against the same local CRL when using the .NET object ...
0
votes
0answers
589 views

X509 CRL check in offline root ca environment using Windows Identity Foundation

I have a web application which is using the default certificateValidation settings for token handling within Windows Identity Foundation, i.e. certificateValidationMode="PeerOrChainTrust" and ...
0
votes
0answers
274 views

CRL and OCSP behavior of iOS / Security.Framework?

I'm trying to figure out what iOS' policy is when verifying certificates using Security.Framework regarding revocation of certificates. I cannot find information about this in the docs for iOS. In the ...
0
votes
0answers
310 views

Certificate Revocation List not found by Windows

I made my own CA for Authenticode to be used by third party developers for an application I'm writing. I want to make sure that I can revoke certificates, and am testing the CRL behavior of my CA and ...
0
votes
2answers
181 views

Disable CRL check for VB6 applications

One of our customers has an issue with our applications - they take about 2 minutes to start. I ran Process Monitor along with one of the simplest applications and found out the process is trying to ...
0
votes
1answer
145 views

Azure certificates and certificate revocation lists (CRL)

All, Does anyone have a best a view on best practice for CRL usage on Azure? Background: Azure hosted service that uses Client certificates for authentication. We have a CA (that we own, manage and ...
0
votes
0answers
304 views

Iphone Push Notification: Certicate revoked

I've an Iphone application made with Titanium, I've enabled notifications. In order to send the notifications (sandbox) I'm using https://github.com/simonwhitaker/PyAPNs, everything was working ...
0
votes
1answer
958 views

Programmatically installing certificate revocation list C#

I am using C#/WCF. I have a web service which shall be invoked by the client. This is the service definition: And this is the binding ...