Sarven Capadisli

Results 854 comments of Sarven Capadisli

There are different concerns. One is about requiring authentication on the proxy endpoint: https://github.com/nodeSolidServer/node-solid-server/issues/1769 . Another concern is making sure community server providers that are making a proxy available have...

Besides the unrealistic case where the user manually enters the proxy base URI into their application, the application needs to be able to discover the proxy base URI. I'm not...

The Solid Protocol specifies how to discover the Description Resource: https://solidproject.org/ED/protocol#auxiliary-resources-description-resource . In essence, the server allocates the URI to the description resource, and manages its lifecycle in part, e.g.,...

This is not a requirement in the Solid Protocol but it could perhaps be an advisement where an implementation could implement the following: Servers are advised to respond with the...

If applications can create dot files (for any purpose) and they're hidden from containment, then there is no way for applications to manage them consistently. And this becomes problematic when...

403 is the typical response to an unauthorized request. What additional knowledge can an attacker gain by looking at the source code and obtaining the knowledge that requests to certain...

>Objectives : apply solid-notifications protocol https://solidproject.org/TR/notifications-protocol I suggest implementing: https://solid.github.io/notifications/protocol >- [ ] discovery subscription service : link header (relative URL ?) `link: ; rel="http://www.w3.org/ns/solid/terms#storageDescription"` The reference to `storageDescription` is...

As you like. I've already explained why DELETE to unsubscribe is unnecessary in some cases, relatively complicated, and inconsistent with how subscribing works ( https://github.com/solid/notifications/issues/145 ). If folks still want...

To be clear, "[u]nnecessary [for some notification channel types]". And for notification channel types that unsubscribing is useful, it can be accomplished in a similar way to subscribing, i.e., using...

``` curl -X PUT -H'Content-Type: text/html' https://example.org/ 200 curl -iH'Accept: text/html' https://example.org/ Content-Location: index.html ``` ?