Creating authority using SOAP - EndpointNotFoundException
hi,
i added service reference to https://database.windows.net/soap/v1/. have ensured username , password correct. authority id unique extension of username.
i an endpointnotfoundexception when try create authority. full error message - "could not connect https://data.database.windows.net/soap/v1. tcp error code 10061: no connection made because target machine actively refused 65.55.23.119:443. "
here's code using:
string errmessage = null
i added service reference to https://database.windows.net/soap/v1/. have ensured username , password correct. authority id unique extension of username.
i an endpointnotfoundexception when try create authority. full error message - "could not connect https://data.database.windows.net/soap/v1. tcp error code 10061: no connection made because target machine actively refused 65.55.23.119:443. "
here's code using:
var
client = new sitkasoapserviceclient("basicauthendpoint");string errmessage = null
try
{
client.clientcredentials.username.username = "myusername";
client.clientcredentials.username.password = "mypassword";
scope scope = new scope();
authority authority = new authority();
authority.id = "uniqueauthid";
client.create(scope, authority);
}
catch (faultexception<error> ex)
{
errmessage = ex.detail.message;
}
finally
{
client.abort();
}
please help.
thanks,
poornima
sounds poornima
thanks
thanks
Microsoft Azure > Azure SQL Database
Comments
Post a Comment