Package org.apache.tuscany.sca.policy.matching.helloworld

Examples of org.apache.tuscany.sca.policy.matching.helloworld.HelloWorld


    }
   
    @Test
    public void testDifferentPolicyLanguage() throws Exception {
        try {
            HelloWorld helloWorld = node.getService(HelloWorld.class, "HelloWorldClientDifferentPolicyLanguage");
            helloWorld.getGreetings("petra");
            fail("Exception expected");
        } catch (Exception ex) {
            assertTrue(ex.getMessage().indexOf("No match because the policy sets on either side have policies in differnt languages {http://www.w3.org/ns/ws-policy}ExactlyOne and {http://tuscany.apache.org/xmlns/sca/1.1}jdkLogger") > -1);
        }   
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.policy.matching.helloworld.HelloWorld

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.