Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
0.94
-
None
-
P4, Windows XP Pro, Java JDK 1.5.0_06
Description
A method (web service) invoks two other web services:
final String ENDPOINT1 = "http://...";
public String say(String data) {
//first call
String endpoint2 = invokeEchoBlocking(ENDPOINT1, "say", data);
//second call
String result = invokeEchoBlocking(endpoint2, "say", data);
return result;
}
On every invocation two new threads arise visible in the Task-Manager
of Windows; they don't close. Axis 1.3 don't show this behaviour.