Hello
We have a problem on our BI 4.1 server.
Someone is using a object using a uploading webservice dsws_upload.
the objet is uploading in the FRSINPUT datastore a huge load of file. Each file contain 24ko more data than the previous one.
It seems that one of the dev has use somehow this code :
Example: Uploading a Crystal report to the CMS using .NET
String filePath = @"c:\temp\ReportToPublish.rpt";
String fileName = "ReportToPublish.rpt";
ResponseHolder rh = bipService.Get("path://InfoObjects/Root
Folder/Report Samples", null);
InfoObjects folders = rh.InfoObjects;
if (folders == null)
{
return;
}
String folderCUID = folders.InfoObject[0].CUID;
System.IO.FileStream fs = new System.IO.FileStream(filePath,
System.IO.FileMode.Open, System.IO.FileAccess.Read);
CheckSumInfo checkSumInfo = new CheckSumInfo();
checkSumInfo.CheckSumMethod = CheckSumMethodEnum.NONE;
checkSumInfo.CheckSumValue = new byte[1];
UploadStatus uploadStatus = new UploadStatus();
uploadStatus.UploadID =
In this code we can see that a file is uploaded by part of 24Ko
The final file is 26MO , but it generate 14Go of temporary file which explodes our FRSINPUT
all the temporary file name start with dsws_upload
it must be link to com.businessobjects.dsws.biplatform
do have any idea of how can we put a parameter somewhere to tell the Server not to store all the temporary files ?
thansk fo your time
florent