Please, help me with token validation issue.
I Create token with CreateImpersonationTokenRequest2
In a loop I validate token. If valid, I do some actions.
To validate token I create ValidateTokenRequest1, set AppID and Token to the request Header, then set the AppID and Token (the same) to the request Body
Validation is OK, response is "true" (valid). But after 1,5 hours while validating token i got an exception:
Caused by: com.thomsonreuters.webservice.trkd.token.http.ITokenManagement1ITokenManagement1HttpAndRKDTokenValidateToken1ClientErrorReferenceFaultMessage: Object reference not set to an instance of an object. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:141) at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:119) at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:89) at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:140) at com.sun.proxy.$Proxy44.validateToken1(Unknown Source) at com.thomsonreuters.webservice.trkd.client.AuthorizationService.isAuthorizationValid(AuthorizationService.java:133) ... 3 more
I know that after 1,5 hour the token is became invalid, but i expect to get "false" from ValidateTokenResponse1
What I'm doing wrong?