使用自定义Web服务器共享锚ID无效

问题描述 投票:0回答:1

我正在尝试使用自己的Python cgi脚本来存储和提供锚ID。一切都与示例存储库中的Swagger共享服务器一起使用,但是以某种方式切换到Python服务器时出现错误,并且该应用程序一直在寻找锚点。

我想做的是,与Swagger脚本完全相同:我将锚ID发送到服务器,并返回一个锚编号,以便以后可以再次请求ID。据我了解,ID需要以字符串形式交换,这也是我从Python服务器返回的内容(内容类型:文本/纯文本)。

但是,当我从服务器上获取密钥时,尝试解析密钥/查找锚ID时,却出现以下错误:

这里是logcat的相关错误消息:

04-29 07:33:01.031: I/Unity(28756): (Filename: ./Runtime/Export/Debug.bindings.h Line: 45)
04-29 07:33:02.062: I/Unity(28756): State from DemoStepLookForAnchor to DemoStepLookingForAnchor
04-29 07:33:02.062: I/Unity(28756):  
04-29 07:33:02.062: I/Unity(28756): (Filename: ./Runtime/Export/Debug.bindings.h Line: 45)
04-29 07:33:02.141: E/Unity(28756): InvalidOperationException: bad lexical cast: source type value could not be interpreted as target. Request CV: . Response CV: .
04-29 07:33:02.141: E/Unity(28756):   at Microsoft.Azure.SpatialAnchors.NativeLibraryHelpers.CheckStatus (System.IntPtr handle, Microsoft.Azure.SpatialAnchors.status value) [0x000cc] in <b52d7a321113460294136f243fd7bd66>:0 
04-29 07:33:02.141: E/Unity(28756):   at Microsoft.Azure.SpatialAnchors.CloudSpatialAnchorSession.CreateWatcher (Microsoft.Azure.SpatialAnchors.AnchorLocateCriteria criteria) [0x00019] in <b52d7a321113460294136f243fd7bd66>:0 
04-29 07:33:02.141: E/Unity(28756):   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsDemoWrapper.CreateWatcher () [0x00008] in <b52d7a321113460294136f243fd7bd66>:0 
04-29 07:33:02.141: E/Unity(28756):   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsSharedAnchorDemoScript.AdvanceLocateFlowDemo () [0x00090] in <b52d7a321113460294136f243fd7bd66>:0 
04-29 07:33:02.141: E/Unity(28756):   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsSharedAnchorDemoScript.AdvanceDemo () [0x00018] in <b52d7a321113460294136f243fd7bd66>:0 
04-29 07:33:02.141: E/Unity(28756):   at Microsoft.Azure.SpatialAnchors.Unity.

可能出什么事了?提前非常感谢!

python unity3d azure-spatial-anchors
1个回答
0
投票

JanLa在评论中回答:

[问题是我对Python的一半了解:除了使用不可靠的数据库(anydbm更好)之外,我还犯了一个错误,即通过print输出Anchor ID字符串,这在末尾添加了换行符,从而使锚点ID。立即使用sys.stdout.write,效果很好。

© www.soinside.com 2019 - 2024. All rights reserved.