I'm trying to get connected to a Workday instance via their WSDL endpoint with C#, and I keep getting "System.ServiceModel.FaultException: 'invalid username or password'" back for my call(s). The other side (I'm working through a number of layers to get to the actual implementer of WD) insists that the user is setup properly. Right now, I'm just trying to get a console app to pull a list of orders (since I want to work with orders more extensively later). So, that's what this code is trying to do. It is a .NET 4.8 application, so that's the target for my solution.
From Program.cs:
internal class Program
{
static void Main( string[] args )
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
using( var clt = CreateWorkdayClient() )
{
var request = new Get_Purchase_Orders_RequestType()
{
version = "v42.0",
Item = new Purchase_Order_Request_CriteriaType() { },
Response_Filter = new Response_FilterType() { Page = 1, PageSpecified = true, Count = 50, CountSpecified = true },
Response_Group = new Purchase_Order_Response_GroupType() { Include_Reference = true, Include_ReferenceSpecified = true },
};
var response = clt.Get_Purchase_Orders( request );
Debug.WriteLine( JsonConvert.SerializeObject( response, Formatting.Indented, new JsonConverter[] { new StringEnumConverter() } ) );
}
}
public static Resource_ManagementPortClient CreateWorkdayClient()
{
SecurityBindingElement sb = SecurityBindingElement.CreateUserNameOverTransportBindingElement();
sb.IncludeTimestamp = false;
const int lim = Int32.MaxValue;
var timeout = TimeSpan.FromMinutes( 2 );
var cb = new CustomBinding(
sb,
new TextMessageEncodingBindingElement( MessageVersion.Soap11, Encoding.UTF8 )
{
ReaderQuotas = new System.Xml.XmlDictionaryReaderQuotas
{
MaxDepth = lim,
MaxStringContentLength = lim,
MaxArrayLength = lim,
MaxBytesPerRead = lim,
MaxNameTableCharCount = lim
}
},
new HttpsTransportBindingElement
{
MaxBufferPoolSize = lim,
MaxReceivedMessageSize = lim,
MaxBufferSize = lim,
Realm = string.Empty
} )
{
SendTimeout = timeout,
ReceiveTimeout = timeout
};
var client = new Resource_ManagementPortClient( cb, new EndpointAddress( "https://wd2-impl-services1.workday.com/ccx/service/tenant/Resource_Management" ) );
client.ClientCredentials.UserName.UserName = "user@tenant";
client.ClientCredentials.UserName.Password = "password";
return client;
}
}
From app.config:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="Resource_ManagementBinding">
<security mode="Transport" />
</binding>
<binding name="Resource_ManagementBinding1" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://wd2-impl-services1.workday.com/ccx/service/tenant/Resource_Management"
binding="basicHttpBinding" bindingConfiguration="Resource_ManagementBinding"
contract="TestApp.Resource_ManagementPort" name="Resource_Management" />
</client>
</system.serviceModel>
Anyone see anything that I could/would/should be doing differently?
Try using IEndpointBehavior and IMessageInspector interfaces to send the credentials in the request security header:
Then create your client like this: