English 中文(简体)
SIP API作为网络服务
原标题:SIP API as webservice

我目前在一家提供VoIP解决方案的公司实习的早期阶段。我在这里基本上是为iPhone创建自定义的 SIP-客户应用程序。 但是,我告诉他们,如果我正确和更有效地建立MVC 模式,在可移动性方面,在移植到不同的平台上时,会有最起码的代码可以写。

我选择使用MonoTouch C#.NET, 用于高便捷性和生产率(学习目标-C太陡了,我的时间框架太短,记忆管理太费时 ) 。 为了创造更大的便捷性,我一直在考虑将一个 C# SIP 图书馆作为网络服务曝光,因此当移植到Android 时,与不同的API的联系更少。此外,由于编辑的原因,MonotTouch不允许使用动态图书馆。

我的应用程序会与SIP网络服务进行沟通,而Web服务则转而与SIP服务器进行沟通。

SIP对HTTP非常熟悉,但这一解决方案能奏效吗? 因为我也将面临实时运输协议。

谨请注意:

最佳回答

据我所知,这不会奏效,因为,正如你所提到的,你会面临RTP。你可能会在谈话中遇到很多滞后。此外,你还必须弄清楚如何在客户和服务器之间传送数据。

然而,要真正知道能否做到这一点,就只能做几个原型来测试这类问题。

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签