Mario Galic
Mario Galic
Using latest release 1.1.0 I get the same error when instantiating `new ETClient(etConf)`: ``` com.sun.xml.internal.ws.client.sei.SEIStub cannot be cast to org.apache.cxf.frontend.ClientProxy: java.lang.ClassCastException java.lang.ClassCastException: com.sun.xml.internal.ws.client.sei.SEIStub cannot be cast to org.apache.cxf.frontend.ClientProxy at org.apache.cxf.frontend.ClientProxy.getClient(ClientProxy.java:128)...
After setting `accessType=offline` it worked for days but then eventually the following error was again thrown: ``` javax.xml.ws.soap.SOAPFaultException: Token Expired ``` This is breaking our production where we have thousands...
@sharif26 In the following code we are using `Subscriber`, `SubscriberList`, `ETClient.getSoapConnection`: ```scala @Provides @Singleton def getETClient(config: Config): ETClient = { val etConf = new ETConfiguration() etConf.set("accessType", "offline") // DO NOT...
@sharif26 Many thanks for helping but unfortunately we do not have full stack trace of the error, and since we have now removed the client we will be unable to...