Can anyone help me solve this problem? When I submit this request, I saw in wirehark that packets are being sent to SJPhone on port 1720 tcp. But still, SJPhone does not ring. I want to make this ring (regardless of media).
I would really appreciate your support. I need to skip message protocol information in order to implement this. Please show me some positive pointers.
FYI: I used this trace: http://www.vconsole.com/usermanuals/sample_isdn_trace.pdf
import java.io.*; import java.net.*; public class test { public static void main(String[] args) throws UnknownHostException, IOException { byte st[]=new byte[256]; st[0]=0x08;
- Additional information: -When the SJPhone connection with SJPhone is associated with this log:
0000 00 00 03 04 00 06 00 00 00 00 00 00 00 00 08 00 ................ 0010 45 00 00 3c 88 6c 40 00 40 06 b4 4d 7f 00 00 01 E..< .l@. @..M.... 0020 7f 00 00 01 b4 a8 06 b8 56 f6 c4 b3 00 00 00 00 ........V....... 0030 a0 02 80 18 fe 30 00 00 02 04 40 0c 04 02 08 0a .....0....@..... 0040 02 a1 4c df 00 00 00 00 01 03 03 06 ..L.........
-When this test.java is exchanged with SJPhone, I see these logs:
0000 00 00 03 04 00 06 00 00 00 00 00 00 00 00 08 00 ........ ........ 0010 45 00 00 3c 1f ba 40 00 40 06 1d 00 7f 00 00 01 E..< ..@. @....... 0020 7f 00 00 01 d6 ca 06 b8 8c e7 41 15 00 00 00 00 ........ ..A..... 0030 a0 02 80 18 fe 30 00 00 02 04 40 0c 04 02 08 0a .....0.. ..@..... 0040 02 a6 5e af 00 00 00 00 01 03 03 06 ..^..... ....
Note:
A friendly dump can be performed using this command to see in real time + save what you saw: tcpdump -XX -s 0 -i lo | tee / tmp / log.log
source share