From what I read in the comments, the structure of your url is ti_hom.xxxxxx.yyyyy.br
and the problem lies precisely in this: internet explorer has problems with urls it contains _ (underscore).
Translation of a relevant part of the linked article:
[...] the underscore is an acceptable character in a url [...]
However, IE doesn’t seem to like it when it’s part of the name
domain or subdomain [...] The problem happens when you need it
use cookies on the site, which most websites need,
especially if you are using cookies as part of the
validation. IE cannot create cookies when the domain name or
of the subdomain has a underscore
Unfortunately it seems that there is no solution for this in addition to changing your domain name or instructing your users to use the IP address directly/switch browser. All alternatives can be problematic, so it’s up to you to decide which way to go.
How many characters does the URL have? There are parameters in it?
– Oralista de Sistemas
@Renan the url is like this: ti_hom.xxxxxx.yyyyy.br In this mold and with the same amount of characters.
– PFVictor
At a certain point in the application the url loads parameters yes...
– PFVictor
That’s when IE fails?
– Oralista de Sistemas
No @Renan fails without parameters too...
– PFVictor
Ah, important... What’s the IE version? Maybe the components on the pages don’t support if it’s an old version.
– Oralista de Sistemas
I am using IE 10 @Renan. I have already put in the application code up to the tag <meta http-equiv="X-UA-Compatible" content="IE=10" />
– PFVictor
@Thiagosilva but this specific something that would not be compatible with IE would not run in the IE or pulling the IP not? Through IP the application works perfectly in IE
– PFVictor
javascript and css has yes. But something might be compatible by IE if instead of logging in with IP I log in with the URL ??
– PFVictor