forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClientFactory.cs
More file actions
32 lines (25 loc) · 1.16 KB
/
ClientFactory.cs
File metadata and controls
32 lines (25 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
namespace ServiceStack
{
public static class ClientFactory
{
public static IOneWayClient Create(string endpointUrl)
{
if (endpointUrl.IsNullOrEmpty() || !endpointUrl.StartsWith("http"))
return null;
if (endpointUrl.IndexOf("format=", StringComparison.Ordinal) == -1 || endpointUrl.IndexOf("format=json", StringComparison.Ordinal) >= 0)
return new JsonServiceClient(endpointUrl);
if (endpointUrl.IndexOf("format=jsv", StringComparison.Ordinal) >= 0)
return new JsvServiceClient(endpointUrl);
if (endpointUrl.IndexOf("format=xml", StringComparison.Ordinal) >= 0)
return new XmlServiceClient(endpointUrl);
#if NET45
if (endpointUrl.IndexOf("format=soap11", StringComparison.Ordinal) >= 0)
return new Soap11ServiceClient(endpointUrl);
if (endpointUrl.IndexOf("format=soap12", StringComparison.Ordinal) >= 0)
return new Soap12ServiceClient(endpointUrl);
#endif
throw new NotImplementedException("could not find service client for " + endpointUrl);
}
}
}