Question : How to override some Machine.config info

I have an asp.net application that works great when I run it locally but when I upload it to my hosting solution, I get this error.
Unrecognized configuration section system.serviceModel.
In researching it, I found out that this is due to missing info in the machine.config file (according to this http://weblogs.asp.net/bhouse/archive/2005/11/10/430270.aspx) however, I don't have access to the machine.config file on the host server so I wanted to override it. I tried adding the missing stuff to my web.config file but I'm getting the same error. Not sure if I'm doing it wrong or if it's not possible to override it. Can someone please take a look?
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:


	
		
			
				

Answer : How to override some Machine.config info

Hi,

You're using features from WCF--introduced in .Net 3.0. To use 2.0, you will need to make changes to your web services. That's a huge subject (entire books are written about web services) and there is a lot of free stuff on the web regarding them.

Scott Mitchell is one of my favorite authors. He has a guide here that should be most useful:
http://www.4guysfromrolla.com/articles/062602-1.aspx

Good luck,
Jon500
Random Solutions  
 
programming4us programming4us