Ok. I will let you know later this week.
Thanks for your time
On May 5, 1:00 pm, "A.V." <
aiyla...@gmail.com> wrote:
> Hello,
>
> I would start by putting in some instrumentation to find out exactly
> what is taking up the time (I am not yet convinced it is DOM usage). There
> are (at least) three components that can contribute to elapsed time that I
> can see:
>
> - Device response/latency.
> - Conversion of over-the-wire SSH to a DOM.
> - Creation of actual POJOs using reflection.
>
> It probably makes sense to come up with root cause, by checking the
> timings on each component:
>
> - If you have another tool to go against the device (or can use straight
> SSH), that would address device response times.
> - If you use SshTransportClientTest (and not actually create/manipuate
> Java objects), that would address DOM conversion.
> - If the above two are performant, you can add POJO creation and verify