Advanced Forum Search Results
-
[quote user="matt.raffel"]
[quote user="Sergey.Lutay"]
Hi Matt,
Have you configured IIS for hosting WCF services? If no, look here
[/quote]
[/quote]
This seems to be the answer:
http://www.ahmadreza.com/blog/post/Hosting-WCF-Service-in-IIS-and-Configuration-may-be-needed.aspx
for asp.net ...
-
[quote user="Sergey.Lutay"]
Hi Matt,
Have you configured IIS for hosting WCF services? If no, look here
[/quote]
that link is for windows server 2008. I'm using XP Media center.
Matt
-
I wanted to add when I reboot my machine, the first time I go to the service I get this error:
Failed to access IIS metabase.
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b ...
-
Yes I caved and installed IIS. Anyways, I hope this is the right forums for this message.
Project background: silverlight app calls WCF services.
I am trying to get the WCF services working on my local machine in IIS like this http://localhost/services/GreedInfoService.svc. The services work at my domain ...
-
Thnx.
As yall know, Silverlight takes a url and looks for the cross domain policy file at website root. in this case http://localhost:3874/clientaccesspolicy.xml or whatever. So apparently it just does some string manipulation to make that call (thnx to Fiddler :) )
I'm trying to find a way to force ...
-
It's been awhile since I had to deal with this issue, however I believe the problem is you cannot declare converters in the app xaml.
-
So I DL/installed fiddler. Fiddler shows that the client access policy is getting downloaded, and yet it still fails.
HTTP/1.1 200 OK
Date: Tue, 28 Jul 2009 18:22:05 GMT
Content-Length: 354
Content-Type: text/xml
Last-Modified: Tue, 28 Jul 2009 17:20:26 GMT
Accept-Ranges: bytes
ETag: "874076b2a7fca1:5310"
Server: ...
-
As I stated, 1) I am not using IIS and 2) I have placed the cross domain files. Installing IIS is not option. If that's the solution, then I may not use silverlight. I struggle with believing I must install IIS to using silverlight. I am locally developing and debugging ASP.NET websites without it, no ...
-
I've separated my silverlight app and my webservices into two, Like this:
my silverlight application url is like this: http://localhost:1870/ASP/Greed.ApplicationTestPage.aspx
my webservices url is like this: http://localhost:3877/www/Security.svc
I am getting a CommunicationException, with the details of "An error ...
-
I didn't state in my previous post that the converter class was in a separate assembly. Looking at your changes, I'm guessing you assumed it was in the same assembly as the application...correct?
Matt