Sending a request from a client to the Android web server using Paw Server (vice versa)

I set up the paw server and in principle I can send a request, but I can’t find how to handle incoming requests from the client on the server. Can anyone give any information on how to do this?

EDIT: I can send a request with a GET action to say something at the url like ihttp: //192.168.12.103: 7575 /? testparametre = mustafa% 20guven

and I can get it in index.html as below

gelenParametre = <bsh>$$.print(parameters.get("testparametre"));</bsh>

But I want to make a request in Lifecycle Activity. How to achieve this?

+3
source share
1 answer

You must specify the xhtml page:

_http: //192.168.12.103: 7575 / test.xhtml testparametre = Mustafa% 20guven

test.xhtml :

<bsh>
   gelenParametre = parameters.get("testparametre");
   print(gelenParametre);
</bsh>
+1

All Articles