-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Browsing in VS2015 doesn't work #135
Comments
I'm seeing the same problem using v2.0.0 of Klondike. From what I can tell the issue lies in the Example Klondike next link:
Example Nuget.org next link:
$skip value differences in the next link:
I haven't looked into the code with enough detail yet to be able to provide a solution but it appears the '30' value comes from the
|
Using Visual Studio 2015 Update 2, the Updates screen does seem to work for me, at least for the first page of results. However, there does seem to be a bug in Klondike where the formatting of the As far as I can tell, this incorrect encoding happens in support libraries like System.Web.Http.OData or elsewhere. I'm working on tracking down where the property is serialized to the client. |
same issue here. |
@chriseldredge, any update on this issue? I managed to reproduce the problem when Klondike successfully looked up a package in a remote package repository. |
I believe I tracked down where the property is serialized to the client: There is an interesting comment in the source code:
I also found that if you do not use OWIN to self-host vs. hosting in IIS, Hope this helps. |
There is an issue in Katana which Klondike uses as a host. The resource path delimiters "(" and ")" are encoded which violates RFC 3986. Please see section 3.3. This is the root cause for OData URL conventions not being handled correctly. The problem is in the The specific formatter which supports 'application/json' media type uses |
@chriseldredge, I submitted an issue 462 in Katana project. |
Seems like this will not be fixed by Microsoft. They expect users to migrate eventually to ASP.NET Core which in their opinion is the next version of Katana. Any thoughts? |
I think I have an ugly work-around for this from last time I was debugging it. I'll take a look. |
Work-around committed to NuGet.Lucene.Web and included in Klondike build 148. Can someone give the build in https://ci.appveyor.com/project/chriseldredge/klondike/build/148/artifacts a whirl and let me know if it fixes the problem? |
|
Released in v2.2.1 https://github.com/themotleyfool/Klondike/releases/tag/v2.1.1 |
Hey everyone,
browsing the package repository via Visual Studio 2015 Update 1 and all currently available updates doesn't work. Don't know if vanilla VS2015 does work. Updating and installing packages works without problems.
I captured a request via Fiddler and the result looks like:
We host our Klondike with the SelfHost.exe
I think it may has something to do with the url encoded request which the self host exe couldn't handle properly.
Hope this helps for interrogation / fixing.
The text was updated successfully, but these errors were encountered: