We cannot suggest a whole lot with this much information.
What's in RabbitMQ logs? (HTTP request logging is enabled separately, see
http://www.rabbitmq.com/management.html)
What does your code look like?
Have you tried using a Java debugger to learn what's going on?
"nothing happens" is not terribly specific .
On 8 April 2016 at 21:52:39, Michael Klishin (
mkli...@pivotal.io) wrote:
> Hop is an HTTP API client. It is a completely different library from the
> RabbitMQ Java client.
>
> Sorry but general Java and Maven dependency management questions are
> outside of the scope of this list.
>
> On Fri, Apr 8, 2016 at 7:54 PM, Anisha Kamble wrote:
>
> > Ah I finally see it now. Thank you :)
> >
> >
> > On Friday, 8 April 2016 12:45:56 UTC-4, Anisha Kamble wrote:
> >>
> >> Are you updating the doc as I post here? :)
> >>
> >> Right now this is what I have:
> >>
> >>
> >> spring-milestones
> >>
http://repo.spring.io/milestone
> >>
> >>
> >>
> >> com.rabbitmq
> >> http-client
> >> 1.0.0.M1
> >>
> >>
> >>
> >> The packages are still the same.
> >>
> >>
> >> On Friday, 8 April 2016 12:39:39 UTC-4, Anisha Kamble wrote:
> >>>
> >>> I tried also with version 1.0.0.M1. Same result.
> >>>
> >>> On Friday, 8 April 2016 12:36:03 UTC-4, Anisha Kamble wrote:
> >>>>
> >>>> I've added the following to my parent project's pom:
> >>>>
> >>>> spring-releases
> >>>>
https://repo.spring.io/release
> >>>>
> >>>>
> >>>> And the following to the child project (where my actual class is):
> >>>>
> >>>> com.rabbitmq
> >>>> http-client
> >>>> 1.0.0.RELEASE
> >>>>
> >>>>
> >>>> It got the following jars:
> >>>> amqp-client-3.0.3
> >>>> spring-rabbit-1.3.3.RELEASE
> >>>>
> >>>> However, the amqp-client-3.0.3 jar only has the following packages:
> >>>> com.rabbitmq.client
> >>>> com.rabbitmq.client.impl
> >>>> com.rabbitmq.tools
> >>>> com.rabbitmq.tools.json
> >>>> com.rabbitmq.tools.jsonrpc
> >>>> com.rabbitmq.utility
> >>>>
> >>>> Did I do something wrong? I've cleaned and updated the Maven
> >>>> dependencies multiple times.
> >>>>
> >>>> On Friday, 8 April 2016 12:26:25 UTC-4, Michael Klishin wrote:
> >>>>>
> >>>>> It's certainly there:
> >>>>>
> >>>>>
https://github.com/rabbitmq/hop/tree/master/src/main/java/com/rabbitmq/http/client
> >>>>>
> >>>>> The API hasn't changed in any significant way since the very first
> >>>>> version. Please check that
> >>>>> Hop dependency resolves in your project/build system.
> >>>>>
> >>>>> On Fri, Apr 8, 2016 at 6:54 PM, Anisha Kamble