0

I'm getting this error :

ERROR com.calyon.espm.businessdelegate.translation.InCacheTranslationDelegateImpl 36  - 
org.springframework.remoting.RemoteAccessException: 
Cannot access HTTP invoker remote service at [http://[url]/reference.espmservice]; 
nested exception is java.io.InvalidClassException: 
org.apache.commons.lang.exception.NestableRuntimeException; 
local class incompatible: 
stream classdesc serialVersionUID = 1, local class serialVersionUID = -8541954612511556316
....
Caused by: java.io.InvalidClassException: org.apache.commons.lang.exception.NestableRuntimeException; local class incompatible: stream classdesc serialVersionUID = 1, local class serialVersionUID = -8541954612511556316

How does it come I get such error since the class InCacheTranslationDelegateImpl have not been recently edited ?

Radhwen
  • 232
  • 4
  • 15
  • 1
    It's only a hint but your exception seems to be the result of a configuration problem. The main error is "Cannot access HTTP invoker remote service at [http://[url]/reference.espmservice]; " where "url" is missinng. Can you check if this message is substituting the real url? If so your configuration is missing that url, the delegate can't open http connection etc. – Rene M. Apr 19 '17 at 10:46
  • You're actually right... It was a network problem. :) – Radhwen Apr 19 '17 at 15:07
  • 1
    No problem. Often it only needs four eyes to see the truth. – Rene M. Apr 19 '17 at 15:10

1 Answers1

0

It was actually a network problem :)

Radhwen
  • 232
  • 4
  • 15