Advanced Forum Search Results
-
This is the kind of answer I expected, although I was hoping something better existed.
Thanks!
-
If I have a form in Silverlight and embedded into an ASP.NET page, For example:
<body style="height:100%;margin:0;">
<form id="form1" runat="server" style="height:1000px;">
<asp:ScriptManager ...
-
I solved the problem by moving to IIS 6.0 and adding .svc extensions to mime and script extensions.
Thanks for all of your help, everyone :)
-
[quote user="sladapter"]
I have seen this error before. It's the ASP.net get corrupted for some reason.
try this: use Start/Run to run the following command:
%Windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i
then restart IIS.
[/quote]
I did this and the install worked without any trouble, then ...
-
The XML page cannot be displayed
Cannot view XML input using XSL style sheet.
Please correct the error and then click the Refresh button, or try
again later.
A name was started with an invalid
character. Error processing resource
'http://localhost/RegressionToolWeb/MathService.svc...<%@ ServiceHost ...
-
Unfortunately it is the same problem even with the code you just suggested.
I took your advice and added a pop-up that gives me an error message. It seems from looking at it that for some reason it can't find the web service.
I have my MathService.svc file in the root of the web project (same place as Web.config) and the ...
-
[quote user="sladapter"]
Sorry, should be address.AbsoluteUrl. I was just typing from my memory.
MathServiceReference.MathServiceClient MathClient = new
MathServiceReference.MathServiceClient("BasicHttpBinding_MathService",
address.AbsoluteUrl);
[/quote]
This worked for me locally, but not on ...
-
[quote user="sladapter"]
try this:
3) Do not rely on the URL set in the ServiceReference.ClientConfig.
Set your URL in the code. Change your WebSerivice Calling code to the
following:
var webService = new YourWebService.YourWebServiceClient() // This is the default ...
-
I have tried just removing the Port number and have had no luck, but what I tried was accessing the page of the web-service using my browser (so I knew where it was).
When I tried to access the MathService.svc file this way, I got the following error in my browser:
XML Parsing Error: not well-formed
Location: ...
-
This is how I have it set up in the web config:
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior ...