SugarCRM C# - 找不到404

时间:2011-09-12 09:25:52

标签: c# web-services sugarcrm

我目前正在尝试使用C#中的Visual Studio中的SugarCRM Soap / WSDL。每当我调用该服务时,我都会收到404 - 未找到异常,尽管我可以在Visual Studio中输入URL时完美地添加服务。

我的代码如下:

public void Login()
{
    //Create an authentication object
    user_auth user = new user_auth();

    //Set the credentials
    user.user_name = "myusername";
    user.password = this.computeMD5String("mypass");

    //Try to authenticate
    set_entry_result authentication_result = this.sugarService.login(user, "");

    //Check for errors
    if (Convert.ToInt32(authentication_result.error.number) != 0)
    {
        //An error occured
        this.Session = String.Concat(authentication_result.error.name, ": ",
        authentication_result.error.description);

        //Clear the existing sessionId
        this.Session = String.Empty;
    }
    else
    {
        //Set the sessionId
        this.Session = authentication_result.id;

        //Clear the existing error
        this.Error = String.Empty;
    }
}

以前有没有人经历过这个? : - )

非常感谢任何帮助/提示!

提前致谢。

/博

2 个答案:

答案 0 :(得分:1)

尝试使用其中一个url替换您的域名。如果没有在root用户安装,也要添加目录。

http://mydomain/service/v2/soap.php?wsdlhttp://mydomain/service/v2_1/soap.php?wsdl

答案 1 :(得分:0)

您必须使用该网址 {{3P>