I am trying to use a 3rd party authentication web service at a customer site. the web services was written in .Net and accepts SecureString as password type.
AuthResult Login(string username, SecureString passkey)
public class SecureString implements java.io.Serializable {
public SecureString() {
...
}
}
After more research, I can say that the .Net type of SecureString
is not inter-operable. I have put the request out to the Service Provider to write a service that takes char[]
as parameter.