<?xml version="1.0"?>
怎么读的,是不是缺少参数说明的,也可能是判断了来源地址了什么的,不在来源里面就输出其他的内容
sb.append("<Header AllianceID=\"");
sb.append(ConfigData.AllianceId);
sb.append("\" SID=\"");
sb.append(ConfigData.SId);
sb.append("\" TimeStamp=\"");
long timestamp = SignatureUtils.GetTimeStamp();
sb.append(timestamp);
sb.append("\" Signature=\"");
String signature = SignatureUtils.CalculationSignature(timestamp
+ "", ConfigData.AllianceId, ConfigData.SecretKey, ConfigData.SId, ConfigData.RequestType);
sb.append(signature);
sb.append("\" RequestType=\"");
sb.append(ConfigData.RequestType);
sb.append("\" AsyncRequest=\"false\" Timeout=\"0\" MessagePriority=\"3\"/><HotelRequest><RequestBody xmlns:ns=\"http://www.opentravel.org/OTA/2003/05\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"><ns:OTA_PingRQ><ns:EchoData>测试</ns:EchoData></ns:OTA_PingRQ></RequestBody></HotelRequest></Request>");