On Moss 2007 I have created a Records Center site based upon the Enterprise template. I created a new Document library and completed the Record Routing configuration. I was even able to add a Test document to the repository.
I have some sample code application tha attempts to execute a GetRecordRoutingCollection call on the Web Service. I have added a Web Reference to the site http://win-7e16ojgohrp:910/sites/GLS/Records/_vti_bin/OfficialFile.asmx. And the functionality of that site looks good in the Browser. The web page shows all four commands including GetRecordRoutingCollection.
But when the sample application executes
m_repository = new OfficialFileService.RecordsRepository();
m_repository.Credentials = System.Net.CredentialCache.DefaultCredentials;
m_repository.Url = repositoryUrl.Text;
string rTypes = m_repository.GetRecordRoutingCollection();
m_repository has a good non-Null value, but rTypes has the result
<ResultCode>InvalidConfiguration</ResultCode>
There are no other error messages. There are no events added to the system Event Log.
How can I find out what is wrong and fix it?
Is MOSS 2007 Record Center site is working properly, what is the InvalidConfiguration ?