![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
br> br> |
| |||||||
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Guest | Running WCF in Developer Server(Cassini) I keep getting following error when I am trying open or call a method in WCF service that is hosted in cassini "HTTP could not register URL http://+:80/Temporary_Listen_Address...-0e2bbb93e5e1/ because TCP port 80 is being used by another application." Why does it use port 80 when service is configured for port 4000? |
| | #2 (permalink) |
| Guest | RE: Running WCF in Developer Server(Cassini) Please explain some more about your scenario... How many en dpoints and what is your configuration? Do you have Any code implemented endpoints? "Shimon Sim" wrote: > I keep getting following error when I am trying open or call a method in WCF > service that is hosted in cassini > "HTTP could not register URL > http://+:80/Temporary_Listen_Address...-0e2bbb93e5e1/ > because TCP port 80 is being used by another application." > > Why does it use port 80 when service is configured for port 4000? |
| | #3 (permalink) |
| Guest | RE: Running WCF in Developer Server(Cassini) I got it working with basicHttpBinding. But the configuration was as follows. All the code has correct implementation. <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name="ReportService.ServiceImplementation.AgentLogin_Behavior"> <serviceDebug includeExceptionDetailInFaults="false" /> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> <services> <service behaviorConfiguration="ReportService.ServiceImplementation.AgentLogin_Behavior" name="ReportService.ServiceImplementation.AgentLogin"> <endpoint binding="wsDualHttpBinding" bindingNamespace="http://ReportService.ServiceContracts/2007/04" contract="ReportService.ServiceContracts.IAgentLogin" /> </service> </services> </system.serviceModel> "Dwight@QuickLearn" wrote: > > Please explain some more about your scenario... > > How many en dpoints and what is your configuration? > Do you have Any code implemented endpoints? > > > > > > "Shimon Sim" wrote: > > > I keep getting following error when I am trying open or call a method in WCF > > service that is hosted in cassini > > "HTTP could not register URL > > http://+:80/Temporary_Listen_Address...-0e2bbb93e5e1/ > > because TCP port 80 is being used by another application." > > > > Why does it use port 80 when service is configured for port 4000? |
| | #4 (permalink) |
| Guest | Re: Running WCF in Developer Server(Cassini) You have no "address", but "binding" only in endpoint attribs Arkady "Shimon Sim" <ShimonSim@discussions.microsoft.com> wrote in message news:30E05BC8-366D-4141-9EDA-897BCEE59E38@microsoft.com... >I got it working with basicHttpBinding. But the configuration was as >follows. > All the code has correct implementation. > <system.serviceModel> > <behaviors> > <serviceBehaviors> > <behavior name="ReportService.ServiceImplementation.AgentLogin_Behavior"> > <serviceDebug includeExceptionDetailInFaults="false" /> > <serviceMetadata httpGetEnabled="true" /> > > </behavior> > </serviceBehaviors> > </behaviors> > <services> > <service > behaviorConfiguration="ReportService.ServiceImplementation.AgentLogin_Behavior" > name="ReportService.ServiceImplementation.AgentLogin"> > <endpoint binding="wsDualHttpBinding" > bindingNamespace="http://ReportService.ServiceContracts/2007/04" > contract="ReportService.ServiceContracts.IAgentLogin" /> > </service> > </services> > </system.serviceModel> > > > "Dwight@QuickLearn" wrote: > >> >> Please explain some more about your scenario... >> >> How many en dpoints and what is your configuration? >> Do you have Any code implemented endpoints? >> >> >> >> >> >> "Shimon Sim" wrote: >> >> > I keep getting following error when I am trying open or call a method >> > in WCF >> > service that is hosted in cassini >> > "HTTP could not register URL >> > http://+:80/Temporary_Listen_Address...-0e2bbb93e5e1/ >> > because TCP port 80 is being used by another application." >> > >> > Why does it use port 80 when service is configured for port 4000? |
| | #5 (permalink) |
| Guest | Re: Running WCF in Developer Server(Cassini) I think that page address is the address of the service and there is no need to spcify the address in config. Am I wrong? "Arkady Frenkel" wrote: > You have no "address", but "binding" only in endpoint attribs > Arkady > > "Shimon Sim" <ShimonSim@discussions.microsoft.com> wrote in message > news:30E05BC8-366D-4141-9EDA-897BCEE59E38@microsoft.com... > >I got it working with basicHttpBinding. But the configuration was as > >follows. > > All the code has correct implementation. > > <system.serviceModel> > > <behaviors> > > <serviceBehaviors> > > <behavior name="ReportService.ServiceImplementation.AgentLogin_Behavior"> > > <serviceDebug includeExceptionDetailInFaults="false" /> > > <serviceMetadata httpGetEnabled="true" /> > > > > </behavior> > > </serviceBehaviors> > > </behaviors> > > <services> > > <service > > behaviorConfiguration="ReportService.ServiceImplementation.AgentLogin_Behavior" > > name="ReportService.ServiceImplementation.AgentLogin"> > > <endpoint binding="wsDualHttpBinding" > > bindingNamespace="http://ReportService.ServiceContracts/2007/04" > > contract="ReportService.ServiceContracts.IAgentLogin" /> > > </service> > > </services> > > </system.serviceModel> > > > > > > "Dwight@QuickLearn" wrote: > > > >> > >> Please explain some more about your scenario... > >> > >> How many en dpoints and what is your configuration? > >> Do you have Any code implemented endpoints? > >> > >> > >> > >> > >> > >> "Shimon Sim" wrote: > >> > >> > I keep getting following error when I am trying open or call a method > >> > in WCF > >> > service that is hosted in cassini > >> > "HTTP could not register URL > >> > http://+:80/Temporary_Listen_Address...-0e2bbb93e5e1/ > >> > because TCP port 80 is being used by another application." > >> > > >> > Why does it use port 80 when service is configured for port 4000? > > > |
| | #6 (permalink) |
| Guest | Re: Running WCF in Developer Server(Cassini) You are right, that one define in <appSettings> . E.g : ( with port 8001 ) <appSettings> <add key="baseAddress" value="http://localhost:8001/service" /> </appSettings> Arkady "Shimon Sim" <ShimonSim@discussions.microsoft.com> wrote in message news:355CF141-3E94-4F04-A449-C608DF426D76@microsoft.com... >I think that page address is the address of the service and there is no >need > to spcify the address in config. Am I wrong? > > "Arkady Frenkel" wrote: > >> You have no "address", but "binding" only in endpoint attribs >> Arkady >> >> "Shimon Sim" <ShimonSim@discussions.microsoft.com> wrote in message >> news:30E05BC8-366D-4141-9EDA-897BCEE59E38@microsoft.com... >> >I got it working with basicHttpBinding. But the configuration was as >> >follows. >> > All the code has correct implementation. >> > <system.serviceModel> >> > <behaviors> >> > <serviceBehaviors> >> > <behavior >> > name="ReportService.ServiceImplementation.AgentLogin_Behavior"> >> > <serviceDebug includeExceptionDetailInFaults="false" /> >> > <serviceMetadata httpGetEnabled="true" /> >> > >> > </behavior> >> > </serviceBehaviors> >> > </behaviors> >> > <services> >> > <service >> > behaviorConfiguration="ReportService.ServiceImplementation.AgentLogin_Behavior" >> > name="ReportService.ServiceImplementation.AgentLogin"> >> > <endpoint binding="wsDualHttpBinding" >> > bindingNamespace="http://ReportService.ServiceContracts/2007/04" >> > contract="ReportService.ServiceContracts.IAgentLogin" /> >> > </service> >> > </services> >> > </system.serviceModel> >> > >> > >> > "Dwight@QuickLearn" wrote: >> > >> >> >> >> Please explain some more about your scenario... >> >> >> >> How many en dpoints and what is your configuration? >> >> Do you have Any code implemented endpoints? >> >> >> >> >> >> >> >> >> >> >> >> "Shimon Sim" wrote: >> >> >> >> > I keep getting following error when I am trying open or call a >> >> > method >> >> > in WCF >> >> > service that is hosted in cassini >> >> > "HTTP could not register URL >> >> > http://+:80/Temporary_Listen_Address...-0e2bbb93e5e1/ >> >> > because TCP port 80 is being used by another application." >> >> > >> >> > Why does it use port 80 when service is configured for port 4000? >> >> >> |
| |
| |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Running external app from an HTA on Windows Server 2003 x64 | André Schneickert | VB Script | 0 | 07-28-2008 07:12 AM |
| Running Windows Server 2008 instead of Vista | Ezmerelda Marty Kleindorf | Vista General | 0 | 09-07-2007 01:32 PM |
| Running connectivity program for Win2K SQL server. | RR2 | Vista networking & sharing | 1 | 03-10-2007 03:45 AM |
| Running Powershell under Windows 2000 Server | A. Petitjean | PowerShell | 4 | 02-02-2007 04:12 PM |
| SQL server 2000 Developer | Kevin | Vista General | 0 | 06-13-2006 12:19 PM |