I have requirement where i need to call webservice from my code which is external service opened up.
I am using Spring RestTemplate for calling external service.
entityObj carries my request Object which is been marshalled.
when i have my request object(XML) limited to 2o elements my external service receives the request object then processs it and send out the response, if number of request elements exceeds 20 then external service is not receiving any request. mean while my server hangs out and seems to be waiting for response. I dont know where i am going wrong. I am using weblogic server for posting http request.
Note :-
I tested using my
Junit where i posted 40 elements and it was successful.. the problem happen when i deploy into weblogic server. server might be blocking the data for some reason ..
I really appreciate response.