In my web project I have to serve ads through our openx server but after searching for documentation on how to implement openx's API on .NET, I haven't found anything. Does anyone know how to implement their API on .NET and how to serve ads through it? Documentation is appreciated.
Note: I have done my searches and I didn't find anything relating this matter. Using their own API is a priority to third parties API.
EDIT:
Public Class OpenXAdsProcessor
Dim session As OpenXNet.ISession
Dim s As IOpenXProxy
Public Sub New()
s = CookComputing.XmlRpc.XmlRpcProxyGen.Create(Of IOpenXProxy)()
s.Url = "ourserverurl/www/api/v1/xmlrpc/LogonXmlRpcService.php"
s.XmlRpcMethod = "logon"
session = New SessionImpl(s, "username", "password")
End Sub
End Class
Above I am implementing OpenX API. Right now I'm waiting to get permissions for my user because the server returned "Server returned a fault exception: [801] User must be OA installation admin" on my attempt to login.
Will the above code suffice to make use of your API?