[DISCUSS] ActiveMQ and Artemis Store based tooling

2015-11-11 Thread Christopher Shannon
I wanted to see what everyone thought about creating a new ActiveMQ sub
project for store based tooling for both 5.x and Artemis.  The idea here
would be able to support a command line tool that could eventually do a
variety of things such as:

*import/export a store into other formats like XML
*exporting a subset of messages (maybe a single destination)
*migration from a 5.x based store like KahaDB to an Artemis store to help
with people trying to upgrade to Artemis
*For KahaDB, things like store compaction, OpenWire upgrades, etc.

Plus I'm sure there are plenty of other useful things that people might
think of.

Artemis already has some support for this (such as exporting to XML) so
maybe some of that could be moved into this project if it is created.

What does everyone think?


[GitHub] activemq-artemis pull request: ARTEMIS-300 deprecate basic securit...

2015-11-11 Thread clebertsuconic
Github user clebertsuconic commented on the pull request:

https://github.com/apache/activemq-artemis/pull/241#issuecomment-155845688
  
There's a little problem with security settings on the CLI...

the role passed as argument is not being taken into generating the 
broker.xml


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


NMS Client -Exception message is not propagated in case of consumption failure

2015-11-11 Thread wiwi
Hi

Can someone comment on this  issue
  



--
View this message in context: 
http://activemq.2283324.n4.nabble.com/NMS-Client-Exception-message-is-not-propagated-in-case-of-consumption-failure-tp4703859.html
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.


System.IO.EndOfStreamException when closing connection in NMS

2015-11-11 Thread undecided
Connecting like this
amqStuff = new AMQStuff();
 amqStuff._factory = new
ConnectionFactory("failover:(tcp://127.0.0.1:61616)");
 amqStuff._connection = amqStuff._factory.CreateConnection("admin",
"admin");
 amqStuff._session = amqStuff._connection.CreateSession();
 amqStuff._topic = amqStuff._session.GetTopic("TEST");
 amqStuff._consumer =
amqStuff._session.CreateConsumer(amqStuff._topic);

Closing like this:
if (amqStuff != null)
 {
 amqStuff._consumer.Close();
 amqStuff._session.Close();
 amqStuff._connection.Stop();
 amqStuff._connection.Close();
 amqStuff = null;
 }

The exception is thrown at the _connection.Close()

This is with the default windows installation. I see the connection come and
go on the web console.
Thanks





--
View this message in context: 
http://activemq.2283324.n4.nabble.com/System-IO-EndOfStreamException-when-closing-connection-in-NMS-tp4703853.html
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.


Re: System.IO.EndOfStreamException when closing connection in NMS

2015-11-11 Thread Timothy Bish
On 11/11/2015 09:55 AM, undecided wrote:
> Connecting like this
> amqStuff = new AMQStuff();
>  amqStuff._factory = new
> ConnectionFactory("failover:(tcp://127.0.0.1:61616)");
>  amqStuff._connection = amqStuff._factory.CreateConnection("admin",
> "admin");
>  amqStuff._session = amqStuff._connection.CreateSession();
>  amqStuff._topic = amqStuff._session.GetTopic("TEST");
>  amqStuff._consumer =
> amqStuff._session.CreateConsumer(amqStuff._topic);
>
> Closing like this:
> if (amqStuff != null)
>  {
>  amqStuff._consumer.Close();
>  amqStuff._session.Close();
>  amqStuff._connection.Stop();
>  amqStuff._connection.Close();
>  amqStuff = null;
>  }
>
> The exception is thrown at the _connection.Close()
>
> This is with the default windows installation. I see the connection come and
> go on the web console.
> Thanks
>
>
>
>
>
> --
> View this message in context: 
> http://activemq.2283324.n4.nabble.com/System-IO-EndOfStreamException-when-closing-connection-in-NMS-tp4703853.html
> Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.
>
Always a good idea to share the versions you are working with.

-- 
Tim Bish
Sr Software Engineer | RedHat Inc.
tim.b...@redhat.com | www.redhat.com 
twitter: @tabish121
blog: http://timbish.blogspot.com/



[GitHub] activemq-artemis pull request: Artemis-301 & Artemis-302

2015-11-11 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/activemq-artemis/pull/240


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: [DISCUSS] ActiveMQ 5.13.0 Release Date

2015-11-11 Thread Timothy Bish
On 11/11/2015 10:17 AM, Christopher Shannon wrote:
> Hi Everyone,
>
> It's been 3 months since 5.12 was released and there has been some
> significant work on new features and many improvements since then.
>
> Here is the current release notes:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311210=12329848
>
> I was thinking about calling a vote for a release in the 2-3 week time
> frame and wanted to see if there were any blockers that would prevent this.
>
+1

There's been several new features added for 5.13.0 so it would be good
to get a release out so folks can try them out and let us know what
needs hardening. 

-- 
Tim Bish
Sr Software Engineer | RedHat Inc.
tim.b...@redhat.com | www.redhat.com 
twitter: @tabish121
blog: http://timbish.blogspot.com/



Re: System.IO.EndOfStreamException when closing connection in NMS

2015-11-11 Thread undecided
Interestingly enough, when I replaced the failover transport with just tcp:\\
The exception type changed to System.IO.IOException.



--
View this message in context: 
http://activemq.2283324.n4.nabble.com/System-IO-EndOfStreamException-when-closing-connection-in-NMS-tp4703853p4703861.html
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.


[DISCUSS] ActiveMQ 5.13.0 Release Date

2015-11-11 Thread Christopher Shannon
Hi Everyone,

It's been 3 months since 5.12 was released and there has been some
significant work on new features and many improvements since then.

Here is the current release notes:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311210=12329848

I was thinking about calling a vote for a release in the 2-3 week time
frame and wanted to see if there were any blockers that would prevent this.


Re: System.IO.EndOfStreamException when closing connection in NMS

2015-11-11 Thread undecided
Thx, I forgot to attach that. I am using latest version of both
NMS/NMS.ActiveMQ (1.7.1) and AMQ (5.12.1).



--
View this message in context: 
http://activemq.2283324.n4.nabble.com/System-IO-EndOfStreamException-when-closing-connection-in-NMS-tp4703853p4703858.html
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.


[GitHub] activemq-artemis pull request: ARTEMIS-300 deprecate basic securit...

2015-11-11 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/activemq-artemis/pull/241


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: NMS Client -Exception message is not propagated in case of consumption failure

2015-11-11 Thread Jim Gomes
Some sample code showing the expected behavior might be helpful. Given
that, there may be a way to modify it to get the desired behavior back
using the new client.

Please attach it to the JIRA issue.

On Wed, Nov 11, 2015, 9:48 AM wiwi  wrote:

> Hi
>
> Can someone comment on this  issue
> 
>
>
>
> --
> View this message in context:
> http://activemq.2283324.n4.nabble.com/NMS-Client-Exception-message-is-not-propagated-in-case-of-consumption-failure-tp4703859.html
> Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.
>