Andreas Veithen-2 wrote: > > It's not a bug, it is called "chunked encoding". Obviously your server > is not HTTP 1.1 compliant or refuses chunked encoding. There is an > option in Axis2 to turn that off. By searching the documentation or > the mailing list, you will be able to find some examples. > > Andreas > >
OK. So its a feature. ;) Although it is a pretty big gotcha. I had no idea that ASP.NET development server didn't support chunked. This works for turning chunked off in an ADB Client: stub._getServiceClient().getOptions().setProperty(HTTPConstants.CHUNKED, "false"); despite previous archives that say it didn't work. Anyone have ideas on how to turn it off for JAXWS clients? Nathan -- View this message in context: http://www.nabble.com/The-input-stream-for-an-incoming-message-is-null-tp24067861p24083424.html Sent from the Axis - User mailing list archive at Nabble.com.
