|
From: <kc...@us...> - 2003-05-27 06:55:04
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler
In directory sc8-pr-cvs1:/tmp/cvs-serv29120
Modified Files:
Request.java
Log Message:
relax the checking of toMshUrl and ToPartyID, as the user might choose to use the ToMshUrlResolver mechanism
Index: Request.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler/Request.java,v
retrieving revision 1.71
retrieving revision 1.72
diff -C2 -d -r1.71 -r1.72
*** Request.java 20 May 2003 09:00:40 -0000 1.71
--- Request.java 27 May 2003 06:55:01 -0000 1.72
***************
*** 1104,1107 ****
--- 1104,1108 ----
*/
public void send(EbxmlMessage ebxmlMessage) throws RequestException {
+ /*
if (toMshUrl == null) {
try {
***************
*** 1114,1117 ****
--- 1115,1119 ----
}
}
+ */
checkPayload(ebxmlMessage);
***************
*** 1319,1322 ****
--- 1321,1325 ----
public void sendReliably(EbxmlMessage ebxmlMessage, boolean signed)
throws RequestException {
+ /*
if (toMshUrl == null) {
try {
***************
*** 1329,1332 ****
--- 1332,1336 ----
}
}
+ */
if (appContext == null) {
|