ksoap2-android を使用して、Wizard's of the Coast の公式 D&D4E Character Builder に使用されるDDI Content Vaultサービスを Android アプリから呼び出そうとしていますが、残念ながら Login メソッドを呼び出すたびに HTTP ステータス 415 を取得し続けます。私は他人のサービスにアクセスしようとしているので、サーバー側を制御することはできず、クライアント側でしか作業できません。
Windows アプリから送信された作業要求を次に示します。
<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://tempuri.org/IContentVaultService/Login</a:Action>
<a:MessageID>urn:uuid:f12a29a6-0421-457a-b4e0-8d0c189907d1</a:MessageID>
<a:ReplyTo>
<a:Address>http://www.w3.org/2005/08/addressing/anonymous</a:Address>
</a:ReplyTo>
<a:To s:mustUnderstand="1">http://ioun.wizards.com/ContentVault.svc</a:To>
</s:Header>
<s:Body>
<Login xmlns="http://tempuri.org/">
<userName>Redacted, string</userName>
<password>Redacted, byte array</password>
</Login>
</s:Body>
</s:Envelope>
ログインが成功したことを示す応答は次のとおりです。
<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://tempuri.org/IContentVaultService/LoginResponse</a:Action>
<a:RelatesTo>urn:uuid:f12a29a6-0421-457a-b4e0-8d0c189907d1</a:RelatesTo>
</s:Header>
<s:Body>
<LoginResponse xmlns="http://tempuri.org/">
<LoginResult>true</LoginResult>
</LoginResponse>
</s:Body>
</s:Envelope>
そして、ここに私が使用しているコードがあります:
private static final String SOAP_ACTION = "http://tempuri.org/IContentVaultService/Login";
private static final String METHOD_NAME = "Login";
private static final String NAMESPACE = "http://tempuri.org/";
private static final String URL = "http://ioun.wizards.com/ContentVault.svc";
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
SoapObject login = new SoapObject(NAMESPACE, "Login");
PropertyInfo name = new PropertyInfo();
name.setName("userName");
name.setValue(uName);
name.setType(String.class);
PropertyInfo pWord = new PropertyInfo();
pWord.setName("password");
pWord.setValue(simpleEncrypt(pass, uName));
pWord.setType(new byte[0].getClass());
request.addProperty(name);
request.addProperty(pWord);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12);
new MarshalBase64().register(envelope);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
List<HeaderProperty> headerProperty = new ArrayList<HeaderProperty>();
headerProperty.add(new HeaderProperty("Action", SOAP_ACTION));
headerProperty.add(new HeaderProperty("To", URL));
headerProperty.add(new HeaderProperty("ReplyTo", "http://www.w3.org/2005/08/addressing/anonymous"));
HttpTransportSE ht = new HttpTransportSE(URL);
ht.call(SOAP_ACTION, envelope, headerProperty);
誰かがそれを必要とする場合に備えて、パスワードがどのようにエンコードされているかを次に示します。他のプラットフォームで私の既知の良好なバージョンとまったく同じ結果が得られているので、正しく機能していることがわかります。はい、これが良い方法ではないことはわかっていますが、私はくそったれを設計した人ではありません。
private byte[] simpleEncrypt(String value, String key)
{
MessageDigest digest = null;
byte[] hash = null;
byte[] IV = null;
try
{
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS7Padding");
digest = MessageDigest.getInstance("SHA-256");
digest.reset();
hash = digest.digest(key.getBytes("UTF-8"));
IV = Arrays.copyOfRange(hash, 0, cipher.getBlockSize());
SecretKey secret = new SecretKeySpec(hash, "AES");
IvParameterSpec ivspec = new IvParameterSpec(IV);
cipher.init(Cipher.ENCRYPT_MODE, secret, ivspec);
return cipher.doFinal(value.getBytes("UTF-8"));
}
catch (Exception e1)
{
statusBar.setVisibility(View.VISIBLE);
progress.setVisibility(View.INVISIBLE);
status.setText(e1.getLocalizedMessage());
}
return null;
}
ログイン機能を機能させることができれば、あとは簡単に理解できます。これを機能させるための助けをいただければ幸いです。