I'd like to add <compilation tempDirectory="MyPath"/>
to the web.config of my webservice.
Is it possible to specify a relative path? or it can only take an absolute path?
I'd like to add <compilation tempDirectory="MyPath"/>
to the web.config of my webservice.
Is it possible to specify a relative path? or it can only take an absolute path?
From tempDirectory,
Specifies the directory to use for temporary file storage during compilation.
I think your best bet would be the absolute path; but, you can try the relative like:
<compilation tempDirectory="Default Web Site/YourApp"/>