פרוייקט שעובד מצויין אבל רק בלוקל הוסט
-
יש לי פרוייקט שמשתמש ב: SERVICE.SVC בשם HotelApi.svc
אני מפעיל אותו מתוך הויזואל סטודיו כלוקל הוסט, כלומר יש קובץ HTML ששולח AJAX, גט או פוסט וכו'.אבל כשאני מנסה להפעיל את הקובץ HTML מסייר הקבצים השירות לא עובד.
כמובן שהוא מופעל בינתיים באויר, אבל לא שולח לי כלום.זה ה WEB.CONFIG שעובד כלוקל הוסט:
<?xml version="1.0" encoding="utf-8"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <appSettings> <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" /> </appSettings> <system.web> <compilation debug="true" targetFramework="4.5" /> <httpRuntime targetFramework="4.5" /> </system.web> <system.serviceModel> <services> <service name="greensun.ApiHotel" behaviorConfiguration="ServiceBehaviour"> <endpoint address="" binding="webHttpBinding" contract="greensun.IapiHotel" behaviorConfiguration="ServiceBehaviour" /> </service> </services> <behaviors> <endpointBehaviors> <behavior name="ServiceBehaviour"> <webHttp /> </behavior> </endpointBehaviors> <serviceBehaviors> <behavior name="ServiceBehaviour"> <serviceMetadata httpGetEnabled="true" httpGetUrl="" httpsGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="false" /> </behavior> <behavior name=""> <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="false" /> </behavior> </serviceBehaviors> </behaviors> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /> </system.serviceModel> <system.webServer> <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name="TRACEVerbHandler" /> <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> </handlers> </system.webServer> </configuration>
ניסיתי להוסיף בתגית SERVICES > ENDPOINT > ADDRESS את הכתובת : http://localhost:51342/ApiHotel.svc
וגם ב SERVICEBEHAVIOR > SERVICEMETADATA > HTTPGETURL את אותה כתובת, אבל עכשיו זה לא עובד גם מהויזואל סטודיו וכ"ש מבחוץ
האם חסר עוד איזה הגדרות?
פורסם במקור בפורום CODE613 ב26/01/2016 20:20 (+02:00)