Click here to Skip to main content
15,920,836 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHiding WSDL help page from a Web Service Pin
FyreWyrm20-May-08 16:42
FyreWyrm20-May-08 16:42 
AnswerRe: Hiding WSDL help page from a Web Service Pin
keyboard warrior20-May-08 16:48
keyboard warrior20-May-08 16:48 
GeneralRe: Hiding WSDL help page from a Web Service Pin
FyreWyrm20-May-08 16:53
FyreWyrm20-May-08 16:53 
AnswerRe: Hiding WSDL help page from a Web Service Pin
keyboard warrior20-May-08 17:01
keyboard warrior20-May-08 17:01 
GeneralRe: Hiding WSDL help page from a Web Service Pin
FyreWyrm20-May-08 17:03
FyreWyrm20-May-08 17:03 
GeneralRe: Hiding WSDL help page from a Web Service Pin
keyboard warrior20-May-08 17:16
keyboard warrior20-May-08 17:16 
GeneralRe: Hiding WSDL help page from a Web Service Pin
FyreWyrm20-May-08 17:22
FyreWyrm20-May-08 17:22 
GeneralRe: Hiding WSDL help page from a Web Service Pin
keyboard warrior20-May-08 17:58
keyboard warrior20-May-08 17:58 
Okay I got it.

This is my web.config in a brand new asp.net app.

<?xml version="1.0"?>
<!-- 

-->
<configuration>
	<appSettings/>
	<connectionStrings/>
	<system.web>
		<webServices>
			<wsdlHelpGenerator href="blank.aspx"/>
		</webServices>
		<compilation debug="true"/>
   

    <authentication mode="Windows"/>
	</system.web>
</configuration>


I changed it to a .aspx because the .htm and .html have issues out of the box basically. Where as the web server knows how to render the .aspx.

The location bar will not change. It will still show the address to the service. The page that loads up in the services location is the blank.aspx.

I just changed it from htm or html to aspx and this has worked when you go directly to my web service file service.asmx

-----------
when using a .htm the web config needed additional handlers to know what to do with the .htm which is why i changed it to aspx because i dont see why it would matter as long as the user sees the correct content.

-----------------------------------------------------------
"When I first saw it, I just thought that you really, really enjoyed programming in java." - Leslie Sanford

GeneralRe: Hiding WSDL help page from a Web Service Pin
FyreWyrm21-May-08 15:33
FyreWyrm21-May-08 15:33 
QuestionGridView & SQLdatasourceproblems Pin
Jacob Dixon20-May-08 14:35
Jacob Dixon20-May-08 14:35 
AnswerRe: GridView & SQLdatasourceproblems Pin
keyboard warrior20-May-08 15:56
keyboard warrior20-May-08 15:56 
GeneralRe: GridView & SQLdatasourceproblems Pin
Jacob Dixon20-May-08 16:57
Jacob Dixon20-May-08 16:57 
GeneralRe: GridView & SQLdatasourceproblems Pin
Jacob Dixon20-May-08 17:07
Jacob Dixon20-May-08 17:07 
GeneralRe: GridView & SQLdatasourceproblems Pin
keyboard warrior20-May-08 17:19
keyboard warrior20-May-08 17:19 
GeneralRe: GridView & SQLdatasourceproblems Pin
keyboard warrior20-May-08 17:12
keyboard warrior20-May-08 17:12 
GeneralRe: GridView & SQLdatasourceproblems [modified] Pin
Jacob Dixon20-May-08 17:38
Jacob Dixon20-May-08 17:38 
GeneralRe: GridView & SQLdatasourceproblems Pin
keyboard warrior20-May-08 17:51
keyboard warrior20-May-08 17:51 
GeneralRe: GridView & SQLdatasourceproblems Pin
Jacob Dixon20-May-08 18:04
Jacob Dixon20-May-08 18:04 
GeneralRe: GridView & SQLdatasourceproblems Pin
Jacob Dixon20-May-08 18:13
Jacob Dixon20-May-08 18:13 
GeneralRe: GridView & SQLdatasourceproblems [modified] Pin
keyboard warrior20-May-08 18:24
keyboard warrior20-May-08 18:24 
GeneralRe: GridView & SQLdatasourceproblems Pin
Jacob Dixon21-May-08 1:35
Jacob Dixon21-May-08 1:35 
GeneralRe: GridView & SQLdatasourceproblems Pin
keyboard warrior21-May-08 5:32
keyboard warrior21-May-08 5:32 
GeneralRe: GridView & SQLdatasourceproblems Pin
Jacob Dixon21-May-08 15:37
Jacob Dixon21-May-08 15:37 
AnswerRe: GridView & SQLdatasourceproblems Pin
kinnuP20-May-08 21:03
kinnuP20-May-08 21:03 
GeneralRe: GridView & SQLdatasourceproblems Pin
Jacob Dixon21-May-08 1:32
Jacob Dixon21-May-08 1:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.