Reputation: 11595
My changes to a data transfer object on the server-side are not being reflected within the client's service reference.
THIS ONLY OCCURS ON THE REMOTE SERVER. When I run the service locally, the client's service reference updates as expected.
Regardless of everything that I have done, my service reference continues to reference the original class with the same name and the same members despite my changes.
Again this only happens on the remote server.
Upvotes: 0
Views: 117
Reputation: 11595
I had to do the following:
To have multiple applications running on your site without them affecting each other, you will need to set the subfolders as application starting points in your Site Manager.
Here are instructions on how to configure a subdirectory as a web application:
1) Log into the WinHost Control Panel here
2) Click on the Sites tab.
3) Click on the Manage link next to the site you want to manage.
4) Click on the Application Starting Point button.
5) Use the Create button to mark the directory.
I updated my webconfig with the following:
<system.web>
<trust level="Full" originUrl="" />
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="services/post/bin" />
</assemblyBinding>
</runtime>
Upvotes: 2