を返す必要がある次のメソッドがありますXElement
。byte[]
問題は、 aをに変換する方法がわからないことXElement
です。
public XElement ServiceCallForNewMadidPlantReport()
{
var kpiReportClient = new ReportExecutionService();
kpiReportClient.Credentials = System.Net.CredentialCache.DefaultCredentials;
var endPoint = new EndpointAddress("*****");
kpiReportClient.Url = endPoint.ToString();
//render arguments
byte[]result = null;
string reportSickTimePlants = "/Human Resources/KPI POW/Kpi_Fmla_Summarized_Plants_Prg"; //report path
string format = "XML";
string historyID = null;
string devInfo = "";
//prepare report parameter
ParameterValue[] parameters = new ParameterValue[4];
parameters[0] = new ParameterValue();
parameters[0].Name = "Location";
parameters[0].Value = "4"; //New Madrid
parameters[1] = new ParameterValue();
parameters[1].Name = "UnCode";
parameters[1].Value = "Non-Union";
parameters[2] = new ParameterValue();
parameters[2].Name = "StartDate";
parameters[2].Value = "01/01/2006";
parameters[3] = new ParameterValue();
parameters[3].Name = "EndDate";
parameters[3].Value = "08/08/2012";
string encoding;
string mimeType;
string extension;
Warning[] warnings = null;
string[] streamIDs;
ExecutionInfo execInfo = new ExecutionInfo();
ExecutionHeader execHeader = new ExecutionHeader();
kpiReportClient.ExecutionHeaderValue = execHeader;
var trustedUserHeader = new TrustedUserHeader();
execInfo = kpiReportClient.LoadReport(reportSickTimePlants, historyID);
kpiReportClient.SetExecutionParameters(parameters, "en-us");
String SessionId = kpiReportClient.ExecutionHeaderValue.ExecutionID;
Console.WriteLine("SessionID: {0}", kpiReportClient.ExecutionHeaderValue.ExecutionID);
try
{
result = kpiReportClient.Render(format, devInfo, out extension, out encoding, out mimeType, out warnings, out streamIDs);
Console.WriteLine(result);
execInfo = kpiReportClient.GetExecutionInfo();
}
catch (SoapException e)
{
Console.WriteLine(e.Detail.OuterXml);
}
try
{
FileStream sickTimReportForPlants = File.Create("SickTimeNonRepEmpReport.xml", result.Length);
Console.WriteLine("File created.");
Console.WriteLine(sickTimReportForPlants);
sickTimReportForPlants.Write(result, 0, result.Length);
Console.WriteLine("Result written to the file.");
sickTimReportForPlants.Close();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
return ? (must be XElement)
}
これが私が試したことですが、うまくいきません:
result = kpiReportClient.Render(format, devInfo, out extension, out encoding, out mimeType, out warnings, out streamIDs);
Console.WriteLine(result);
string resultString = Convert.ToBase64String(result);
var nonRepSickReportForNM = XElement.Parse(resultString);
これにより、次のエラーが表示されます。
System.Xml.XmlException: ルート レベルのデータが無効です。行 1、位置 1。
他の方法もいくつか試しましたが、何をしても同じエラーが発生します。xml ファイルは次のようになります。
<?xml version="1.0" encoding="utf-8"?><Report xsi:schemaLocation="Kpi_Fmla_Summarized_Plants_Prg http://gonzo/ReportServer?%2fHuman+Resources%2fKPI+POW%2fKpi_Fmla_Summarized_Plants_Prg&rs%3aFormat=XML&rc%3aSchema=True" Name="Kpi_Fmla_Summarized_Plants_Prg" Location="New Madrid" Textbox84="KPI SICK / FMLA 1/1/2006 12:00:00 AM - 8/8/2012 12:00:00 AM" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="Kpi_Fmla_Summarized_Plants_Prg"><Tablix1><Textbox13><Textbox3><Textbox15 /></Textbox3></Textbox13><Category_Collection><Category Category1="FMLA"><represented1_Collection><represented1 represented11="Non-Union"><QTR_Collection><QTR QTR1="1" Textbox27="1787" /><QTR QTR1="2" Textbox27="988.75" /><QTR QTR1="3" Textbox27="1577.75" /><QTR QTR1="4" Textbox27="2133.25" /></QTR_Collection></represented1></represented1_Collection></Category><Category Category1="Sick"><represented1_Collection><represented1 represented11="Non-Union"><QTR_Collection><QTR QTR1="1" Textbox27="5407.5" /><QTR QTR1="2" Textbox27="4051.75" /><QTR QTR1="3" Textbox27="3928" /><QTR QTR1="4" Textbox27="4204.75" /></QTR_Collection></represented1></represented1_Collection></Category></Category_Collection></Tablix1></Report>
何が間違っているのかわかりません。
編集:
以下を実行した後:
string resultFromBytes = UTF8Encoding.UTF8.GetString(result);
return XDocument.Parse(resultFromBytes).Root;
それでも同じエラーメッセージが表示されますが、ここにresultFromBytesからのxmlがあります
<?xml version="1.0" encoding="utf-8"?><Report xsi:schemaLocation="Kpi_Fmla_Summarized_Plants_Prg http://gonzo/ReportServer?%2fHuman+Resources%2fKPI+POW%2fKpi_Fmla_Summarized_Plants_Prg&rs%3aFormat=XML&rc%3aSchema=True" Name="Kpi_Fmla_Summarized_Plants_Prg" Location="New Madrid" Textbox84="KPI SICK / FMLA 1/1/2006 12:00:00 AM - 8/8/2012 12:00:00 AM" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="Kpi_Fmla_Summarized_Plants_Prg"><Tablix1><Textbox13><Textbox3><Textbox15 /></Textbox3></Textbox13><Category_Collection><Category Category1="FMLA"><represented1_Collection><represented1 represented11="Non-Union"><QTR_Collection><QTR QTR1="1" Textbox27="1787" /><QTR QTR1="2" Textbox27="988.75" /><QTR QTR1="3" Textbox27="1577.75" /><QTR QTR1="4" Textbox27="2133.25" /></QTR_Collection></represented1></represented1_Collection></Category><Category Category1="Sick"><represented1_Collection><represented1 represented11="Non-Union"><QTR_Collection><QTR QTR1="1" Textbox27="5407.5" /><QTR QTR1="2" Textbox27="4051.75" /><QTR QTR1="3" Textbox27="3928" /><QTR QTR1="4" Textbox27="4204.75" /></QTR_Collection></represented1></represented1_Collection></Category></Category_Collection></Tablix1></Report>
編集:
これを行った後:
string resultFromBytes = UTF8Encoding.UTF8.GetString(result);
var regex = new System.Text.RegularExpressions.Regex(@"xsi:schemaLocation="".+""");
string strippedxml = regex.Replace(resultFromBytes, "");
return XDocument.Parse(strippedxml).Root;
私は同じ失敗をします。strippedxml は次のようになります。
<?xml version="1.0" encoding="utf-8"?><Report /></QTR_Collection></represented1></represented1_Collection></Category></Category_Collection></Tablix1></Report>
編集:
これを試してみると、xml の見た目はずっと良くなりましたが、同じエラーで失敗します。
string resultFromBytes = UTF8Encoding.UTF8.GetString(result);
var regex = new System.Text.RegularExpressions.Regex(@"xsi:schemaLocation="".+""");
string strippedxml = regex.Replace(resultFromBytes, "");
return XDocument.Parse(strippedxml).Root;
strippedxml の xml は次のようになります。
<?xml version="1.0" encoding="utf-8"?><Report Name="Kpi_Fmla_Summarized_Plants_Prg" Location="New Madrid" Textbox84="KPI SICK / FMLA 1/1/2006 12:00:00 AM - 8/8/2012 12:00:00 AM" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="Kpi_Fmla_Summarized_Plants_Prg"><Tablix1><Textbox13><Textbox3><Textbox15 /></Textbox3></Textbox13><Category_Collection><Category Category1="FMLA"><represented1_Collection><represented1 represented11="Non-Union"><QTR_Collection><QTR QTR1="1" Textbox27="1787" /><QTR QTR1="2" Textbox27="988.75" /><QTR QTR1="3" Textbox27="1577.75" /><QTR QTR1="4" Textbox27="2133.25" /></QTR_Collection></represented1></represented1_Collection></Category><Category Category1="Sick"><represented1_Collection><represented1 represented11="Non-Union"><QTR_Collection><QTR QTR1="1" Textbox27="5407.5" /><QTR QTR1="2" Textbox27="4051.75" /><QTR QTR1="3" Textbox27="3928" /><QTR QTR1="4" Textbox27="4204.75" /></QTR_Collection></represented1></represented1_Collection></Category></Category_Collection></Tablix1></Report>