A programmable server and client IHE-XDSb.
git clone https://github.com/giosil/wxdsb.git
mvn clean install
- this will producewxdsb.war
intarget
directorymvn dependency:copy-dependencies
- this will copy jars intarget/dependency
directorymvn clean install -f pom2.xml
- this install wxdsb as library
docker build -t <image_name> .
this will create a Docker image named <image_name>
tcpdump --list-interfaces
(to show interfaces) or ip link show
tcpdump -i eth0 -A port 8080 -s 65535 -w tcpdump.log &
(-i interface, -A Print each packet in ASCII, -s snaplen, -w file in binary pcap format)
tcpdump -r tcpdump.log -A
(to read pcap file, -A include ASCII content)
mvn test -DargLine="-Ddew.test.op=findDocuments -Djavax.net.debug=all"
mvn test -DargLine="-Ddew.test.op=findDocuments -Djavax.net.debug=ssl,handshake"
mvn test -DargLine="-Ddew.test.op=findDocuments -Djavax.net.debug=ssl:handshake:verbose:keymanager:trustmanager -Djava.security.debug=access:stack"
mvn test -DargLine="-Ddew.test.op=findDocuments -Djavax.net.debug=ssl:record:plaintext"