You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The WSSESoapServer class lets you validate WSS Soap, (thank you!), but you can't get access to the certificate/key/thumbprint. The class is simple enough to extend and modify, but an easy fix would be to store $objKey as an instance property so we can do:
$server = new WSSESoapServer($xml);
if ($server->verify()) {
$thumbprint = $server->objKey->getX509Thumbprint();
}
Also, adding an example along with the others would be nice. I can do a pull request if you'd like.
The text was updated successfully, but these errors were encountered:
The
WSSESoapServer
class lets you validate WSS Soap, (thank you!), but you can't get access to the certificate/key/thumbprint. The class is simple enough to extend and modify, but an easy fix would be to store$objKey
as an instance property so we can do:Also, adding an example along with the others would be nice. I can do a pull request if you'd like.
The text was updated successfully, but these errors were encountered: