webservcie调用报错
RT本地调用不报错,发布到公网上点击进入也不报错 但是web引用该服务时报错
Server was unable to process request. ---> Unable to generate a temporary class (result=1)
求指导。。
服务地址 http://yucai.hroot.cn/YuCaiData.asmx
--------------------编程问答-------------------- 是不是需要读写权限 --------------------编程问答--------------------
我这里连不了,是我的代理问题?还是你哪里也使用了代理呢? --------------------编程问答--------------------
你这是哪里添加的服务引用 vs里吗
--------------------编程问答-------------------- 对啊 怎么了? --------------------编程问答--------------------
我这里连不了,是我的代理问题?还是你哪里也使用了代理呢?
网页里能打开这个服务吗 --------------------编程问答-------------------- 参数很简单,应该后台代码有问题。 --------------------编程问答--------------------
参数很简单,应该后台代码有问题。
什么参数很简单?报错的参数吗 --------------------编程问答-------------------- 网页可以打开,应该就是我代理问题了。
试试给Service服务器匿名账户加上对Windows/temp/目录的写入权限。 --------------------编程问答--------------------
网页可以打开,应该就是我代理问题了。
试试给Service服务器匿名账户加上对Windows/temp/目录的写入权限。
网页可以打开 但是点进方法时没有参数暴露出来 是正确的吗 --------------------编程问答--------------------
网页可以打开,应该就是我代理问题了。
试试给Service服务器匿名账户加上对Windows/temp/目录的写入权限。
网页可以打开 但是点进方法时没有参数暴露出来 是正确的吗
不对呀,我这里把参数暴露出来了,可能是因为这个权限问题吧,因为引用权限时需要往Windows/temp/目录里写东西。总之不管怎么说试试给文件夹加上写入权限看看能解决现在这个问题不能。
--------------------编程问答--------------------
/// <summary>
/// YuCaiData 的摘要说明
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class YuCaiData : System.Web.Services.WebService{
[WebMethod(Description = "查询")]
public XmlDataDocument GetAuData(int NodeID, DateTime LastEditDate)
//代码省略。。。代码逻辑测试通过
{
}
}
请问webservice这样的格式是正确的吗 --------------------编程问答--------------------
/// <summary>
/// YuCaiData 的摘要说明
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class YuCaiData : System.Web.Services.WebService{
[WebMethod(Description = "查询")]
public XmlDataDocument GetAuData(int NodeID, DateTime LastEditDate)
//代码省略。。。代码逻辑测试通过
{
}
}
请问webservice这样的格式是正确的吗
补充:.NET技术 , ASP.NET