Solve the problem of accessing WAP (Session) through a mobile phone that does not support cookies)

Source: Internet
Author: User
Sessions are widely used in the WAP parser. To solve the problem that some mobile phones do not support cookies, use the Java URL rewriting method response. encodeurl ();

Because my WML or XHTML page is dynamically generated through XML + XSLT parsing... So I added response. encodeurl to the final parsing method.

The key code is as follows:
// Replace form @ action
List list = objxmloutput. selectnodes ("// * [name () = 'form']/@ action ");
For (iterator iter = List. iterator (); ITER. hasnext ();){
Attribute attribute = (attribute) ITER. Next ();
Attribute. setvalue (response. encodeurl (attribute. getvalue ()));
}
// Replace a @ href
List = objxmloutput. selectnodes ("// * [name () = 'a']/@ href ");
For (iterator iter = List. iterator (); ITER. hasnext ();){
Attribute attribute = (attribute) ITER. Next ();
Attribute. setvalue (response. encodeurl (attribute. getvalue ()));
}
// Replace option @ onpick
List = objxmloutput. selectnodes ("// * [name () = 'option']/@ onpick ");
For (iterator iter = List. iterator (); ITER. hasnext ();){
Attribute attribute = (attribute) ITER. Next ();
Attribute. setvalue (response. encodeurl (attribute. getvalue ()));
}

Yes... After using XPath for so long, I found that // A/@ href and // * [name () = 'a']/@ href are different, it is estimated that the former is only the first node, and then it matches all nodes ,......

At first, I hate Linux.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.