show/hide this revision's text 2 added 57 characters in body

We are experimenting with hosting a silverlight application on Amazons EC2.

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.

Usually I would add a service reference in visual studio and enter the URL for the webservice, something like http://url.com/ServiceName.svc and a proxy would be generated for me.

However with the Amazon Elastic Cloud instance entering the url

http://ec2-174-129-139-48.compute-1.amazonaws.com/AuthService.svc

Gives the error "is not recognised as a known document type"

And if I enter

http://ec2-174-129-139-48.compute-1.amazonaws.com/AuthService.svc?wsdl

Into the internet explorer address bar I get a wsdl description - but it has this part in the config which seems a bit odd

<wsdl:types>
<xsd:schema targetNamespace="http://asp.net/ApplicationServices/v200/Imports">
  <xsd:import schemaLocation="http://ip-0af8db15/AuthService.svc?xsd=xsd0" namespace="http://asp.net/ApplicationServices/v200" /> 
  <xsd:import schemaLocation="http://ip-0af8db15/AuthService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" /> 
  </xsd:schema>
  </wsdl:types>

The schemaLocation http://ip-0af8db15/AuthService.svc? doesn't look like the right address to me?

Anyone know if I need to configure something or change something to access WCF webservices on Amazon EC2?

Edit: Should note : Windows Server 2003, IIS 6.0

Edit: Looks like ip-0af8db15 is the machine name

show/hide this revision's text 1

Amazon Elastic Cloud and Silverlight Deployment

We are experimenting with hosting a silverlight application on Amazons EC2.

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.

Usually I would add a service reference in visual studio and enter the URL for the webservice, something like http://url.com/ServiceName.svc and a proxy would be generated for me.

However with the Amazon Elastic Cloud instance entering the url

http://ec2-174-129-139-48.compute-1.amazonaws.com/AuthService.svc

Gives the error "is not recognised as a known document type"

And if I enter

http://ec2-174-129-139-48.compute-1.amazonaws.com/AuthService.svc?wsdl

Into the internet explorer address bar I get a wsdl description - but it has this part in the config which seems a bit odd

<wsdl:types>
<xsd:schema targetNamespace="http://asp.net/ApplicationServices/v200/Imports">
  <xsd:import schemaLocation="http://ip-0af8db15/AuthService.svc?xsd=xsd0" namespace="http://asp.net/ApplicationServices/v200" /> 
  <xsd:import schemaLocation="http://ip-0af8db15/AuthService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" /> 
  </xsd:schema>
  </wsdl:types>

The schemaLocation http://ip-0af8db15/AuthService.svc? doesn't look like the right address to me?

Anyone know if I need to configure something or change something to access WCF webservices on Amazon EC2?

Edit: Should note : Windows Server 2003, IIS 6.0