All:
I noticed that there might be an error in the way the "ereg" tag is parsed in the XML scenario file. The parser looks for the first occurance of the right angle bracket ">" to determine that the XML tag has ended, when it should actually be checking for the occurance of the string "/>". Here's an example:
<action>
<ereg regexp="sip:.*>" search_in="hdr" header="Contact:" assign_to="1" />
</action>
<ereg regexp="sip:.*>" search_in="hdr" header="Contact:" assign_to="1" />
</action>
Using the above regexp, I get the following error while executing the scenario:
2006-09-19 15:54:40: 'ereg' action without 'assign_to' argument (mandatory).
The parser probably thinks that the "ereg" tag ends at "sip:.*>"!
I have gotten around this problem by using a regexp without the right angle bracket ">", but it might be good to correct the parsing logic.
Thanks,
Vic
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________ Sipp-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sipp-users
