Thanks for your suggestion Jay!
Caching the Service object by keeping a reference would definitely help, I think, but as my clients are called by command line and always start a new VM for architecture reasons, I can't keep the Service object in memory. I need a way to make the first Service() instatiation faster.
When I test multiple requests within a single application, all calls except the first are fast even with creating a new Service object with every call, so caching would be unneccessary.
... Except if you know a technique to cache a Service object to disc.
Is the Service object serializable?
Do think it would work to write the service object to disc in serialized form?
Has anyone tried something like this?
Greetings - Felix
