SWS-496 - Added Axiom Spring-WS MTOM client

This commit is contained in:
Arjen Poutsma
2009-05-18 10:14:46 +00:00
parent fe63e18002
commit d2b9b02c3f
10 changed files with 336 additions and 94 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2007 the original author or authors.
* Copyright 2002-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -32,12 +32,12 @@ public class StubImageRepository implements ImageRepository {
private Map<String, Image> images = new HashMap<String, Image>();
public Image readImage(String name) throws IOException {
logger.info("Streaming image " + name);
logger.info("Loading image " + name);
return images.get(name);
}
public void storeImage(String name, Image image) throws IOException {
logger.info("Storing image " + name);
logger.info("Storing image " + name + " [" + image.getWidth(null) + "x" + image.getHeight(null) + "]");
images.put(name, image);
}
}

View File

@@ -1,7 +1,5 @@
log4j.rootLogger=WARN, stdout
log4j.logger.org.springframework.ws=DEBUG
log4j.logger.org.springframework.oxm=DEBUG
log4j.logger.org.springframework.xml=DEBUG
log4j.logger.org.springframework.ws.samples=INFO
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout