This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Class_01> | |
<Students> | |
<Name>Lahiru</Name> | |
<Name>Peter</Name> | |
</Students> | |
</Class_01> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Class_01> | |
<Students> | |
<Name>Lahiru</Name> | |
</Students> | |
</Class_01> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Class_01> | |
<Students> | |
<Name>Lahiru</Name> | |
<Name>Peter</Name> | |
<Name /> | |
</Students> | |
</Class_01> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>WAS-client</groupId> | |
<artifactId>WAS-client</artifactId> | |
<version>9.0.0</version> | |
<packaging>bundle</packaging> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<proxy xmlns="http://ws.apache.org/ns/synapse" name="WAS_JMS_Sender" startOnLoad="true" statistics="disable" trace="disable" transports="http"> | |
<target> | |
<inSequence> | |
<property name="OUT_ONLY" value="true" /> | |
<property name="FORCE_SC_ACCEPTED" scope="axis2" value="true" /> | |
<property action="remove" name="Accept-Encoding" scope="transport" /> | |
<property action="remove" name="Content-Length" scope="transport" /> | |
<property action="remove" name="User-Agent" scope="transport" /> | |
<property action="remove" name="Content-Type" scope="transport" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<proxy xmlns="http://ws.apache.org/ns/synapse" name="WAS_JMS_Receiver" startOnLoad="true" statistics="disable" trace="disable" transports="jms"> | |
<target> | |
<inSequence> | |
<log level="full"> | |
<property name="test" value="receiving message ..." /> | |
</log> | |
<drop /> | |
</inSequence> | |
</target> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Year" : "2019", | |
"Month" : "Sep", | |
"Blogs" : [ | |
"https://medium.com/feed/@madushandhanushka", | |
"https://medium.com/feed/@arunans23", | |
"https://medium.com/feed/@isuruuy", | |
"https://medium.com/feed/@jayawark", | |
"https://medium.com/feed/@a5anka", | |
"https://medium.com/feed/@chanika1118", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"os" | |
"strings" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"fruit": { | |
"type": "string", | |
"minLength": 4, | |
"maxLength": 6, | |
"pattern": "^[0-9]{1,45}$" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<proxy xmlns="http://ws.apache.org/ns/synapse" name="testJSONTransform" startOnLoad="true" statistics="disable" trace="disable" transports="http,https"> | |
<target> | |
<inSequence> | |
<jsontransform schema="conf:/schema.json"/> | |
<respond/> | |
</inSequence> | |
</target> | |
<description/> | |
</proxy> |