IIS host a wsdl file and raw xml for a dummy service
How can I host a dummy web service in IIS 7 with just a WSDL file and a XML file? It's a dummy service that will return a harcoded string from a method name. ...
How can I host a dummy web service in IIS 7 with just a WSDL file and a XML file? It's a dummy service that will return a harcoded string from a method name. ...
I'm in task of migrating our product's installer from InstallShield to WiX. To deploy web applications, the previous developers used Custom Actions (written in C#) in InstallShield. In Wix, this is no longer necessary because wix supports IIS deployment. Anyway, one of the code in the Custom Action uses the DirectoryEntry object to set...
I am using WiX to deploy a web application under IIS. I have no problems setting the different properties of my Web Application using the iis:WebDirProperties element. However, I need to set all *.asmx file security attribute to "Integrated Windows Authentication". Does WiX have the ability to set the property of a single file? *Note:...
I'm attempting to create an ASP.NET/C# page that runs a PowerShell script that will run an .exe installer. The ASP.NET page is currently running in IIS 6.0 on Windows Server 2003. The PowerShell script works correctly from the PS command line but when invoked from the ASP.NET page the page just hangs. No processes are created and it ap...
Hi guys, i'm trying to secure some WCF services. I'd like to use IIS or the Web.config todo all of the heavy lifting/configuration if possible. I don't want to embed anything in my code - thought I know that may not be feasible. If possible, I'd like to achieve this without having to resort to AspCompatibilityMode :( I'm using a custom...
Recently setup a site on my windows server running Zend Framework and only the index.php page shows correctly. All other internal pages look like they are being redirected to index.php with the URL being rewritten as the correct page URL. Really strange and can't seem to figure out if it's the server configuration or the retire rules in ...
Is it possible to host an ASP.net (MVC in particular, but I'm not sure if that's important) application from a self-hosted WCF service? I don't want to get into IIS, and I'd like to avoid something like Cassini if possible. Sorry if this is a duplicate, it's really hard to find questions on this (everything is WCF on ASP, not the other ...
This is a pretty vague question as I've had no luck reproducing my issues outside of our production web server and am unsure if my two issues are even related. My application server is running Windows Server 2003 and is public-facing. The ASP.NET web application runs in .NET 3.5 and uses a (private) SQL Server (2008) on the LAN. The ser...
I am looking into making a real-time chat website, but have ran into a few questions before starting. First off, we want to be able to have multiple people in one conversation and multiple conversations going on at the same time. After doing some research, a lot of people suggested long-polling. Scalability sounds like a problem thoug...
Can anyone point me in the direction of resources that explain the difference between the two? They appear to do the same thing but are implemented in a different way.. e.g. web service application compiles to dll and global.asax.vb compiles into the app, rather than being treated in the same way as a normal web service. Edit: web-serv...
We have a handful of sharepoint sites that uses various UserControls we have developed for custom stuff including authentication and authorization. On one of these sites when a new user is created by an admin it creates a password of this minumum length number of characters, saves the user info and sends an email to the users email addre...
I've created a web site with ASP.NET 2.0 and I'm using a session variable to determine if a user has filled out an age verification form. Everything works as expected (I can read the session variable on all pages) until a user goes to a virtual directory. When they do so, the page can't read the session variable. After much research, I'...
Hello all, I have a duplex enabled service where clients register themselves to receive notifications. In the same AppPool I have another, regular web service which is used by the clients to communicate with the server. Sending something to this web service will trigger a notification to all connected clients. All works fine until 12, 1...
I'm having this error trying to debug my ASP.NET MVC app. I've set the app to "Use Local IIS Web server", and selected ASP.NET as the debugger. Running the site without debugging works just fine, but when I try to debug, I got this error: Unable to start debugging on the web server. The web server could not find the requested source. ...
I want to separate the current high cpu medium instance that I have into high cpu + micro instance in order to take in more http traffic. Does anyone know how many simultaneous connections can a micro instance take in? The initial idea is to separate the db and host it from sql azure but due to some old stored procedures, I'm opting to s...
Hello Dear, I'm needing a lot of help from yours. I have an application in ASP, not ASP.NET ... Which uses several COM+ components developed for me. Below is an example of using one of the components. Dim componentXPTO Dim xpto componentXPTO = Server.CreateObject("NAMESPACE.XPTO") Set xpto = componentXPTO.myFunction(variables) Set...
I've created an httpModule to handle URL remappings, and it works great on my test system. A request for www.mydomain.com/Some_Fancy_URL gets rewritten to www.mydomain.com/some.aspx?fancy=23 and so on. When I deploy to the actual web site, I'm getting the default IIS 404 page though. After doing some research online, it would seem tha...
MY mails dosen't get send out, all mails get stuck in the queue folder, what does this mean, are there other ports I run thans besides 25? ...
Background I'm trying to automate the creation of Virtual Directories based on the location of an existing Virtual Directory and its sub-directories. Example: C:\WebSites\Parent\NewVirtualDirectories Where Parent is a Virtual Directory and NewVirtualDirectories contains any automated Virtual Directories. Problem Using the followi...
I want to create two web services, A and B, hosted in IIS. A is used to updated a variable X and B to retrieve the value of X. The question is whether I can make this work by declaring X as a static class variable. If not, what can I do ? PS: Combining them into a single service is not an option for me. ...