I have incoming xml stream which is passed to SSRS report 2014 via asp.net call which extracts a xml message from source system .The xml schema in utf 8 format has 12 nodes and content of the data keeps varying .Currently the xml gets only english content and now I have a request to get content in French.
The xml data is about user and his profile attributes in a student application
I would therefore have to define 12 french nodes in the schema to get the new french content separately.I am worried now that if I request the content in the same xml it might break the xml string which holds the data and passes to SSRS report.
I actually don't know what is the maximum size the variable can hold . I dont want any server sided change because that may impact other existing report by increasing the size?
Hence I m searching answers for the following questions to design accordingly
How do I measure the content of characters in the incoming xml parameter ?
Also what is the max size a SSRS report parameter of string type can hold.?