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...
> I'm running into a situation where adding the vmargs isn't sufficient to make the error go away. I'm using the 1.4.0 version of plugin on a Red Hat 7...
> > I'm running into a situation where adding the vmargs isn't sufficient to make the error go away. I'm using the 1.4.0 version of plugin on a Red Hat...
It works in Dotty 0.24.0-RC1: ``` ➜ ~ dotr Starting dotty REPL... scala> class Bar // defined class Bar scala> def f[F[_], A](v: F[A]) = v def f[F[_$1], A](v: F[A]):...