I thought it would be nice for me doing apost on this, since handler applications are the most used mobile web applications. Knowing the way the strings work should be nice. In this tutorial, we would be assuming the domain url as Best Tech Forum In Nigeria/index.xhtml
FRONTQUERY: – The frontquery is also known as the prefix query. It is used to append a string in front of the url.It goes in this format.
frontquery@url
If you fill in www.google.com as frontquery ,
Result= www.google.com@Best Tech Forum In Nigeria/index.xhtml
MIDDLEQUERY: – It is used to append a string at the back of the main url.It goes in this format.
url/middlequery
If you fill in www.google.com as middlequery ,
Result= Best Tech Forum In Nigeria/[email protected]
BACKQUERY: – The backquery is also known as the suffix query. It is used to append a string at the end of the url.It goes in this format.
url@backquery
If you fill in www.google.com as backquery ,
Result= Best Tech Forum In Nigeria/[email protected]
FILTER: – It is used to modify four server url.It goes in this format.
Domain (stringToBeRemoved1 stringToBeRemoved2\stringToReplace1 stringToReplace2)
If your http server is Best Tech Forum In Nigeria/index.xhtml, ad your filter was set as,
Best Tech Forum In Nigeria/index.xhtml (www index.xhtml\?files do_id=0)
Result= files.9jaboys.com/?do_id=0
ADDPORT: It adds port to url.
url:80
Result= Best Tech Forum In Nigeria/index.xhtml:80
REMOVE PORT: It removes port from ported urls.
PROXY TYPE: It determines the type of server header
Eg:-
Proxy Type: HTTP
Server: www.google.com
Result: http server: http://www.google.com
header- x-online-host: Best Tech Forum In Nigeria/index.xhtml
Proxy Type: HOST
Server: www.google.com
Result: http server: https://oscarmini.com/forum”>/index.xhtml
header- x-online-host: www.google.com
I hope this article would be of great help while filling your handler applications next time.