Tagged Questions
4
votes
3answers
803 views
Java URI.resolve
I'm trying to resolve two URIs, but it's not as straightforward as I'd like it to be.
URI a = new URI("http://www.foo.com");
URI b = new URI("bar.html");
The trouble is that a.resolve(b).toString() ...
1
vote
0answers
29 views
Resolving website name correctly in Tomcat
My httpd file in Apache as proxy looks like below:
<IfModule mod_proxy.c>
ProxyRequests On
ProxyPass /SYL http://www.mywebsitename.com:8080/SYL
ProxyPassReverse /SYL ...
1
vote
2answers
1k views
Resolve virtual path in MVC
Hi,
I got a adress like this : ~/Content/Files/AdImages/20/20_thumb.jpeg, I need this to be resolved. This was done in ASP.net with Control.ResolveUrl().
According to this article ...
1
vote
3answers
211 views
How do I form complete URLs from incomplete URLs found in a web page?
I can retrieve the text of a web page, let's say http://stackoverflow.com/questions with some real and made up links:
/questions
/tags
/questions?sort=votes
/questions?sort=active
...
0
votes
1answer
1k views
How to check if URL is valid in Android
Is there a good way to avoid the "host is not resolved" error that crashes an app? Some sort of a way to try connecting to a host ( like a URL ) and see if it's even valid?
0
votes
0answers
87 views
URIUtil.resolve does not work for URIs on domains
Hey,
I have searched the questions about converting relative URL links to absolute URLs. I found the Apache URIUtil package which provides a workaround for the flawed method in the Java lib.
However, ...
0
votes
2answers
541 views
Background image not showing when deployed because of URL Resolve in asp.net c#
I have two themes in my .Net application, both use the same background image. Both have an images folder with this image in them, both have style sheets. One works and one doesn't but ONLY when ...