deployment

Strategies for updating or versioning web services?

做~自己de王妃 提交于 2019-12-17 21:53:02
问题 I'm interested to hear the best practices on how different versions of web services are handled. To clarify, if you've got some web methods exposed as a web service, then you want to add a feature/functionality and thus change the signature of those method calls, how do you handle this in a manner that doesn't break all of your clients who currently call the service? Do you deploy the service on a different URL? Do you put a version in the method name itself (MyMethod, MyMethodv2 etc. - ugh..

How do I include variables in my VagrantFile?

流过昼夜 提交于 2019-12-17 21:51:51
问题 Can anyone guide me to how do I include variables in my VagrantFile? I am trying to inject configs into the Vagrantfile from an external file so that I can distribute the config to my colleagues without having them to hardcode configs directly on the Vagrantfile. I had thought that since it was Ruby based I could just include a Ruby file but I get an error Message: unintialized constant MyVars My VagrantFile simplified # -*- mode: ruby -*- # vi: set ft=ruby : require 'vagrant.rb' include

Application setup

守給你的承諾、 提交于 2019-12-17 21:13:00
问题 Is it possible to install third-party application alongside my application on my own application setup? Let's say I were to sell some of my application, and in order to run my application on client's computer I would also need to run PostgreSQL. Is it possible to install it beside my application in my setup? I am such rookie on that subject and don't really know where to start. (I should mention that I am particularly interested on deploying Windows applications) 回答1: All commercial software

C# console app deployment

半腔热情 提交于 2019-12-17 21:11:43
问题 I have a simple C# console application developed on my local machine using VS2008 Pro. I want to know how to deploy this solution onto a network share folder? A similar Java console program is already placed (as a JAR file) in the same network share folder. Users simply open command prompt, navigate to shared folder and type "java -jar programName.jar inputParameter1 inputParameter2" How can I achieve the same with .NET? 回答1: You can copy the exe over yourself, go to the bin folder in the

How does it happen Azure web role entry point and .aspx page handler are run in different processes?

橙三吉。 提交于 2019-12-17 20:34:10
问题 I'm playing with this Azure web role sample. It contains a class derived from RoleEntryPoint and a .aspx page that contains a button click handler. I test it in Azure Emulator. I put the following code (taken from here) string userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name; in both role OnStart() and the button click handler. When role OnStart() is invoked it happens to run in WaIISHost.exe under MachineName\\MyLogin account and when button handler code is invoked it

Azure Autoscaling works locally but not when deployed

强颜欢笑 提交于 2019-12-17 20:01:57
问题 Problem I am trying to deploy a worker role which will autoscale a few target sites. I am able to run the autoscaler locally and it works (I installed the certificates on my machine). However, it won't autoscale once I deploy it to Azure as a cloud app. (However, the worker role is running because I can see my non-autoscaling processes working in the same worker role.) What I tried I have followed the Deploying the Autoscaling Application Block instructions. Added the "CN=Windows Azure Tools"

Can I automate creating a .NET web application / virtual directory in IIS 5?

元气小坏坏 提交于 2019-12-17 19:26:40
问题 I asked this Can I automate creating a .NET web application in IIS? a little ago, and got solutions for IIS 6 and IIS 7: IIS6 : iisweb /create C:\Rome "My Vacations" /d www.reskit.com /dontstart IIS7 : %windir%\system32\inetsrv\AppCmd ADD SITE /name:MyNewSite /bindings:http/*:81: /physicalPath:c:\inetpub\mynewsite but I've just got back to it the actual project, and it turns out that is I need to deploy on (shock-horror) IIS 5.1 Has anyone got any ideas? To make it clear: I want to use IIS,

vb6 xcopy deployment

牧云@^-^@ 提交于 2019-12-17 19:03:46
问题 Can any one tell me how to convert an legacy application which is vb6 ( COM dll's ocx and exes) to use Regfree COM . I tried opening the dlls in visual studio and created manifest file, but some of the dlls it is giving error. Is there any tools out there which will help me to do this process? I tried a tool from codeproject which is called regsvr42, which is not creating the manifest fully. I used tools like PE explorer where I get all the typelib information , but converting them into

How to deploy android application to a device?

▼魔方 西西 提交于 2019-12-17 18:50:35
问题 I developed an application. Now I want to deploy it on real device. Can any body please tell me the steps and the requirements to deploy it on a real device. Thanks Deepak 回答1: There are multiple ways: If you don't use eclipse, you can use adb tool. adb -d install PATH_TO_YOUR_APK_FILE If you use eclipse, you can click run application in eclipse's launch menu. If this doesn't work, make sure you have "USB Debugging Mode" checked on your android phone. It's in the application menu. You can

How to deploy android application to a device?

孤人 提交于 2019-12-17 18:50:03
问题 I developed an application. Now I want to deploy it on real device. Can any body please tell me the steps and the requirements to deploy it on a real device. Thanks Deepak 回答1: There are multiple ways: If you don't use eclipse, you can use adb tool. adb -d install PATH_TO_YOUR_APK_FILE If you use eclipse, you can click run application in eclipse's launch menu. If this doesn't work, make sure you have "USB Debugging Mode" checked on your android phone. It's in the application menu. You can