.net 将数据推送到 SugarCRM 时出现问题
我有一个客户在他们的网站上编写自定义.net 应用程序,使用soap/API 将数据推送到他们的SugarCRM 专业按需帐户中。他们在这方面遇到了一些麻烦,并提出了以下问题,您能否帮我解答:
我需要知道如何检索与帐户关联的授权请求者和服务器信息。有一个 SugarSoap API 命令可以在搜索之前链接表,但我一直无法让它工作。展示如何使用 get_relationships 命令检索这些记录的示例将是理想的
此过程在 .php 中如下所示:
[28] => stdClass Object
(
[name] => accounts_srvip_servers
[type] => link
[relationship] => accounts_srvip_servers
[module] =>
[bean_name] =>
)
我认为授权请求者就是这个
[30] => stdClass Object
(
[name] => accounts_contacts_1
[type] => link
[relationship] => accounts_contacts_1
[module] =>
[bean_name] =>
)
任何帮助将不胜感激!
I have a client writing custom .net apps on their website using soap / API to push data into their SugarCRM professional on-demand account. They are having some trouble with this and have asked the following question, can you please help me with an answer:
I need to know how to retrieve the Authorized Requestors and Server information that are associated with accounts. There is a SugarSoap API command to link the tables before searching but I have been unable to get this to work. An example showing how to use the get_relationships command to retrieve these records would be ideal
This process looks like this in .php:
[28] => stdClass Object
(
[name] => accounts_srvip_servers
[type] => link
[relationship] => accounts_srvip_servers
[module] =>
[bean_name] =>
)
I think authorized requestors is this one
[30] => stdClass Object
(
[name] => accounts_contacts_1
[type] => link
[relationship] => accounts_contacts_1
[module] =>
[bean_name] =>
)
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想查看 CandyWrapper 项目,它为 SugarCRM 提供 .NET 接口
http://developers.sugarcrm.com/wordpress/2011/08/10/web-services-in-your-own-language-part-6-candywrapper-for-net/
You may want to check out the CandyWrapper project, which provides a .NET interface to SugarCRM
http://developers.sugarcrm.com/wordpress/2011/08/10/web-services-in-your-own-language-part-6-candywrapper-for-net/