Hi,
I'm trying to read a binary file from the disk using the file poller and
write its contents into a JMS queue. I figured out that the
BinaryFileMarshaller can be equipped with the content type, which I have set
to "application/octetstream".
Now, the problem is that the conversion into a SOAP message fails. This
seems to be due to the fact that the xfire components try to determine the
content-type-encoding by reading the first 4KB of the file. Unfortunately,
xfire seems to close the stream (i.e. the file) afterwards and consequently
the stream is still closed when xfire tries to create the Base64 encoded
SOAP message.
Is there any way that I can specify the content-encoding-type within the
BinaryFileMarshaller in order to skip the abovementioned "autodetection" of
the encoding? I tried "application/octetstream;
content-type-encoding=base64" but that did not work. Of would I have to use
a different content type? Or can I tell xfire to use base64 encoding without
testing the file?
Please note that we use ServiceMix using the JBoss Installer in JBoss
4.0.4-GA.
Regards
Martin
<sm:activationSpec componentName="filePoller"
service="foo:filePoller"
destinationService="foo:jmsFileIn">
<sm:component>
<bean
class="org.apache.servicemix.components.file.FilePoller">
<property name="file"
value="d:/tmp/wmreader" />
<property name="period"
value="5000" />
<property name="marshaler">
<bean
class="org.apache.servicemix.components.util.BinaryFileMarshaler">
<property
name="contentType"
value="application/octetstream; Content-Transfer-Encoding=base64"
/>
</bean>
</property>
</bean>
</sm:component>
</sm:activationSpec>
<sm:activationSpec componentName="jmsFileIn">
<sm:component>
<jms:component>
<jms:endpoints>
<jms:endpoint
service="foo:jmsFileIn"
endpoint="endpoint" role="provider" destinationStyle="queue"
processorName="jca" jndiDestinationName="queue/C"
jndiConnectionFactoryName="java:/JmsXA" soapVersion="1.2"
soap="true" />
</jms:endpoints>
</jms:component>
</sm:component>
</sm:activationSpec>
--
View this message in context:
http://www.nabble.com/Binary-SOAP-content-in-JMS-tf2310947.html#a6425095
Sent from the ServiceMix - User mailing list archive at Nabble.com.