3
votes
2answers
114 views

Is using aync/await a good idea for web services?

I have many web services which when they are called they need to call other external services for information before returning. This is all done synchronously. So if I have a movie GET service that ...
1
vote
2answers
91 views

Moving MVC-style service layer under WCF

Recently I've been working with MVC4 and have grown quite comfortable with the View > View Model > Controller > Service > Repository stack with IoC and all. I like this. It works well. However, we're ...
2
votes
1answer
40 views

Calling ServiceStack service from WCF client

I have an old SOAP service developed using WCF and also a number of .NET clients using WCF to call the service. I have created a new service using the ServiceStack framework that implements the same ...
2
votes
1answer
73 views

Does Service stack really built on Standards

I am not very much sure weather DTOs shuld be POCOs or it can depend on any technolgoy.I am thinking, It is better to keep them as POCOs to support Loose coupling and make sure it works with any ...
1
vote
1answer
136 views

ServiceStack.Text: Forcing serialization of a property not decorated with DataMember attribute

I have the following class (simplified). [DataContract] public class ServiceResponse { public int Sequence { get; set; } [DataMember] public ServiceResponseStatus Status { get; set; } } ...
1
vote
1answer
92 views

Send a large message to a ServiceStack service

I need to create a service that will allow a client to send a message containing a large amount of data and I'm not sure how to structure the API. Let's say a client wants to save a new object which ...
5
votes
1answer
611 views

Creating a service for client authentication with servicestack?

I have a couple of applications (mobile and desktop) that I need a simple webservice created for authentication and to post information back to the clients. After having man problems trying to figure ...
2
votes
1answer
96 views

Access SOAP webservice with ServiceStack

I'm creating my client/server application intercommunication with ServiceStack, and is working great, but I need also to access an external SOAP webservice. I tried to use the Soap12ServiceClient to ...
1
vote
2answers
314 views

ServiceStack, REST and multiple parameters

I have a question about REST in general. Imagine i have a WCF webservice that is used to add an operation performed on a bank card. The problem is that there are about 30 different parameters to ...
1
vote
3answers
135 views

ServiceStack : BasicAuth and Security

I would like to authenticate user trying to use my SS webservices. I found the sample code and followed PLURALSIGHT tutorial but i was wondering if user/password used during first connection is ...
2
votes
1answer
228 views

ServiceStack : IService, IRestService & WCF

I had some good results with implementing Rest Web Services with ServiceStack Framework, but i noticed somethings in samples i would like some more informations. I have currently created a Service ...
3
votes
1answer
391 views

WCF with Android (TCPBinding) and ServiceStack

I'm investigation different options to access remote data for an Android application(in the future WindowsEmbedded and possibly iOS with monotouch), so I've made some tests and I'm trying to ...
2
votes
4answers
305 views

ServiceStack WSDL does not include all types

I created a web service within my MVC application. all contracts are using the same namespace. AssemblyInfo.cs also maps the ContractNameSpace with ClrNameSpace. The generated WSDL does not define ...
2
votes
2answers
407 views

Host application server in windows service or IIS? [closed]

I'm starting new project for my client. It will be kind of big system with web UI (many, many users) + desktop UI (few users). I was wondering. Should I host my all logic in Windows services or IIS? ...
15
votes
1answer
3k views

OData with ServiceStack?

I just saw ServiceStack and I consider building a service with it. Is it possible to serve OData feeds with service stack, so I'd be able to expose IQueryable and query it from the client?
1
vote
2answers
486 views

How to remove the stacktrace from the standard ServiceStack error respose

I'm just getting started with ServiceStack, and I'd like to find out if it's possible to remove the stacktrace from the standard error response. I have tried shutting off debugmode without any luck: ...
2
votes
1answer
105 views

Switch from consumer application to WCF (servicestack) by debugging in Visual Studio

I am developing one product and there are 4 separate projects, in that I have developed one EXE project and WCF and I have done switching in debugging mode by attaching WCF project in process of ...
2
votes
2answers
933 views

What is better option to consume REST WCF using servicestack

I got some good solution from here about servicestack, now I am between 2 step and I have choose one of them. Please understand my practical scenario as per below I have created one REST WCF using ...
1
vote
2answers
141 views

How to get the reference of dll in remote application, how can i do that?

I think this is really a tricky question.(for c#, wcf ,restwcf, servicestack) I am having one service stack application, for those who don't know servie stack consider it is a rest-wcf application. I ...
3
votes
1answer
1k views

Implement WCF using servicestack Framework

I have developed one WCF application and it working as middle layer between database and my web application. Now my client want to transfer this WCF to REST based using ServiceStack. I have look ...
2
votes
1answer
541 views

What is the namespace for IService interface?

I am learning srevicestack and developing simple demo for helloworld but could not find namespace for Iservice interface , my code as per below public class Hello { public string name { get; ...
3
votes
1answer
636 views

Can the OpenRasta, ServiceStack and RestCake API's be used on frameworks other than .NET?

I know these API's are used for doing something easier than WCF (in terms of config and performance) for .NET, but I wanted to know if these API's can be used on other frameworks too? Thanks, ...