| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1054 人关注过本帖
标题:求助 **************Remoting 和 IIS问题*************
只看楼主 加入收藏
fylxaut
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2008-9-25
收藏
 问题点数:0 回复次数:6 
求助 **************Remoting 和 IIS问题*************
" border="0" />


做交互式白板的问题:
                  编译通过,但运行是发生上述的错误,阻止了运行


求助:
  
        问题切入点

[[it] 本帖最后由 fylxaut 于 2008-10-3 22:29 编辑 [/it]]
搜索更多相关主题的帖子: IIS Remoting 
2008-10-02 20:36
love329125
Rank: 1
来 自:湖北
等 级:新手上路
帖 子:67
专家分:0
注 册:2008-1-5
收藏
得分:0 
回复
这个问题很常见
主要是你对于它 的权限问题,必须是iis是在集成身份验证(windows),在IIS里面修改

开心!!
2008-10-03 13:55
fylxaut
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2008-9-25
收藏
得分:0 
程序 及IIS设置


VS 2008

 whit 工程
 whiteboard 虚拟目录

新建文件夹.rar (152.97 KB) 程序

2008-10-03 21:25
fylxaut
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2008-9-25
收藏
得分:0 
IIS 已经设置为windows 还是不行



IIS  已经设置为windows  还是不行
2008-10-03 21:51
fylxaut
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2008-9-25
收藏
得分:0 



  设置
2008-10-03 21:52
fylxaut
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2008-9-25
收藏
得分:0 
web.config 服务端
<configuration>
  <system.runtime.remoting>
    <application>
      <service>

        <wellknown mode="singleton" type="Coordinator,PaintCoordinator" objectUri="Coordinator.rem"></wellknown>
      </service>


      <channels>
        <channel ref="http" >

          <serverProviders>
            <provider ref="wsdl" ></provider>
            <formatter ref="binary" typeFilterLevel="Full"></formatter>
            
          </serverProviders>



          <clientProviders>

            <formatter ref="binary"></formatter>
            
          </clientProviders>
         
        </channel>
        
      </channels>
      
    </application>
   
  </system.runtime.remoting>
  
  
  
  
  <system.web>
    <compilation defaultLanguage="c#" />
    <customErrors mode="On" />
  </system.web>
</configuration>
2008-10-03 21:54
fylxaut
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2008-9-25
收藏
得分:0 
客户端PaintClient.exe.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <system.runtime.remoting>
        <application>

            <client>
                  <wellknown  type="Coordinator,PaintCoordinator" url="http://localhost/WhiteBorad/Coordinator.rem">                                       
                  </wellknown>                        
            </client>


         
         
         
            <channels>
              <channel ref="http" port="9999">
                    <clientProviders>
                      <formatter ref="binary">
                        
                      </formatter>
                     
                    </clientProviders>



                      <serverProviders>

                        <formatter ref="binary"  typeFilterLevel="Full">

                        </formatter>
                        
                      </serverProviders>
                          
               
              </channel>
              
            </channels>
         
         
         
        </application>
        
   
  </system.runtime.remoting>
  
</configuration>
2008-10-03 21:57
快速回复:求助 **************Remoting 和 IIS问题*************
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014985 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved