Ok, so now I can access through both my browser and my simulator the required data from the WAMP server
I did this by reaching these steps on stackoverflow:
1- open that file C:\wamp\bin\apache\apache2.2.22\conf\httpd.conf
Note you man have different Apache version than apache2.2.22 so you need to write it instead.
search for: Directory “C:/wamp/www/” you will find something similar to this
<Directory “C:/wamp/www/”>
maybe there is some comments here …
AllowOverride all
Order Allow,Deny
Allow from all
</Directory>
be sure that Allow from all is exists and not commented
2- open that file C:\wamp\alias\phpmyadmin.conf
make sure that
<Directory “C:/wamp/apps/phpmyadmin3.5.1/”>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
change Allow from 127.0.0.1 to Allow from all.
But the problem is not over yet. If i test on my device, this is what happens

I checked build.settings and the permission is there.