|
From: <cy...@us...> - 2003-06-18 09:18:53
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging
In directory sc8-pr-cvs1:/tmp/cvs-serv21321
Modified Files:
Tag: b0931
AckRequested.java HeaderElement.java SyncReply.java
Log Message:
Bug fix: "urn:oasis:names:tc:ebxml-msg:actor:toPartyMSH" should be added to
"actor" of AckRequested.
Index: AckRequested.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/AckRequested.java,v
retrieving revision 1.5.2.1
retrieving revision 1.5.2.2
diff -C2 -d -r1.5.2.1 -r1.5.2.2
*** AckRequested.java 9 Apr 2003 08:41:40 -0000 1.5.2.1
--- AckRequested.java 18 Jun 2003 09:18:50 -0000 1.5.2.2
***************
*** 109,112 ****
--- 109,113 ----
this.signed = signed;
addAttribute(ATTRIBUTE_SIGNED, String.valueOf(signed));
+ setActor(ACTOR_TO_PARTY_MSH_URN);
}
Index: HeaderElement.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/HeaderElement.java,v
retrieving revision 1.3.4.1
retrieving revision 1.3.4.2
diff -C2 -d -r1.3.4.1 -r1.3.4.2
*** HeaderElement.java 9 Apr 2003 08:41:41 -0000 1.3.4.1
--- HeaderElement.java 18 Jun 2003 09:18:50 -0000 1.3.4.2
***************
*** 90,93 ****
--- 90,96 ----
"urn:oasis:names:tc:ebxml-msg:actor:nextMSH";
+ static final String ACTOR_TO_PARTY_MSH_URN =
+ "urn:oasis:names:tc:ebxml-msg:actor:toPartyMSH";
+
static final String ACTOR_NEXT_MSH_SCHEMAS =
"http://schemas.xmlsoap.org/soap/actor/next";
Index: SyncReply.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/SyncReply.java,v
retrieving revision 1.2.2.3
retrieving revision 1.2.2.4
diff -C2 -d -r1.2.2.3 -r1.2.2.4
*** SyncReply.java 20 May 2003 08:58:13 -0000 1.2.2.3
--- SyncReply.java 18 Jun 2003 09:18:50 -0000 1.2.2.4
***************
*** 86,92 ****
static final String SYNC_REPLY = "SyncReply";
- static final String ACTOR_NEXT_MSH_SCHEMAS =
- "http://schemas.xmlsoap.org/soap/actor/next";
-
/**
* Constructs a <code>SyncReply</code> with the given mandatory
--- 86,89 ----
|