Java Code Examples for org.apache.axis.encoding.SerializationContext#setPretty()

The following examples show how to use org.apache.axis.encoding.SerializationContext#setPretty() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AxisUtil.java    From j-road with Apache License 2.0 6 votes vote down vote up
public static String serialize(Object obj) throws IOException {
  TypeDesc desc = TypeDesc.getTypeDescForClass(obj.getClass());
  BeanSerializer serializer = new BeanSerializer(obj.getClass(), desc.getXmlType(), desc);

  MessageContext mctx = new MessageContext(null);
  mctx.setProperty(AxisEngine.PROP_ENABLE_NAMESPACE_PREFIX_OPTIMIZATION, true);
  mctx.setProperty(AxisEngine.PROP_SEND_XSI, true);
  mctx.setTypeMappingRegistry(new TypeMappingRegistryImpl());

  StringWriter writer = new StringWriter();

  SerializationContext ctx = new SerializationContext(writer, mctx);
  ctx.setPretty(false);
  ctx.setSendDecl(true);
  ctx.setDoMultiRefs(false);

  serializer.serialize(new QName("keha"), new AttributesImpl(), obj, ctx);
  return writer.getBuffer().toString();
}
 
Example 2
Source File: AxisBatchJobUploadBodyProvider.java    From googleads-java-lib with Apache License 2.0 5 votes vote down vote up
@Override
public ByteArrayContent getHttpContent(BatchJobMutateRequestInterface request,
    boolean isFirstRequest, boolean isLastRequest) throws BatchJobException {
  Preconditions.checkNotNull(request, "Null request");

  StringWriter writer = new StringWriter();
  SerializationContext context = new SerializationContext(writer) {
    /**
     * Override the serialize method called by the Axis serializer and force it to
     * pass {@code includeNull = false}.
     */
    @SuppressWarnings("rawtypes")
    @Override
    public void serialize(QName elemQName, Attributes attributes, Object value, QName xmlType,
        Class javaType) throws IOException {
      super.serialize(elemQName, attributes, value, xmlType, javaType, false, null);
    }
  };
  context.setSendDecl(false);
  context.setPretty(true);
  
  // Pre-register namespaces using the *sorted* list of namespaces. This ensures that
  // when performing an incremental upload, the same namespace prefix will be used
  // for each namespace URI across all uploads.
  int namespaceIndex = 0;
  for(String namespaceUri : namespaceUris) {
    context.registerPrefixForURI(String.format("ns%d", namespaceIndex++),
        namespaceUri);
  }
  
  AxisSerializer serializer = new AxisSerializer();
  serializer.serialize(request, context);

  return new ByteArrayContent("application/xml", writer.toString().getBytes(UTF_8));
}
 
Example 3
Source File: AxisSerializerTest.java    From googleads-java-lib with Apache License 2.0 5 votes vote down vote up
@Test
public void testSerialize() throws SAXException, IOException {
  BatchJobMutateRequest mutate = new BatchJobMutateRequest();

  List<Operation> ops = Lists.newArrayList();
  Campaign campaign = new Campaign();
  campaign.setId(-1L);
  campaign.setName("Test campaign");
  campaign.setAdvertisingChannelType(AdvertisingChannelType.SEARCH);
  ops.add(new CampaignOperation(Operator.ADD, "ADD", campaign));

  AdGroup adGroup = new AdGroup();
  adGroup.setName("Test ad group");
  adGroup.setCampaignId(campaign.getId());

  ops.add(new AdGroupOperation(Operator.ADD, "ADD", adGroup));

  mutate.setOperations(ops.toArray(new Operation[0]));
  AxisSerializer serializer = new AxisSerializer();
  StringWriter writer = new StringWriter();
  SerializationContext context = new SerializationContext(writer);
  context.setSendDecl(true);
  context.setPretty(true);
  serializer.serialize(mutate, context);

  String serializedRequest = writer.toString();
  assertNotNull("Serialized request is null", serializedRequest);

  String expectedSerializedRequest =
      CharStreams.toString(
          new InputStreamReader(
              AxisSerializerTest.class.getResourceAsStream(
                  "resources/BatchJobMutate.request.xml"),
              UTF_8));
  XMLAssert.assertXMLEqual("Serialized request does not match expected XML",
      expectedSerializedRequest, serializedRequest);
}