Uniform Resource Identifier (URI) is a string of characters used to identify a name or a resource on the Internet.
0
votes
0answers
4 views
How to make Visual Studio handle URIs without a protocol correctly?
We have a web application which runs on http:// in local/qa & uat environments and under https:// in production.
The application makes use of a couple of external services/js resources. In order ...
0
votes
0answers
7 views
How to construct a URI path according to the formparams in REST jersey
First read this .
Now i had known how to construct it grammatically...but how to ACCEPT a forms parameters,PROCESS it and CONSTRUCT a URI accordingly is still unkown !!
My form :
@POST
...
0
votes
2answers
20 views
Bootstrap, nav-tabs, dropdown menus; how to set active tab based on URI
I'm using Bootstrap nav-tabs/dropdown menus component as my primary navigation bar but I cant figure out how to set the active menu based on an incoming URI.
There are a lot of different ...
0
votes
1answer
22 views
How to get contact info?
so I'm good with getting contacts. I assign the contacts to a list view and am able to see them. When I click a contact, it launches a new activity which for right now, I just want to display that ...
1
vote
0answers
8 views
From where can I get the Incoming and Outgoing Server for the yahoo email service providers?
like :
(domain= "yahoo.com")
(Incoming SERVER = "imap.mail.yahoo.com")
(Outgoing SERVER = "smtp.mail.yahoo.com")
(domain = "ymail.com")
(Incoming SERVER = "imap.mail.yahoo.com")
...
0
votes
1answer
27 views
How to create/build REST URI using form parameters
okay so i have created restful webservice.now how to create a path for a user "abc".
Something like this
http://stackoverflow.com/user/abc
Following is my form for getting the user input thorugh ...
0
votes
0answers
21 views
ListView automatic update when two URIs are used?
Summary: The list with a different set of items from the same SQLite table is displayed alternatively (the same layout). Different URIs are used for the queries. When deleting the item manually from ...
0
votes
0answers
13 views
Ignore URI(request.referer).path for previous URL when visiting directly to a page
I'm trying to save the previous URL in a session, I currently have this code:
after_filter "save_my_previous_url", only: [:renderForm, :renderQuote]
def save_my_previous_url
if ...
2
votes
1answer
23 views
Can't override taken photo with same URI
This is the weirdest behaviour I have faced from android so far.
I want to take a photo and crop it afterwards. This is the relevant code:
private void manageTakePhotoClicked() {
outputFileUri = ...
0
votes
1answer
25 views
How to get params from url? or better way to do it
im creating a function to delete a contact record, then once deleted go to the view company page.
so here is my controller
public function delete($id) {
if (isset($_GET["delete"]))
...
0
votes
1answer
28 views
ASP.net MVC 2 RenderAction with model throws URI too long exception
In ASP.net MVC 2, I am using Html.RenderAction to render a partial view, RenderAction takes a Model as a parameter, code below.
<% Html.RenderAction("ReviewPartial", review); %>
And the ...
-1
votes
0answers
12 views
Is the addressable gem necessary for URI parsing with ruby 2.0? [closed]
Addressable is a replacement for the URI implementation that is part
of Ruby's standard library. It more closely conforms to RFC 3986, RFC
3987, and RFC 6570 (level 4), additionally providing ...
0
votes
3answers
40 views
Incorrect new Uri (base, relative)
I am working on generic webshops scarper and came across strange problem. Actually, I required correct URL's for all the products listed on the webpage. Most of the time those products href's are ...
0
votes
1answer
28 views
Open Vine profile from Android app
I'm trying to open the Vine (https://vine.co/) Android app to a specific profile page via code. I've been trying the usual method, via URI with no luck. Here is my current non-functional code:
...
-1
votes
0answers
7 views
Collect ticket URL from ticket_uri in Facebook
For a ticketed Facebook event, the ticket_uri is of the form:
https://www.facebook.com/ajax/events/ticket.php?event_id=EVENT_ID
However, I am interested in collecting the ticket URL, e.g. the actual ...
1
vote
4answers
38 views
How do I specify the protocol in an anchor and still use relative path?
It is always preferred on a personal website to use relative paths in anchors so that you can easily move your directory structure to a new website, but I want to make part of my website password ...
5
votes
3answers
54 views
Are URI's with a double hash (##) invalid?
I have URI that contains ## (e.g. http://foo.com/bar##baz) . Ruby's URI.parse function throws an error when I try to parse it.
Are double hash marks forbidden in URIs? Or is the Ruby Parser too ...
0
votes
0answers
21 views
Android app URI launch from website
I'm making a small app that has an android version and a mobile web version. I have declared a host/scheme in an intent filter in the Manifest file of my android app, and when I enter the URI in the ...
0
votes
1answer
29 views
how to view image through image id in android
I've got the image id in the MediaStore. How can i view the image in the gallery according the id?
I currently use the following code:
ContentResolver cr = context.getContentResolver();
...
-1
votes
1answer
35 views
How do I search and parse data in Rails? [closed]
I am trying to use Rails to develop a program that can get data off websites, parse specific data, and pre-populate a form with that data.
I was able to get the data using Net::HTTP.get(uri) but it ...
0
votes
3answers
58 views
Perl CGI redirect with URI.pm
I have a Perl script which in some cases needs to do a redirect to another one and send all the query parameters along. The query parameters can contain a lot of data and I do not want to construct ...
2
votes
1answer
29 views
Is it better to treat the path after the base URL as an instance of URI or string?
I am implementing a REST client in Ruby and am treating base URLs as instances of URI. For the path after the base URL, I am unsure whether to treat it also as a URI instance or as a string.
Approach ...
0
votes
1answer
93 views
URL segment using Laravel 4
How can I implement a segment based url in laravel 4?
I tried using it in laravel 3 like URI::segment(1) and it works. I converted my website using laravel 4 but the URI::segment(1) got an error. Any ...
0
votes
0answers
18 views
Content Provider, CONTENT_FILTER_URI… How to form the filtering URI correctly?
I have several questions related to the official LoaderManager example when implementing filtering in an application (i.e. SQLite database, using Content Provider, using CONTENT_URI when no filtering ...
1
vote
0answers
38 views
Valid URI results in Content-Length: -1
Since Java 7u21 I stumbled on some strange behavior in a JavaFX applet I made.
On the server side I have a Glassfish 3 server and a mysql database. On the client side I use Jersey to fetch data from ...
1
vote
2answers
40 views
Writing url with an asp.net mvc application
I have a problem in url in my asp.net mvc application :
i have two controllers with two actions.
in the controller Client
public ActionResult Index(string path)
{
if ...
0
votes
0answers
29 views
Parsing a URI with strange characters
I cannot believe that this has not been addressed in Java YET.
I have seen Android: howto parse URL String with spaces to URI object?, where the 1st answer represent exactly my problem.
I have a ...
0
votes
1answer
28 views
Codeigniter PHP Missing Argument 2 Error?
I'm having an issue with my correctly displaying my URLs for my website. I'm using the latest version of Codeigniter.
I'm getting the below error message. I was doing some research and I think my ...
0
votes
3answers
39 views
C# List & Sort URLs by FileName
I want to make this:
anywhere.com/file/mybirthday.avi
anywhere.com/file/yourbirthday.avi
somewhere.com/file/mybirthday.avi
somewhere.com/file/yourbirthday.avi
To This:
...
0
votes
0answers
19 views
Echo If Url ending with a +
I want to display something if the page url is ending with a +
I tried this :
<?php if(substr($_SERVER['REQUEST_URI'],-1) == '+') echo 'lalala'; ?>
But it's not working :(
Thanks for your ...
0
votes
0answers
12 views
EMF use custom URIs for reference
I need to use URIs with my protocol for references in EMF.
Then I need to write a parser for those URIs which returns standard URI for loading resources. Is it possible? Are there any examples for ...
0
votes
1answer
38 views
cross--platform URI handling library for C++
I am looking for a C++ library to handle URLs/URIs, mainly HTTP URLs. I only want the URI text handling, not any network operation. I know of Poco::URI but IIRC one has to use the whole framework for ...
1
vote
2answers
32 views
Which UUID library to use
I'm writing a GUI application using GNOME technologies, and I need to define UUIDs for resources in RDF files.
I'm writing in C++ but I don't mind using a C library and wrap it in my own C++ wrapper. ...
0
votes
1answer
37 views
UriMatcher not recognizing pattern
I'm having trouble with matching URIs in my ContentProvider. It will match paths with one or two "tags" (not sure what the correct term is), for example it can recognize box/#. But as soon as I add a ...
0
votes
0answers
34 views
Android Custom URI on SMS not working
I have been trying to get my app to launch after a link is tapped on the sms. But I can't understand why it is not working. I have looked at every other stack overflow threads but still can't get it ...
3
votes
3answers
42 views
how to convert image from int array into uri?
I have some images from drawable in an int array and now i want to convert each image from int array into URI. Can anybody tell me how can i do this. Thanks in advance.
Here is my array ...
1
vote
1answer
47 views
encodeURIComponent throws an exception
I am programmatically building a URI with the help of the encodeURIComponent function using user provided input. However, when the user enters invalid unicode characters (such as U+DFFF), the function ...
0
votes
0answers
10 views
adding network component in boost library
I executed aptitude search libboost and I dont get network component on that
I want to use network/uri.hpp from cppnetlib how I can do it?
is it required to add separately the network component,how ...
0
votes
1answer
13 views
How to use uri to edited multiple tables in the same database
I have a database and within the database i have 3 tables but im using a content provider so how can i distinguish between the tables? i understand the format of the uri and that i would have to use a ...
0
votes
0answers
26 views
C# - StreamResourceInfo from absoulte uri path
If I add a jpg file to my solution in VS and do it like this:
Uri uri = new Uri("pix500.jpg", UriKind.Relative);
StreamResourceInfo resourceInfo = ...
3
votes
1answer
48 views
Assigning URIs to RDF Resources
I'm writing a desktop app using Gnome technologies, and I reached the
stage I started planning Semantic Desktop support.
After a lot of brainstorming, sketching ideas and models, writing notes
and ...
0
votes
0answers
30 views
Only POST Request routes wrong URL, all other requests OK
Hoping someone can help with this issue. I'm creating a web app using Codeigniter as the PHP framework and everything works great running MAMP and hosting locally. When I pushed to my production ...
0
votes
1answer
20 views
Characters Disallowed in CodeIgniter
var url = "<?php echo site_url('/main/getSearchResults'); ?>";
$.ajax({
url: url,
type: 'POST',
data: searchString,
success: ...
0
votes
2answers
67 views
Android - How to get Uri from raw file?
I am trying to get the Uri from a raw file I have included in the project in the raw folder.
But I am getting a FileNotFoundException, no matter what.
The file is a .wav file, also tried it with a ...
1
vote
3answers
26 views
How does the content provider uri work?
I've been researching ContentProviders for a while now and I'm still having trouble grasping how exactly the Uri works.
content://app_name/path/id
When a path is specified how does the table ...
1
vote
1answer
15 views
Rewrite URI when a certain file (no matter under which URI) is served?
Is it possible in .htaccess to redirect/rewrite (301) to a certain URI when a certain "physical" (static) file is served? It shouldn’t matter under which URI this file is served initially.
Example
...
0
votes
0answers
21 views
Uri.TryCreate - error - Index was outside the bounds of the array
I can't make sense of this error. My application is 64 bit, i have 32 gb ram memory and software not even using 1 gb ram when this error happened.
So what may cause this error and how to solve ? C# 5
...
0
votes
1answer
36 views
Image in Window is missing when calling from other project
I have an Application and therefore a login dialog. The login dialog contains an image.
<Window.Resources>
<BitmapImage x:Key="loginImage" UriSource="login.png" />
...
0
votes
0answers
28 views
Uri.parse() returning null for known Uri
I have one question about Uri in Android, I was following some code from a friend where I launch an intent to pick a contact from the user, and then manage the result with the onActivityResult method.
...
1
vote
1answer
26 views
charset in data URI
Over the years from reading the evolving specs I had assumed that RFC 3986 had finally settled on UTF-8 encoding for escape octet sequences. That is, if my URI has %XX%YY%ZZ I can take that sequence ...




