Forum Discussion

katic_13597's avatar
katic_13597
Icon for Nimbostratus rankNimbostratus
Jun 05, 2007

IRULE for Cookie Less Routing for Nokia Phone ?

 

We have below URL which will be accessed by using Browser in Nokia Phone , All Nokia N-70 Mobile browsers are Cookie less browsers  , we have to maintain the Persistence based on the below URL

 

https://XX.Xcom/MobileWeb/(X(1)S(y5i41045sammeu45cxvuej45))/login.aspx?ReturnUrl=%2fmobileweb%2fdefault.aspx&AspxAutoDetectCookieSupport=1

 

 

in every URL session “(X(1)S(“ these characters are common

 

I have written below IRULE but it is not working

 

when HTTP_REQUEST {

 

set m3persist [findstr [HTTP::uri] "(X(1)S(" 24 ";"]

 

 

if { $m3persist != "" } {

 

persist uie $m3persist

 

} else {

 

pool XX_80

 

}

 

}

 

 

Help will be appreciated.

 

 

Thanks

 

Kartheek

 

  • Colin_Walker_12's avatar
    Colin_Walker_12
    Historic F5 Account
    The findstr command looks appropriate, except possibly for the terminator of ";", which doesn't appear in your URI (that I could see, anyway). When you say the rule isn't working, what do you mean? Have you added some logging to see where the logic is breaking down?

     

     

    Colin