Hi Richard,
here is a patch that should solve the problem. please let my know if I'm right :-) about stability, I would say yes (I no people who are using cpl-c at large scale).
Bogdan
Richard wrote:
Hi,
I tried to use SIP register method to upload cpl script. However I got a result "bad request". The algorithm used in cpled is set as null. I thought normally that it should be md5. The ser's debug message says "Credentials received are not filled properly".
Can someone help me please?
Thanks, Richard
P.S. Has anyone used cpl extensively? Is it reasonably stable?
Index: network/TransportCPLWithSIP.java =================================================================== RCS file: /usr/local/cvsroot/CPLEd/network/TransportCPLWithSIP.java,v retrieving revision 1.7 diff -u -r1.7 TransportCPLWithSIP.java --- network/TransportCPLWithSIP.java 19 Sep 2003 08:23:07 -0000 1.7 +++ network/TransportCPLWithSIP.java 14 May 2004 10:50:34 -0000 @@ -491,6 +491,8 @@ throw new Exception(str_err+""realm" parameter not found"); if (vals[1]==null) throw new Exception(str_err+""nonce" parameter not found"); + if (vals[3]==null) + vals[3]="MD5";
/* comput the authentication */ DigestAuth da;