I am working on an application, that when it's rolled out will have a SQL server thats accessed by a WCF Service library running as a Windows Service. The application will be accessed via intranet or through VPN (Cisco). However during development I have the test database and Windows Service WCF library running on our own development server. The customer want's to be able to try the different builds from their own computers (inside their Domain) and access the database on our development server. To do this I have disabled the security functions in the App.config file of the WCF library as follows:

?xml version="1.0" encoding="utf-8" ?>

  
     
  

  
  
     
        
           
              
                 
              

           

           
           
           
              
              
                 
                 
              

           

           
           
           
           
        

     

     
        
           
              
              
              
              
           

        

     

     
        
           
              
                 
           

        

     

     

  



My problem is, that when I create the service reference in the Businesslogic library I get this config info from the WFC library:



     
           
                 
                                                      openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                              bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                              maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                              messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
                              allowCookies="false">
                                                                  maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                                                                  enabled="false" />
                             
                                                                              realm="" />
                                                                              algorithmSuite="Default" establishSecurityContext="true" />
                             

                       

                 

           

           
                                          binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_MyIService"
                        contract="ServiceRef.SuperfosIService" name="WSHttpBinding_MyIService">
                       
                             
                       

                 

           

     



can anyone explain me the reason for this, and even better come up with a solution?

Thank you very much.