I have run into a problem where an OK ,with SDP, is sent to SIPp with
the contact information of port 5065 such as
Contact: <sip:9785551212@...>
=20
SIPp was sending the Ack to port 5060 in the Request-Line such as ACK
sip:9785551212@....
Since the remote application was listening on port 5065, the remote
application never sees the Ack.
=20
So, I made a change in my scenario file, where I would use 5065, field7,
as my remote port in my Ack.
=20
So now SIPp sends the ACK to sip:9785551212@..., but the
destination UDP port is still 5060.
Since the remote application is listening on port 5065, and not 5060,
the remote application never sees the Ack.
=20
How can I get SIPp to utilize destination UDP port 5065, when sending
the Ack request to the remote application?
=20
=20
=20
<send>
<![CDATA[
=20
ACK sip:[field0]@[field1]:[field7] SIP/2.0
Via: SIP/2.0/[transport] [field2]:[local_port]
Max-Forwards: 70
Call-ID: [call_id]
From: [field3]
<sip:[field3]@[field2]:[local_port]>;tag=3D[call_number]
To:
<sip:[field0]@[field1]:[remote_port]transport=3Dudp;user=3Dphone>[peer_ta=
g
param]
CSeq: 1 INVITE
Contact: sip:[field3]@[field2]:[local_port]
Subject: Performance Test
Content-Length: 0
=20
]]>
</send>
=20
field7 is set to 5065 in my "csv" file.
=20
Thanks,
=20
Brian
|