We have a server which will handle servlet call and fetch the data. So we have two different type of clients
Note : Both are GET calls only.
Does these two different ways of calling servlet have any difference. Will there be any difference of resources on server handling these different mediums....
No they don't make any difference. Both clients are using HTTP to communicate with the server and as long as their requests are acceptable the server should/does not care what client is making the request.