SYMPTOMS
The following error is displayed when checking in the matter:
System.Data.Services.Client.DataServiceClientException: <?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code>500</code>
<message xml:lang="en-US">Exception has been thrown by the target of an invocation.</message>
<innererror>
<message>Invalid URI: The hostname could not be parsed.</message>
<type>System.UriFormatException</type>
<stacktrace> at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)
at System.Uri..ctor(String uriString)
at ZyLAB.Platform.ServiceClient.ProxyFactory.CreatePlatformClient(String serviceUri)
at ZyLAB.EDiscovery.Indexers.AddToZyIndex.PlatformIndexer.GetIndexTemplate(Dictionary`2 performerConfiguration)
at ZyLAB.EDiscovery.DataService.IndexTemplates.IndexTemplateLoader.GetMatterIndexTemplates(Matter matter)
at ZyLAB.EDiscovery.DataService.DataService.CreateInfrastructure(Matter matter)
at ZyLAB.EDiscovery.DataService.DataService.DoCheckIn(Int64 id)
at ZyLAB.EDiscovery.DataService.DataService.CheckIn(String id)</stacktrace>
</innererror>
</error>
at System.Data.Services.Client.QueryResult.Execute()
at System.Data.Services.Client.DataServiceRequest.Execute[TElement](DataServiceContext context, QueryComponents queryComponents))
CAUSE
The PlatformServiceUri value in the add to indexer file is not correct
RESOLUTION
Please check the PlatformServiceUri value in the add to indexer file:
C:\Program Files (x86)\ZyLAB\EDiscovery\Ediscoveryservice\Assemblies\Performers\ZyLAB.EDiscovery.Indexers.AddToZyIndex.dll.xml
The PlatformServiceUri URI should contain the correct Uri to the Platform Service host:
<setting key="PlatformServiceUri" value="http://localhost/PlatformService/PlatformIndexService.svc/soap" />
Either a localhost reference or the correct system name.
<?xml version="1.0" encoding="utf-8"?>
<zylab>
<configurations>
<configuration id="ContentAndMetadata">
<settings>
<setting key="autocreatefields" value="false" />
<setting key="importdocument" value="false" />
<setting key="PlatformServiceUri" value="http://localhost/PlatformService/PlatformIndexService.svc/soap" />
</settings>
</configuration>
</configurations>
</zylab>
APPLIES TO
3.6; 3.7
Comments
0 comments
Article is closed for comments.