| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 11 months |
| seen | yesterday | |
| stats | profile views | 17 |
|
Mar 12 |
comment |
ServiceStack - Different server to main application The web application will be working almost without any intelligence, so it just needs to know where to call the service. It will then simply pass the data to and from client and web application. All the data will can be object or even string (JSON). Or there is an option of doing more work in web application and building a facade for every service method call |
|
Mar 12 |
comment |
ServiceStack - Different server to main application In that case you can have a controller action in your WebApplication, which takes the path of the ServiceStack service to call, the data to pass and Http verb to use. The client can then call this action method with everything needed, and controller action can then call approprite service method with data, get response and pass it back to client. The web application can also manage user session and other request context information. |
|
Mar 12 |
awarded | Commentator |
|
Mar 12 |
comment |
ServiceStack - Different server to main application We have a similar set up where the web application is a Java application and it calls a Rest service created in C#. The Java application manages user session etc. Are both the services that you mentioned web services? or is one of them web application? |
|
Mar 12 |
comment |
How to change detail stack error (UnauthorizedAccessException) Are you looking to change it for displaying it to user? or do you want to add extra information to this message? |
|
Mar 12 |
comment |
Adding features to ServiceStack auth provider Yes, I am studying the code to determine the minimum possible change required to accomplish this. At the moment, it looks like I will have to create a new service. I am not sure about whether to worry about open auth providers, as they will not be able to provide the same level of functionality as credentials provider. |
|
Mar 12 |
revised |
Adding features to ServiceStack auth provider added 75 characters in body |
|
Mar 11 |
asked | Adding features to ServiceStack auth provider |
|
Mar 11 |
comment |
OrmLite one to many in C# .Net This page contains all the information needed to do it: github.com/ServiceStack/ServiceStack.OrmLite |
|
Mar 6 |
answered | OrmLite one to many in C# .Net |
|
Mar 6 |
accepted | Injecting IDbConnectionFactory into Service class |
|
Mar 6 |
comment |
Injecting IDbConnectionFactory into Service class Thanks! With OrmLite.Sqlite, NuGet installed version 1.0.84. But OrmLite was probably looking for version 1.0.82. Updated to required version to get it working. |
|
Mar 5 |
asked | Injecting IDbConnectionFactory into Service class |
|
Jan 1 |
awarded | Notable Question |
|
Sep 24 |
revised |
Knockout array binding works only once added 326 characters in body |
|
Sep 21 |
comment |
Knockout array binding works only once I have created the fiddle (jsfiddle.net/9aJtG/1) but it has other problems - 1) The drag and drop on fiddle just opens up the file (not sure why) 2) on dropping the files the files get submitted, but there is no server side code which can work with JSFiddle form posting |
|
Sep 21 |
awarded | Editor |
|
Sep 21 |
comment |
Knockout array binding works only once @Gabber - Wouldn't data-bind="attr: {value:percentUploaded} set the progress bar to whatever value it has. Note: each row in the grid has a progress bar, its not a common bar for everything. |
|
Sep 21 |
comment |
Knockout array binding works only once Sorry, my last change wasn't updated in JSFiddle. I have changed the link now to working code. |
|
Sep 21 |
revised |
Knockout array binding works only once edited body |