reinierl
reinierl
This duplicates #19. As noted there, the only example is [the OcppProcessing test](https://github.com/NewMotion/ocpp-soap/blob/master/ocpp-spray/src/test/scala/com/thenewmotion/ocpp/spray/OcppProcessingSpec.scala). Not really Scala novice material I'm afraid.
This library only provides connection and channel management. Consuming and publishing you should still do yourself using RabbitMQ's API, and I don't see a reason why you could also cancel...
By sending a `ChannelMessage` to the channel actor, e.g.: ```scala def setupChannel(channel: Channel, self: ActorRef) { channel.queueDeclare("queue_name", false, false, false, null) } val channelActor: ActorRef = connectionActor.createChannel(ChannelActor.props(setupChannel)) def publish(channel: Channel)...
Hmm, yes, I see. I suppose you call `basicConsume` in the channel setup closure, and then you get a consumer tag. But then there is no nice way to pass...
I had the same naming problem. I like `generic_call` a bit better than `send_call` but it still looks clunky. So if the `generic_call` method takes a Call object, then the...
@OrangeTux I made some changes and I hope it's good to go like this. If you have more ideas about the name and interface for `generic_call` aka `send_call`, let me...
@OrangeTux @Jared-Newell-Mobility I would like to get this merged. Is there anything I can do to make it happen?
You'd have to expect the incoming message and specify the TriggerMessageRes as the response to it: ```expectIncoming(triggerMessageReq.respondingWith(TriggerMessageRes(TriggerMessageStatus.Accepted)))``` (typing off the top of my head in the Github comment field, there...
Yes you're right. You can add it just like the other ones.
Hi Meran, Cool that you're using this tool :). What do you mean exactly by "without prior preparation"? I can imagine two things: 1. Without knowing exactly what happens before...