1
JavaのUltiProからWebサービスを使用する必要があります。 UltiProのすべての例はC#用です(下記参照)、Javaへの変換方法はわかりません。WSHTTPBINDING APIサービスにアクセスするためのJavaクライアントの作成
私の研究は、キーがWSHttpBindingであることを示しています。
UltiProのドキュメントは、彼らが言うXMLファイルが含まれています...
次のコードでは、あなたのUltiProデータへの認証のXMLの例です。リクエスト全体の内容をコピーし、値を更新することができます。応答の例は、正常な応答のフォーマット方法を示しています。
これまでに多くのWebサービスとRESTfulプログラムを書いていますが、これに固執しています。
<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing">
<s:Header>
<a:Action s:mustUnderstand="1">http://www.ultipro.com/services/loginservice/ILoginService/Authenticate</a:Action>
<h:ClientAccessKey xmlns:h="http://www.ultipro.com/services/loginservice">CAK</h:ClientAccessKey>
<h:Password xmlns:h="http://www.ultipro.com/services/loginservice">PASSWORD</h:Password>
<h:UserAccessKey xmlns:h="http://www.ultipro.com/services/loginservice">USER API KEY</h:UserAccessKey>
<h:UserName xmlns:h="http://www.ultipro.com/services/loginservice">USERNAME</h:UserName>
</s:Header>
<s:Body>
<TokenRequest xmlns="http://www.ultipro.com/contracts" />
</s:Body>
</s:Envelope>
C#コード:
namespace ConsoleSample
{
using System;
using System.ServiceModel;
using System.ServiceModel.Channels;
using ConsoleSample.LoginService;
public class Program
{
internal static void Main(string[] args)
{
// Setup your user credentials:
const string UserName = "";
const string Password = "";
const string UserApiKey = "";
const string CustomerApiKey = "";
// Create a proxy to the login service:
var loginClient = new LoginServiceClient("WSHttpBinding_ILoginService");
try
{
// Submit the login request to authenticate the user:
string message;
string authenticationToken;
AuthenticationStatus loginRequest =
loginClient
.Authenticate(
CustomerApiKey,
Password,
UserApiKey,
UserName,
out message,
out authenticationToken);
if (loginRequest == AuthenticationStatus.Ok)
{
// User is authenticated and the authentication token is provided.
Console.WriteLine("User authentication successful.");
}
else
{
// User authentication has failed. Review the message for details.
Console.WriteLine("User authentication failed: " + message);
}
loginClient.Close();
Console.WriteLine("Press a key to exit...");
Console.ReadKey(true);
}
catch (Exception ex)
{
Console.WriteLine("Exception: " + ex);
loginClient.Abort();
throw;
}
}
あなたは一人ではありません。
は、私は成功し、次のコードを使用して認証することができました。 Java - >。NET interopの問題は最悪です。 – Matt1776私はこれを試してあきらめました。私たちは.NETに切り替えるので、とにかく簡単になるでしょう... –