Amazon Elastic Cloud and Silverlight Deployment - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T12:25:00Z http://stackoverflow.com/feeds/question/707551 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/707551/amazon-elastic-cloud-and-silverlight-deployment 0 Amazon Elastic Cloud and Silverlight Deployment JSmyth 2009-04-01T22:12:50Z 2009-04-03T00:34:12Z <p>We are experimenting with hosting a silverlight application on Amazons EC2.</p> <p>I can get it to serve up the .xap file, but I'm having some trouble with using the webservices that the silverlight application requires.</p> <p>Usually I would add a service reference in visual studio and enter the URL for the webservice, something like <a href="http://url.com/ServiceName.svc" rel="nofollow">http://url.com/ServiceName.svc</a> and a proxy would be generated for me.</p> <p>However with the Amazon Elastic Cloud instance entering the url</p> <p><a href="http://ec2-174-129-139-48.compute-1.amazonaws.com/AuthService.svc" rel="nofollow">http://ec2-174-129-139-48.compute-1.amazonaws.com/AuthService.svc</a></p> <p>Gives the error "is not recognised as a known document type"</p> <p>And if I enter</p> <p><a href="http://ec2-174-129-139-48.compute-1.amazonaws.com/AuthService.svc?wsdl" rel="nofollow">http://ec2-174-129-139-48.compute-1.amazonaws.com/AuthService.svc?wsdl</a> </p> <p>Into the internet explorer address bar I get a wsdl description - but it has this part in the config which seems a bit odd</p> <pre><code>&lt;wsdl:types&gt; &lt;xsd:schema targetNamespace="http://asp.net/ApplicationServices/v200/Imports"&gt; &lt;xsd:import schemaLocation="http://ip-0af8db15/AuthService.svc?xsd=xsd0" namespace="http://asp.net/ApplicationServices/v200" /&gt; &lt;xsd:import schemaLocation="http://ip-0af8db15/AuthService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" /&gt; &lt;/xsd:schema&gt; &lt;/wsdl:types&gt; </code></pre> <p>The schemaLocation <a href="http://ip-0af8db15/AuthService.svc" rel="nofollow">http://ip-0af8db15/AuthService.svc</a>? doesn't look like the right address to me?</p> <p>Anyone know if I need to configure something or change something to access WCF webservices on Amazon EC2?</p> <p>Edit: Should note : Windows Server 2003, IIS 6.0</p> <p>Edit: Looks like ip-0af8db15 is the machine name</p> http://stackoverflow.com/questions/707551/amazon-elastic-cloud-and-silverlight-deployment/707562#707562 0 Answer by sipwiz for Amazon Elastic Cloud and Silverlight Deployment sipwiz 2009-04-01T22:18:29Z 2009-04-01T23:03:28Z <p>I have the same scenario deployed with no issues. Why don't you try using the IP address instead of the dynamic hostname:</p> <p><a href="http://174.129.139.48/AuthService.svc" rel="nofollow">http://174.129.139.48/AuthService.svc</a></p> <p>Edit:</p> <p>If an unreachable server name is being put into the VS.Net generated proxy then you can adjust it manually in the automatically generated configuration.svcinfo. Alternatively you can set the URL programatically, this is a better option since it won't get over written if you need to re-generate the proxy.</p> <pre><code>BasicHttpBinding binding = new BasicHttpBinding(); EndpointAddress address = new EndpointAddress("http://174.129.139.48/AuthService.svc"); YourProxy yourProxy = new YourProxy(binding, address); </code></pre> http://stackoverflow.com/questions/707551/amazon-elastic-cloud-and-silverlight-deployment/712151#712151 0 Answer by JSmyth for Amazon Elastic Cloud and Silverlight Deployment JSmyth 2009-04-03T00:34:12Z 2009-04-03T00:34:12Z <p>This thread (particularly the last two posts) helped me to solve this problem.</p> <p><a href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/c7fd51a2-773e-41d4-95a0-244e925597fe/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/c7fd51a2-773e-41d4-95a0-244e925597fe/</a></p>