Skip to main content

Posts

Showing posts with the label Internet Information Services Manager

How to enable Internet Information Services on Winodws 10

Go to Control Panel > Programs and Features. On Left Most click on "Turn Windows Features on or off" hyperlink. Form the new Window, click on "Internet Information Services" check box. Click on "OK" button. Windows will search for its packages and enable the services. When process completed click on "Close" button. Click on Windows button and type "iis" and now click on "Internet Information Services (IIS) Manager".  All Done.

Siebel App Service Unavailable HTTP Error 503

When trying to access, browser is returning below error: Error: Service Unavailable HTTP Error 503. The service is unavailable. Reason: This error occurs usually when default pool stopped. Solution: Go to Siebel web server, from the start open Internet Information Services (IIS) Manager and click on "Application Pools" From the Application Pools, right click on "DefaultAppPool" and from menu click on "Start". Wait for some time and re try to access the Siebel app url.

How to host middle ware or website on iis manager for Siebel

Go to web server and paste the published code on below path (you can chose any path) : C:\inetpub\wwwroot Now from Start  (press windows key) type iis and open "Internet Information Services (IIS) Manager". Right click on "Site" folder and from menu click on "Add Website.." Provide the "Site name", "Physical path" (from step 1) and "Port" and click "OK" button. All done. For testing right click on newly added and from menu go to "Mange Website" and from its child menu click on "Browse". Site will be open in default browser. In my case I need to access the asmx page so I added my asmx page path (after the default folder selected in physical path) . In case if it is middle ware for external service, from "Service Description" link get the wsdl definition (copy the code from <wsdl:definitions to </wsdl:definitions> and save as ".wsdl" using notepad) and import in Sie...