On Tue, Oct 11, 2011 at 10:13:00AM -0500, James Nelson wrote:
> Willy,
> 
> Thanks for your help earlier giving us a quick fix for our TCP problem.
>  This one should be simple:
> 
> I'm looking to create the following transformations with an HTTP request
> (names changed, punctuation correct):
> 
> (change everything)
> from /test1/ to /actual-call/actual.svc?wsdl
> 
> code I tried: reqrep ^([^\]*\/test1/(.*) \1\/actual-call/actual.svc?wsdl\2

Spaces and a comma are missing above, I think you copied it by hand. With
this it will probably work :

  reqrep ^([^\ ]*\ )/test1/(.*) \1\/actual-call/actual.svc?wsdl\2

Regards,
Willy


Reply via email to