Re: [Sipp-users] How to cut SIP-URI from Contact header

2008-07-08 Thread Evgeny Miloslavsky
To: Tomasz Radziszewski Cc: [EMAIL PROTECTED]; sipp-users@lists.sourceforge.net Subject: Re: [Sipp-users] How to cut SIP-URI from Contact header Tomasz and Evgeny, I have encountered this problem as well. I think the latest trunk should respect the quotes, but svn is down so I can't tell you what

Re: [Sipp-users] How to cut SIP-URI from Contact header

2008-07-07 Thread Tomasz Radziszewski
Hi Your expression contains and probably the XML parser reads it as closing of the ereg tag. It should, because it's within quotes, but from my experience it does. You can to replace the with HTML-like entity gt;, so ereg regexp= sip:[^;gt;]+ search_in=hdr header=Contact: assign_to=2 / BR

Re: [Sipp-users] How to cut SIP-URI from Contact header

2008-07-07 Thread Charles P Wright
@lists.sourceforge.net cc Subject Re: [Sipp-users] How to cut SIP-URI from Contact header Hi Your expression contains and probably the XML parser reads it as closing of the ereg tag. It should, because it's within quotes, but from my experience it does. You can to replace the with HTML-like

[Sipp-users] How to cut SIP-URI from Contact header

2008-07-06 Thread Evgeny Miloslavsky
Hi I have a following procedure to cut SIP-URI from Contact header of received message: action ereg regexp= sip:[^;]+ search_in=hdr header= Contact: assign_to=2 / /action Every time I try to run the scenario I get the assign_to value is missing message. Any