[
https://issues.apache.org/activemq/browse/AMQ-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_38920
]
james strachan commented on AMQ-1075:
-------------------------------------
I've committed the patch from Aleksi Kallio for the DefaultBlobUploadStrategy
and DefaultBlobUploadStrategyTest. I've temporarily disabled the test case for
now until we have an activemq-web-file module for the WAR for hosting the file
upload/download service; then the test case can try use that as an integration
test case
> support for BlobMessage interface to support in-band and out-of-band file
> transfer
> ----------------------------------------------------------------------------------
>
> Key: AMQ-1075
> URL: https://issues.apache.org/activemq/browse/AMQ-1075
> Project: ActiveMQ
> Issue Type: New Feature
> Components: Broker
> Reporter: james strachan
> Fix For: 4.2.0
>
>
> Some new API like this...
> {code}
> public class ActiveMQSession {
> // send a local file or stream over JMS
> public BlobMessage createBlobMessage(InputStream inputStream) {...}
> public BlobMessage createBlobMessage(File file) {..,}
> // send a remote URL over JMS
> public BlobMessage createBlobMessage(URL url) {...}
> }
> public interface BlobMessage extends Message {
> // access the remote resource
> // or for local resources, force creation of temporary file
> // so this resource can be parsed multiple times etc
> URL getURL();
> InputStream getInputStream();
> }
> {code}
> For further discussion see
> http://www.nabble.com/support-for-FileMessage--tf2641673.html#a7373916
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.