mbiro
Programmer
- Nov 20, 2001
- 304
Dim context As SoapContext = EnrollWS.RequestSoapContext
context.Security.Timestamp.TtlInSeconds = 60
context.Security.Tokens.Add(signatureToken)
context.Security.Tokens.Add(encryptionToken)
context.Security.Elements.Add(New EncryptedData(encryptionToken))
The last line is causing a performance issue. If I comment that line out, the page renders in less than one second. With the line, the page takes over 15 seconds. Any ideas?
context.Security.Timestamp.TtlInSeconds = 60
context.Security.Tokens.Add(signatureToken)
context.Security.Tokens.Add(encryptionToken)
context.Security.Elements.Add(New EncryptedData(encryptionToken))
The last line is causing a performance issue. If I comment that line out, the page renders in less than one second. With the line, the page takes over 15 seconds. Any ideas?