use of org.apache.cxf.ws.transfer.GetResponse in project cxf by apache.
the class FragmentGetXPath10Test method getBooleanTrueTest.
@Test
public void getBooleanTrueTest() throws XMLStreamException {
String content = "<root><a><b>Text</b><b>Text2</b></a></root>";
ResourceManager resourceManager = new MemoryResourceManager();
ReferenceParametersType refParams = resourceManager.create(getRepresentation(content));
Server resource = createLocalResource(resourceManager);
Resource client = createClient(refParams);
ObjectFactory objectFactory = new ObjectFactory();
Get request = new Get();
request.setDialect(FragmentDialectConstants.FRAGMENT_2011_03_IRI);
ExpressionType expression = new ExpressionType();
expression.setLanguage(FragmentDialectConstants.XPATH10_LANGUAGE_IRI);
expression.getContent().add("count(//b) = 2");
request.getAny().add(objectFactory.createExpression(expression));
GetResponse response = client.get(request);
ValueType value = getValue(response);
Assert.assertEquals(1, value.getContent().size());
Assert.assertEquals("true", value.getContent().get(0));
resource.destroy();
}
use of org.apache.cxf.ws.transfer.GetResponse in project cxf by apache.
the class FragmentGetXPath10Test method getImpliedLanguageTest.
@Test
public void getImpliedLanguageTest() throws XMLStreamException {
String content = "<root><a><b>Text</b></a></root>";
ResourceManager resourceManager = new MemoryResourceManager();
ReferenceParametersType refParams = resourceManager.create(getRepresentation(content));
Server resource = createLocalResource(resourceManager);
Resource client = createClient(refParams);
ObjectFactory objectFactory = new ObjectFactory();
Get request = new Get();
request.setDialect(FragmentDialectConstants.FRAGMENT_2011_03_IRI);
ExpressionType expression = new ExpressionType();
expression.getContent().add("/root/a/b");
request.getAny().add(objectFactory.createExpression(expression));
GetResponse response = client.get(request);
ValueType value = getValue(response);
Assert.assertEquals(1, value.getContent().size());
Assert.assertEquals("b", ((Element) value.getContent().get(0)).getLocalName());
resource.destroy();
}
use of org.apache.cxf.ws.transfer.GetResponse in project cxf by apache.
the class FragmentGetXPath10Test method getWithNamespaceTest.
@Test
public void getWithNamespaceTest() throws XMLStreamException {
String content = "<ns:root xmlns:ns=\"www.example.org\"><ns:a><ns:b>Text</ns:b></ns:a></ns:root>";
ResourceManager resourceManager = new MemoryResourceManager();
ReferenceParametersType refParams = resourceManager.create(getRepresentation(content));
Server resource = createLocalResource(resourceManager);
Resource client = createClient(refParams);
ObjectFactory objectFactory = new ObjectFactory();
Get request = new Get();
request.setDialect(FragmentDialectConstants.FRAGMENT_2011_03_IRI);
ExpressionType expression = new ExpressionType();
expression.setLanguage(FragmentDialectConstants.XPATH10_LANGUAGE_IRI);
expression.getContent().add("/ns:root/ns:a/ns:b");
request.getAny().add(objectFactory.createExpression(expression));
GetResponse response = client.get(request);
ValueType value = getValue(response);
Assert.assertEquals(1, value.getContent().size());
Assert.assertEquals("b", ((Element) value.getContent().get(0)).getLocalName());
Assert.assertEquals("www.example.org", ((Element) value.getContent().get(0)).getNamespaceURI());
resource.destroy();
}
use of org.apache.cxf.ws.transfer.GetResponse in project cxf by apache.
the class ResourceLocal method get.
@Override
public GetResponse get(Get body) {
// Getting reference paramaters
AddressingProperties addrProps = (AddressingProperties) ((WrappedMessageContext) context.getMessageContext()).getWrappedMessage().getContextualProperty(JAXWSAConstants.ADDRESSING_PROPERTIES_INBOUND);
ReferenceParametersType refParams = addrProps.getToEndpointReference().getReferenceParameters();
GetResponse response = new GetResponse();
// Getting representation from the ResourceManager
Representation representation = manager.get(refParams);
// Dialect processing
if (body.getDialect() != null && !body.getDialect().isEmpty()) {
if (dialects.containsKey(body.getDialect())) {
Dialect dialect = dialects.get(body.getDialect());
// Send fragment of resource instead it's representation.
response.getAny().add(dialect.processGet(body, representation));
} else {
throw new UnknownDialect();
}
} else {
// Send representation obtained from ResourceManager.
response.setRepresentation(representation);
}
return response;
}
use of org.apache.cxf.ws.transfer.GetResponse in project cxf by apache.
the class FragmentGetQNameTest method getMoreValuesTest.
@Test
public void getMoreValuesTest() throws XMLStreamException {
String content = "<root><b>Text1</b><b>Text2</b><b>Text3</b></root>";
ResourceManager resourceManager = new MemoryResourceManager();
ReferenceParametersType refParams = resourceManager.create(getRepresentation(content));
Server resource = createLocalResource(resourceManager);
Resource client = createClient(refParams);
ObjectFactory objectFactory = new ObjectFactory();
Get request = new Get();
request.setDialect(FragmentDialectConstants.FRAGMENT_2011_03_IRI);
ExpressionType expression = new ExpressionType();
expression.setLanguage(FragmentDialectConstants.QNAME_LANGUAGE_IRI);
expression.getContent().add("b");
request.getAny().add(objectFactory.createExpression(expression));
GetResponse response = client.get(request);
ValueType value = getValue(response);
Assert.assertEquals(3, value.getContent().size());
Assert.assertEquals("b", ((Element) value.getContent().get(0)).getLocalName());
Assert.assertEquals("b", ((Element) value.getContent().get(1)).getLocalName());
Assert.assertEquals("b", ((Element) value.getContent().get(2)).getLocalName());
resource.destroy();
}
Aggregations