Forum Discussion

John_43161's avatar
John_43161
Icon for Nimbostratus rankNimbostratus
Mar 12, 2009

Escaping delimiter in iRule

trying to stream out an old application link and put in a new one with

 

 

@/bom/home.do\?invoke=home\&@/jBOM/index.jsp\?@

 

 

for some reason the stream in not working..... it stop working with the ? and & in the stream so I tried escaping them like the docs say to do but still no luck, any ideas what I am doing wrong?

 

 

Thanks in advance!
  • hoolio's avatar
    hoolio
    Icon for Cirrostratus rankCirrostratus
    If you set the stream expression wrapped in curly braces does it work without escaping? The curly braces should prevent expansion of variables and interpretation of meta-characters (Click here)

     

     

    STREAM::expression {@/bom/home.do?invoke=home&@/jBOM/index.jsp?@}

     

     

    Aaron