I have an app that I'm developing for my company, the first part, is to login, through the webservices, after login, it automatically makes another connection to the webservice that returns a URL to it, which for each client will have one of the 2 existing URLs.
For example:
www.dominio.com/ws/mobile.asmx
www.dominio.com.br/ws/mobile.asmx
The difference as you can see is .br
What happens is the following, any other function I created in this app, are functional. But it only works in .COM, not in .BR, the two webservices are IDENTICAL, literally, it only changes .com and .br Why can not I be able to access? There is always a page 404 error not found in Logcat, but the link and the ws actually exist, tested, and so on. And it does not have how my code is wrong, because if it works for one, the other has to function equally.
Where can I be wrong?
If you need more data, tell me, because I do not know a solution to this.