MSPReturn[result,content]
returns the result with the specified MIME content type.
MSPReturn[result,content,filename]
sets the file name associated with the response.


MSPReturn
MSPReturn[result,content]
returns the result with the specified MIME content type.
MSPReturn[result,content,filename]
sets the file name associated with the response.
Examples
Basic Examples (1)
This example returns a Mathematica notebook directly to the client:
<msp:evaluate>
MSPReturn[ Notebook[ Cell[ "Hello", "Title"]],
"application/mathematica"]
</msp:evaluate>
This example returns an XML fragment. These techniques can be useful for making informal web services for working with technologies such as Flash or JavaScript that have convenient tools for processing XML:
<msp:evaluate>
MSPReturn[ ExportString[XMLElement["arg1", {}, {"5 6"}], "XML"],
"text/xml"]
</msp:evaluate>
The three-argument form of MSPReturn is useful when you wish to set the file name associated with the response:
<msp:evaluate>
MSPReturn[ Notebook[ Cell[ "Hello", "Title"]],
"application/mathematica", "mynotebook.nb"]
</msp:evaluate>
In this case, the client might try to use a file name of mynotebook.nb. It should also be noted that for some clients, such as Internet Explorer, setting the file name header can cause the display of two Open or Save dialog boxes.
Text
Wolfram Research (1996), MSPReturn, Wolfram Language function, https://reference.wolfram.com/language/WolframWebEngine/ref/MSPReturn.html.
CMS
Wolfram Language. 1996. "MSPReturn." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/WolframWebEngine/ref/MSPReturn.html.
APA
Wolfram Language. (1996). MSPReturn. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/WolframWebEngine/ref/MSPReturn.html
BibTeX
@misc{reference.wolfram_2025_mspreturn, author="Wolfram Research", title="{MSPReturn}", year="1996", howpublished="\url{https://reference.wolfram.com/language/WolframWebEngine/ref/MSPReturn.html}", note=[Accessed: 25-August-2025]}
BibLaTeX
@online{reference.wolfram_2025_mspreturn, organization={Wolfram Research}, title={MSPReturn}, year={1996}, url={https://reference.wolfram.com/language/WolframWebEngine/ref/MSPReturn.html}, note=[Accessed: 25-August-2025]}