How are you "posting from your code"? When I send a message over HTTP directly from code I just open a socket to the server and write the XML directly to it.
However when you POST from a form it becomes a multipart request. Each form element is a part in the request and surrounded by identifiers. My guess is that the HTTP binding component does not support multipart requests. Something that should be fairly easy to add with the Apache Commons Fileupload that handles multi-part requests. http://jakarta.apache.org/commons/fileupload/ -- View this message in context: http://www.nabble.com/Http-binding-question-tf1906680.html#a5239353 Sent from the ServiceMix - User forum at Nabble.com.
