I wrote a Java application to communicate with a web application using XML. After deployment, I found out that it takes too much time to parse the XML generated by the web application.
For example, it takes about 2 minutes to enter; registration information is included in the URL. The web application does its processing and responds to the Java application whether the login using the returned XML was successful.
I used the standard DOM parsing in java format.
Is there a way to optimize this process so that actions can be faster?
source
share