|
From: <cy...@us...> - 2003-06-18 09:14:46
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging
In directory sc8-pr-cvs1:/tmp/cvs-serv20679
Modified Files:
AckRequested.java SyncReply.java HeaderElement.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.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** AckRequested.java 9 Apr 2003 07:48:16 -0000 1.6
--- AckRequested.java 18 Jun 2003 09:14:43 -0000 1.7
***************
*** 109,112 ****
--- 109,113 ----
this.signed = signed;
addAttribute(ATTRIBUTE_SIGNED, String.valueOf(signed));
+ setActor(ACTOR_TO_PARTY_MSH_URN);
}
Index: SyncReply.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/SyncReply.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** SyncReply.java 20 May 2003 09:00:41 -0000 1.5
--- SyncReply.java 18 Jun 2003 09:14:43 -0000 1.6
***************
*** 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 ----
Index: HeaderElement.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/packaging/HeaderElement.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** HeaderElement.java 10 Jun 2003 02:22:48 -0000 1.5
--- HeaderElement.java 18 Jun 2003 09:14:43 -0000 1.6
***************
*** 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";
|