Swift and RemoteSDK Server

Hi!

Is possible to do a RemoteSDK Server using only Swift?

There are examples available?

I really mean, using free water with Swift and current license of RemObject SDK

Yes, you can create a RO server with .NET using any .NET language, including Swift. I’m not sure if we ship any samples using Swift specifically, but the same principles apply in all languages. I would suggest t start with a new project using the “Remoting SDK Server, Code First” template that ships with Water and Remoting SDK, which comes in a Swift version.

Then you can simply add your own services, such as

@Service public class MyService {
    @ServiceMethod public func DoSomethingCool() -> String {
        // Do something cool
    }
}

hth,
marc