How to fill the box in Handler UI Java Apllication

Many of the mobile internet user know about Handler application, but only some of them know how to fill the handler boxes inside in the application. Actually handler applications created by the DZEBB(ykhandler) Sir. Let us move to the topic.
The handler ui consist of several query boxes and they are
1.FrontQuery
2.MiddleQuery

3.BackQuery
4a.Remove String from URL
4b.Filter
5.Add Port to non-Port URL
6.Remove Port (Check Box)
7.Proxy Type & Proxy Server
In HandlerUI app we will find this input, I will expain it with examples (assume the application will make a connection to the server with this URL "http://sub.domain.com:80/subpath/index.php").
1.Front Query: Front query also known as prefix is an input to append a string in front of the Domain in the URL requested to the network. RESULT : http://FrontQuery@sub.domain.com:80/subpath/index.php
2.Middle Query: Middle query is an input to append a string at the back of the Domain in the URL requested to the network. RESULT : http://sub.domain.com:80@MiddleQuery/subpath/index.php
3.Back Query: Back query also known as suffix is an input to append a string at the back of the URL requested to the network. RESULT : http://sub.domain.com:80/subpath/index.php?BackQuery
4a.Remove String from URL (HUI123): A string that will be removed from the URL.
4b.Filter (HUI200): Filter is an input to modify the URL string requested to the network, the format is: Domain(StringToBeReplace1 StringToBeReplace2\StringToReplace1 StringToReplace2). ex:  1.-URL: http://www.google.com/test/file.txt
-Filter: www.google.com(test\here)
RESULT : http://www.google.com/here/file.txt
2.-URL: http://www.google.com/test/file.txt
-Filter: *(st\)
RESULT : http://www.google.com/te/file.txt
5.Add Port to non-Port URL: An input to append port of the Domain in the URL requested to the network. It will not effect on url that already contain port.
ex:-URL: http://www.google.com/test/file.txt
-Add Port to non-Port URL: 80
RESULT : http://www.google.com:80/test/file.txt
6.Remove Port: Checked
This is used to remove existing port on the URL.
RESULT : http://sub.domain.com/subpath/index.php
7.Proxy Type: http
Proxy Server: www.google.com
RESULT : http://www.google.com:80/subpath/index.php
Extra Header added: X-Online-Host: sub.domain.com

Proxy Type: host
Proxy Server: www.google.com
RESULT : http://sub.domain.com:80/subpath/index.php
Extra Header added: X-Online-Host: www.google.com

Newer Post Older Post