blob: 4aabd9409cf51f6d1c82cb4e416a9ca6fb0a7ebc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.qpid.protonj2.client.examples;
import java.util.concurrent.TimeUnit;
import org.apache.qpid.protonj2.client.Client;
import org.apache.qpid.protonj2.client.Connection;
import org.apache.qpid.protonj2.client.ConnectionOptions;
import org.apache.qpid.protonj2.client.Delivery;
import org.apache.qpid.protonj2.client.Message;
import org.apache.qpid.protonj2.client.Receiver;
import org.apache.qpid.protonj2.client.Sender;
import org.apache.qpid.protonj2.client.SenderOptions;
/**
* Sends a Request to a request Queue and awaits a response.
*/
public class Request {
public static void main(String[] args) throws Exception {
final String serverHost = System.getProperty("HOST", "localhost");
final int serverPort = Integer.getInteger("PORT", 5672);
final String address = System.getProperty("ADDRESS", "request-respond-example");
final Client client = Client.create();
final ConnectionOptions options = new ConnectionOptions();
options.user(System.getProperty("USER"));
options.password(System.getProperty("PASSWORD"));
try (Connection connection = client.connect(serverHost, serverPort, options);
Receiver dynamicReceiver = connection.openDynamicReceiver()) {
String dynamicAddress = dynamicReceiver.address();
System.out.println("Waiting for response to requests on address: " + dynamicAddress);
SenderOptions senderOptions = new SenderOptions();
senderOptions.targetOptions().capabilities("queue");
Sender requestor = connection.openSender(address, senderOptions);
Message<String> request = Message.create("Hello World").replyTo(dynamicAddress);
requestor.send(request);
Delivery response = dynamicReceiver.receive(30, TimeUnit.SECONDS);
Message<String> received = response.message();
System.out.println("Received message with body: " + received.body());
}
}
}