Hi,
Axis 1.3 hangs, if I submit an invalid namespace in the SOAP header: <?xml version='1.0' encoding='utf-8'?> <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> <S:Header> <username xmlns="tt">user</username> <password xmlns="tt">pass</password> </S:Header> <S:Body> <getWeather xmlns="schema.tt.ws.weather" xmlns:ns3="dto.weather.ws.tt.de.xsd" xmlns:ns2="weather.ws.tt.de.xsd"> <language>DE</language> <parameters> <ns2:accomCode xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /> <ns2:weatherAirport>PMI</ns2:weatherAirport> </parameters> </getWeather> </S:Body> </S:Envelope> Axis delivers a correct answer to this request, but does not react to any following request. Tomcat 5.5 is still alive after this request. The Axis happiness page does not show any errors or faulty services. The only way is to restart tomcat. When I modify the header parameter everything works fine: <?xml version='1.0' encoding='utf-8'?> <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> <S:Header> <username>user</username> <password>pass</password> </S:Header> <S:Body> <getWeather xmlns="schema.tt.ws.weather" xmlns:ns3="dto.weather.ws.tt.de.xsd" xmlns:ns2="weather.ws.tt.de.xsd"> <language>DE</language> <parameters> <ns2:accomCode xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /> <ns2:weatherAirport>PMI</ns2:weatherAirport> </parameters> </getWeather> </S:Body> </S:Envelope> Can anybody explain this? Is it a bug? Thanks a lot, Jan
