Long explanation: think about SOAP web services in terms of SOAP protocol specification. Web services is not just a fancy layer on top of HTTP, it is actually a way to describe two-way communication with various message exchange patterns implemented. The following patterns are most common ones:
request-response (In-Out): in HTTP environment this is a typical HTTP request/response call with some request message being sent from client to server and some response message is sent back. In JMS environment you would get two separate and independent messages.
one-way (In-Only): in this model the client send a request but does not expect nor care about the response. In JMS it is equivalent to a simple message sent to the broker. In HTTP on the other hand (at least this is how one-way methods are implemented in Apache CXF) you will get a void method on SEI. Moreover, CXF by default will use a separate thread pool to handle this request, so the client doesn't even wait for the response and the server is not even able to send that response (because the client might have already disconnected).
Now the important part: in WSDL you either define a method as request/response (by defining in/out messages) or as one-way (by only providing in message). This is fixed in service contract. You cannot make a method that once returns response (out message to be precise) while other times it does not.
Obviously you can define an out message that can be empty or contain some content, but you still have to return something.
Short explanation: SOAP protocol is not flexible enough to fulfil your requirement. You either return a response or not. Create two methods and choose which one to call on the client side rather than adding custom headers.
Another tip: you might use ESB to perform some sort of transformation so that the response is discarded in presence of some SOAP header.