Failed to deploy component - “Cannot deserialize the current JSON object …”

断了今生、忘了曾经 提交于 2020-01-01 09:26:07

问题


Background Information

  • TFS 2015 RC2
  • Release Management Server 2015
  • Azure VM with 2015 deployment agent
  • Physical local machine with 2015 deployment agent

Both machines need the drop location using the Through Release Management Server over HTTP(S) option. Currently we are using the HTTP side of things over port 1000.

Workflow

  1. Stop App Pool (Working)
  2. Stop Website (Working)
  3. Copy website directory to backup location (Working)
  4. Backup Database (Working)
  5. Deploy Component (Not Working), using either
    • xcopy
    • msdeploy (web deploy package)

The Error (TL;DR)
The same error is received every time, it doesn't matter which machine or which deployment method. The component always fails with a JSON.NET issue.

7/22/2015 3:03:39 PM - Error - (13704, 104) - Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.String[]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List<T>) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
Path 'ErrorMessage', line 1, position 16.: \r\n\r\n   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
   at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
   at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings)
   at Newtonsoft.Json.JsonConvert.DeserializeObject[T](String value, JsonSerializerSettings settings)
   at Microsoft.TeamFoundation.Release.Data.Proxy.RestProxy.BaseDeploymentControllerServiceProxy.GetPackageFileInfos(String packageLocation)
   at Microsoft.TeamFoundation.Release.DeploymentAgent.Services.Deployer.HttpPackageDownloader.CopyPackageAndUnpackIt(String packageSourceLocation, String filesDestinationLocation)
   at Microsoft.TeamFoundation.Release.DeploymentAgent.Services.Deployer.ComponentProcessor.CopyComponentFiles()
   at Microsoft.TeamFoundation.Release.DeploymentAgent.Services.Deployer.ComponentProcessor.DeployComponent()

Update (Workaround)
As a work around if I edit the build configuration to have a UNC path as the drop location, the deployment is successful. However I want to use the Copy build output to server option.


回答1:


Un-installing deployer and installing RM 2015 RTM deployer should fix this issue.

There was an issue in previous RM releases where NewtonSoft.Json dll was not getting upgraded during deployer auto upgrade.




回答2:


I dont think MS really tested the agent releases with Update 1. I got the same error which is actually just a generic error message when using deployment through HTTP. When I converted it to deployment through UNC paths I found out what the problem was.

As you might know with TFS 2015 you had to name the release components exactly as the artifact names. So artifact 'WebApp X' has a release component called 'WebApp X' in RM with the subpath 'WebApp X'.

In my release configuration I have 3 different components (and artifacts). So on the disk it was:

  • '\build\WebApp X'
  • '\build\WebApp Y'
  • '\build\WebApp Z'

Worked perfectly with 2015 RTM. Now after Update 1 it looks for the following:

  • '\build\WebApp X\WebApp X'
  • '\build\WebApp X\WebApp Y\'
  • '\build'WebApp X\WebApp Z'

I dont know why it does this and how to solve this yet, but I manually altered the folders in the artifacts drop location and RM picked it up fine. So still looking how to fix this that it works correctly.




回答3:


This json issue occurs if the user under which the RM server app pool is running doesnt have access to the drop location of the component and you have selected 'Through RM server http(s) option'

So as a fix, you can give the app pool user permissions to access the drop.  you can see the correct error in the server logs. "Package location '\share\' does not exists or Application Pool user does not have access"



来源:https://stackoverflow.com/questions/31603767/failed-to-deploy-component-cannot-deserialize-the-current-json-object

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!