List of commits:
Subject Hash Author Date (UTC)
Connectie created online with Bitbucket (send en recieve in 1) b484aff52014ff8d1dbaf8387cf1479cf236f33a XCBouke 2017-11-09 14:28:29
Ready for test case 3. Also BIG cleanup. bda906e19e3b82fb91df53eb2208e8def822c6b5 Jan Allersma 2017-11-05 21:38:16
test case 2 fix(?) dd86d637d166707a31b644dad711c7a9e39dbc8d Jan Allersma 2017-11-04 10:55:03
Test case 2 9ea6eadbd85dde0e9522068718092b1f0e9b49f0 Jan Allersma 2017-10-29 22:37:57
Added threading. 4540fe1669c9e145e613edf2459031e7bec500ea Jan Allersma 2017-10-29 20:47:49
Code for testing 16/10/17. Use simulatie/rabbit/combination.py mainly. c5e87d7fe5abbcd3316b1538a0d647fd23faa59f Jan Allersma 2017-10-15 19:13:23
Added more paths. Some of them are WIP. 03ad1039e22bd1ebd301bda99e78f38239a15077 Jan Allersma 2017-09-21 14:40:44
Added paths... 5561d21918f048a40ca9686112638a48805917e3 Jan Allersma 2017-09-21 13:06:43
Added first paths of crossroad. Also added reference of crossroad. 43a5ddf291e38b47bad02a92af58839d86f9d449 Jan Allersma 2017-09-21 12:21:53
Added first paths of crossroad. Also added reference of crossroad. bb687a8152231d0c89fed827baefcfbf067be90c Jan Allersma 2017-09-21 12:21:11
Fixed typo. db82c84f8d834e62cb37333ff973ddc54af5372f Jan Allersma 2017-09-20 20:51:15
RabbitMQ test.First attempt. 876d29c668f5e027a820f3ff48a6ca080fc530c2 Jan Allersma 2017-09-19 13:47:31
Initial commit 6a565c61a3337232d0e7a136ffb2f49b431c2a40 Jan Allersma 2017-09-11 06:52:38
Commit b484aff52014ff8d1dbaf8387cf1479cf236f33a - Connectie created online with Bitbucket (send en recieve in 1)
Author: XCBouke
Author date (UTC): 2017-11-09 14:28
Committer name: XCBouke
Committer date (UTC): 2017-11-09 14:28
Parent(s): bda906e19e3b82fb91df53eb2208e8def822c6b5
Signer:
Signing key:
Signing status: N
Tree: 02563040ee3d2533e67bccdc2a2cf4ad1b875603
File Lines added Lines deleted
Connectie 81 0
File Connectie added (mode: 100644) (index 0000000..b8d340f)
1 package rabbitmq2;
2 //import rabbitmq.Update;
3 import com.rabbitmq.client.*;
4
5 import java.io.IOException;
6 import java.util.concurrent.TimeoutException;
7 import org.json.JSONException;
8 import rabbitmq2.CreateJsonObj;
9 /**
10 *
11 * @author bouke
12 */
13 public class Connectie {
14 private final static String QUEUE_NAME = "hello";
15 private static ConnectionFactory factory = new ConnectionFactory();
16 private static Connection connection = null;
17 private static Channel channel;
18 private static Connectie p;
19 private final static String host = "localhost";
20 private final CreateJsonObj CJO = new CreateJsonObj();
21
22
23 public static Connectie instance()
24 {
25 return p;
26 }
27
28 public Connectie() throws IOException, JSONException
29 {
30
31 channel = connection.createChannel();
32 channel.queueDeclare(QUEUE_NAME, false,false,false,null);
33
34 channel.basicQos(1);
35
36 Consumer consumer = new DefaultConsumer(channel) {
37 @Override
38 public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body)
39 throws IOException {
40 String message = new String(body, "UTF-8");
41
42 System.out.println(" [x] Received '" + message + "'");
43 }
44 };
45 channel.basicConsume(QUEUE_NAME, false, consumer);
46 }
47 /**
48 * @param args the command line arguments
49 */
50 public static void main(String[] args) throws IOException, TimeoutException {
51 // TODO code application logic here
52
53 factory.setHost(host);
54 try
55 {
56 connection = factory.newConnection();
57 p = new Connectie();
58
59 }
60 catch (Exception ex)
61 {
62 ex.printStackTrace();
63 System.exit(1);
64 }
65 // message = instance().CJO.JSONobj;
66 System.out.println(instance().CJO.JSONobj);
67 try
68 {
69 Channel testChannel = connection.createChannel();
70 testChannel.basicPublish("", QUEUE_NAME, null, instance().CJO.JSONobj.toString().getBytes("UTF-8"));
71 System.out.println(" [x] Sent '" + instance().CJO.JSONobj.toString() + "'");
72 testChannel.queueDelete(QUEUE_NAME);
73 }
74 catch(IOException ex)
75 {
76 ex.printStackTrace();
77 }
78 }
79
80
81 }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/kapstok/NHL-SoftDev

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/kapstok/NHL-SoftDev

Clone this repository using git:
git clone git://git.rocketgit.com/user/kapstok/NHL-SoftDev

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main