I have a C# WCF basicHttpBinding Streaming WebService.
The signature of the method that I want to access is:
[OperationContract]
void SendStream(Stream stream);
However, when I try to add it as a standard Java Web Service Client into my Netbeans project. The auto-generated proxy method signature gets changed to:
void SendStream(byte[] stream)
(Basically streaming is removed).
Is there a simple way to achieve streaming on the java side? I would rather avoid implementing chunking if possible.