aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/egiz/moazs/App2MzsService.java
diff options
context:
space:
mode:
authorChristof Rabensteiner <christof.rabensteiner@iaik.tugraz.at>2019-04-08 15:31:10 +0200
committerChristof Rabensteiner <christof.rabensteiner@iaik.tugraz.at>2019-04-08 15:31:10 +0200
commitabbc1e1576b9ac43f71aff6e4ca7697dcb12154a (patch)
tree3f34ed331f4c5b7140a9b32425b31b805114a44d /src/main/java/at/gv/egiz/moazs/App2MzsService.java
parent5975f5a96474dc129f282871f2d7d691cb0a52c9 (diff)
downloadmoa-zs-abbc1e1576b9ac43f71aff6e4ca7697dcb12154a.tar.gz
moa-zs-abbc1e1576b9ac43f71aff6e4ca7697dcb12154a.tar.bz2
moa-zs-abbc1e1576b9ac43f71aff6e4ca7697dcb12154a.zip
Update Codebase to Match MZS Schema Changes
- Important Fix: I forgot to annotate App2MzsService with @Service and autowire the App2MzsService object when creating the endpoint bean. For this reason, Spring did not autowire the dependencies in App2MzsService and I ended up with NullPointerExceptions in the testsuite. - Updated some more namespaces - Add objectFactory bean. objectfactory is autogenerated via the cxf-code-generation plugin, so i cannot annotate it with @Component or @Service. Alternative: create the @Bean by myself - Update the validDeliveryRequest SOAP Message to match the mzs 2.0.0 scheme.
Diffstat (limited to 'src/main/java/at/gv/egiz/moazs/App2MzsService.java')
-rw-r--r--src/main/java/at/gv/egiz/moazs/App2MzsService.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/at/gv/egiz/moazs/App2MzsService.java b/src/main/java/at/gv/egiz/moazs/App2MzsService.java
index a9c4302..2f06f7b 100644
--- a/src/main/java/at/gv/egiz/moazs/App2MzsService.java
+++ b/src/main/java/at/gv/egiz/moazs/App2MzsService.java
@@ -3,6 +3,7 @@ package at.gv.egiz.moazs;
import at.gv.e_government.reference.namespace.zustellung.mzs.app2mzs.App2MzsPortType;
import at.gv.e_government.reference.namespace.zustellung.mzs.app2mzs_.*;
import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
import javax.jws.WebParam;
import java.math.BigInteger;
@@ -12,11 +13,12 @@ import java.util.concurrent.TimeoutException;
import static java.util.concurrent.CompletableFuture.supplyAsync;
+@Service
public class App2MzsService implements App2MzsPortType {
//TODO move timeout to config
private final int timeoutForAnwser = 10;
- private final String MZSTNS = "http://reference.e-government.gv.at/namespace/moazs10/app2mzs#";
+ private final String MZSTNS = "http://reference.e-government.gv.at/namespace/zustellung/mzs/app2mzs#";
@Autowired
private DeliveryRequestHandler deliveryRequestHandler;