A use case is that an application (running on JBoss 5) should run at very limited bandwidth. Currently, every time we go to a webservice call, we request wsdl and recreate the stub using JAX-WS . Each time a stub is created, wsdl and the circuit reboot. Idealy wsdl will never load, since we already have a copy of the circuit, but even caching will work. Reward Points if the cache is Serializable!
Can I cache the JAX-WS stub / port?
source share