Advertisement
Guest User

Untitled

a guest
Aug 15th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <configuration>
  3. <configSections>
  4. <section name="dataConfiguration" type="Dea.Data.Configuration.DatabaseSettings, Dea.Data"/>
  5. <section name="CampuseWSexceptionHandling" type="Dea.ExceptionHandling.ExceptionHandlingSectionHandler,Dea.ExceptionHandling"/>
  6. <section name="queryConfiguration" type="Dea.Ems.Web.Service.Campus.Queries.Configuration.SISQuerySettings, Dea.Ems.Web.Service.Campus.Queries"/>
  7. </configSections>
  8. <appSettings>
  9. <add key="emsDataWebServiceUrl" value=""/>
  10. </appSettings>
  11. <connectionStrings>
  12. <add name="SISConn" providerName="System.Data.OracleClient" connectionString="server=bannerdb.rollins.edu;data source=PROD;User Id=EMS_User;Password=emsuser345;"/>
  13. <add name="deaConnection" providerName="System.Data.SqlClient" connectionString="server=EMS01;database=EMS;"/>
  14. <!--<add name="SISConn" providerName="System.Data.OracleClient" connectionString="Data Source=SISDatasource;User Id=SISAccount;Password=SISACcountPassword;"/>
  15. <add name="deaConnection" providerName="System.Data.SqlClient" connectionString="server=EmsDBSerrver;database=EMSDatabaseName;"/>
  16. -->
  17. </connectionStrings>
  18. <dataConfiguration>
  19. <databaseConnections>
  20. <add name="SISConn"/>
  21. <add name="deaConnection" useEmsUser="true"/>
  22. </databaseConnections>
  23. </dataConfiguration>
  24. <queryConfiguration configSource="CustomConfig\queries.xml"/>
  25. <CampuseWSexceptionHandling mode="On">
  26. <logger mode="On" assembly="Dea.ExceptionHandling" type="Dea.ExceptionHandling.Loggers.DefaultLogger" exceptionFormat="Exception"/>
  27. <logger mode="Off" assembly="Dea.ExceptionHandling" type="Dea.ExceptionHandling.Loggers.DefaultXMLLogger" exceptionFormat="xml" fileName="XMLErrorLog.xml"/>
  28. <logger mode="Off" assembly="Dea.ExceptionHandling" type="Dea.ExceptionHandling.Loggers.AppLogLogger" exceptionFormat="App" applicationName="Ems Campus Web Service" logName="YourLogName"/>
  29. </CampuseWSexceptionHandling>
  30. <system.web>
  31. <compilation debug="false">
  32. <assemblies>
  33. <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
  34. <add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  35. <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  36. <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
  37. </assemblies>
  38. </compilation>
  39. <webServices>
  40. <!-- this adds our error handler to the SOAP pipeline. -->
  41. <soapExtensionTypes>
  42. <add type="Dea.ExceptionHandling.SoapExceptionHandler,Dea.ExceptionHandling" priority="1" group="0"/>
  43. </soapExtensionTypes>
  44. <protocols>
  45. <add name="HttpPost"/>
  46. <add name="HttpGet"/>
  47. </protocols>
  48. </webServices>
  49. </system.web>
  50. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement