deployment

How to deploy C# windows application (setup file) with database and how to manage connection string on client machine

我只是一个虾纸丫 提交于 2019-12-12 04:32:01
问题 I am creating C# Windows Application in Visual Studio 2015 . Question: How to deploy C# Windows Application (setup file) with SQL Server database with database connection string. I create common connection string in app.config : <connectionStrings> <add name="conString" providerName="System.Data.sqlclient" connectionString="Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename= 'C:\Users\DEVELOPERS\Documents\Visual Studio 2015\Projects\Provision1\ Provision1\provision1.mdf';Integrated Security

Azure fails when I try to deploy through GitHub

被刻印的时光 ゝ 提交于 2019-12-12 04:30:17
问题 I get this error when I deploy my deploy.sh file to azure. How can I fix this ? Command: bash deploy.sh Handling node.js deployment. KuduSync.NET from: 'D:\home\site\repository\nodejs' to: 'D:\home\site\wwwroot' Error: Could not find a part of the path 'D:\home\site\repository\nodejs'. An error has occurred during web site deployment. Kudu Sync failed Error: Could not find a part of the path 'D:\home\site\repository\nodejs'.\r\nD:\Program Files (x86)\SiteExtensions\Kudu\59.51202.2583\bin

'The server was unable to process the request due to an internal error'. WCF Service, when deployed on IIS

我怕爱的太早我们不能终老 提交于 2019-12-12 04:25:45
问题 I'm trying to consume a service, that I created, the service consumes perfectly when its deployed on the localhost. But when I try to consume the same service after deploying it on the server(IIS). I get the following error The server was unable to process the request due to an internal error.For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception

Deploying Qt application using QtMultimedia in release mode

让人想犯罪 __ 提交于 2019-12-12 04:24:16
问题 I am developing a Qt 5.0 dekstop application using mingw47. I use QtMultimedia in this application to record and play audio. I have tested it for debug and it works. When I try to build it for release and run the executable file, I can't play the audio file that can normally be played in debug mode. I've added the following dlls before running the executable file: D3D_Compiler_43.dll, icudt49.dll, icuin49.dll, icuuc49.dll, libEGL.dll, libgcc_s_sjlj-1.dll, libGLESv2.dll, liblibmpeg2_plugin.dll

How to make a application with target is iPhone/iPad

馋奶兔 提交于 2019-12-12 04:22:18
问题 I want to make a application which can run complete in iPhone and iPad (full mode, not x2 mode). Please help me. Thank in advance! I found down a config called "Targeted Device Family", but I still don't know what about design (for iPhone, iPad), how to show UI if device is iPhone, how to show UI if device is iPad. 回答1: See "Creating a Universal Application" in the iOS Application Programming Guide for details on how to set this up in Xcode, and what pieces you need to provide. 回答2: Target

Does GAE accept twill at all?

不羁岁月 提交于 2019-12-12 04:22:11
问题 I have created my GAE application in directory " my_application ". Inside this directory I created a .py file and named it " my_scrypt ". The contents of " my_scrypt " in the beginning were as following: print 'Content-Type: text/plain' print '' print 'This is my first application' Then I ran it locally on my machine ( Windows XP ) in the installed browser ( Mozilla FireFox ) with " GAE Launcher " - everything was fine - I could see that sentence (" This is my first application ") on the

Heroku deploy “Precompiling assets failed” on git push

一世执手 提交于 2019-12-12 04:18:49
问题 We used the Heroku fork command to clone our production Rails 3 application for some testing. This was successful. We are now attempting to push changes to the new forked app via a standard heroku git push deploy. We are getting "Precompiling assets failed." and "Push rejected, failed to compile Ruby app" errors on each attempt. This exact repo is used for updates to our production application with no problems. Can you direct me to how we might troubleshoot this? 回答1: try this in your config

React Native iOS Deployment Error

半腔热情 提交于 2019-12-12 04:15:52
问题 The below error occurred while in attempt to deploy my app to the mobile phone for testing. the app function in the Xcode Simulator, and was able to export to the app into iPhone for testing. after running the npm start the following error occurred. while the iPhone app did load but count not connect to development server due to not able to npm start. And yes both the iPhone and my computer is on the same wireless network. ┌─────────────────────────────────────────────────────────────────────

How do i deploy MVC3 website to server via ftp

£可爱£侵袭症+ 提交于 2019-12-12 03:55:35
问题 i was able to publish the website to local machine folder, where i've the bin, content, scripts, views, web, global, and packages folder. AFter i add these folders to the root of my web server using filezilla, the website does not work. server does support asp.net 4, ii7. What exactly are the steps. i looked for some answers googling, but none of it helped. I'd realy appreciate if you can help me figure this out, thanks UPDATE Issue Fixed: My project was using .net 4.5 instead of 4.0...which

VB.NET: Can the .EXE built by VS2005 be deployed as a standalone EXE?

给你一囗甜甜゛ 提交于 2019-12-12 03:53:17
问题 VB.NET: Can the .EXE built by VS2005 be deployed as a standalone EXE ? When I change the mode in VS2005 to "Release" and build the solution, the bin\Release directory then contains the solution .EXE file, but also a .pdb , vshost.exe and .xml file. What are these extra files and are they necessary? I copied the .exe file to another machine and it executed properly, but there was a significant delay when it first executed - thereafter it was like any other program. What is the reason for this,