deployment

WAR deployment to JBoss fails because it calls a SAR packaged in an EAR

允我心安 提交于 2019-12-25 08:02:30
问题 I'm packaging a JBoss service archive (SAR) and WAR together in an EAR with Maven for deployment to JBoss. The problem I have is that another standalone WAR running on this server calls a service provided by the aforementioned SAR on JBoss startup. Because JBoss deploys the standalone WAR before the EAR containing the SAR, the standalone WAR throws errors because the service it's calling has not been deployed yet. Is there a way to get JBoss to deploy the EAR first? Is that even the correct

Port Error on Heroku / Clojure Deployment

无人久伴 提交于 2019-12-25 06:49:25
问题 This is a follow on question to my Heroku / Clojure problem here. As outlined in that thread, I was able to push my app to Heroku's master, and that deploys it. But when I try to go to my app's URL, I get the below error. It's a bizarre port error, but I didn't think I had control over those details when deploying a Clojure app on Heroku. I think my setup's pretty straightforward. Is there anything I can do to address this error? Procfile web: lein run -m http.handler http.handler ... (def

error regarding heroku deployment

狂风中的少年 提交于 2019-12-25 05:23:27
问题 So im in the process of deploying my code via heroku but have recently encountered 'were sorry but something went wrong' error when going to the site. Not entirely sure the cause of this Ive gone back and tried using 'heroku rake db:reset command' (that may not be verbatim) but Im a bit confused in regards to what to do to fix this. 2012-08-11T23:30:00+00:00 heroku[run.1]: Awaiting client 2012-08-11T23:30:00+00:00 heroku[run.1]: Starting process with command `bundle exec rake db:rollback`

Change Activation-Config-Property on deployment via JBoss CLI

断了今生、忘了曾经 提交于 2019-12-25 05:12:11
问题 We would like to deploy an EAR containing message driven beans with JBoss CLI. For each environment there are different activation config property values. Our question: is it possible to change the values of the activation config properties after deploying the EAR with JBoss CLI? We know we could use property substitution. However this seems to set the activation properties at server startup. In contrast we would like to change the values at any time (maybe as long as application is disabled)

Can you replace selected files in an Azure Website without deploying the whole Website?

笑着哭i 提交于 2019-12-25 05:06:59
问题 When I check in my modifications to Visual Studio Online, an automatic deployment of the Azure website is done. Is there a way to just replace some files in the Azure website, without deploying the whole website? 回答1: You can login to the site via FTP. Or you can use ServerExplorer in VisualStudio 2013 and modify files there: 回答2: You can also use the Kudu Debug Console to change files in your site. Go to http:// [yoursite].scm.azurewebsites.net/DebugConsole and log in with your FTP

error when accessing worklight server deployed on tomcat

佐手、 提交于 2019-12-25 04:51:53
问题 I deploy the war file and adapter file to the tomcat,everything is fine,but when I try access the worklight server,the request is [http://10.30.3.11:8080/nantian/apps/services/api/attendance/android/query] and the logcat appear this error [http://10.30.3.11:8080/nantian/apps/services/api/attendance/android/query]failure. state: 500, response: The server was unable to process the request from the application. Please try again later.[http://10.30.3.11:8080/nantian/apps/services/api/attendance

Why does Travis fail to connect use Redis cache_store when deploying to Heroku?

我与影子孤独终老i 提交于 2019-12-25 04:28:10
问题 I use Redis caching in my Rails app: config.cache_store = :redis_store, redis_url When I push my Rails app straight to Heroku, it is deployed successfully. When using Travis, the Heroku deploy step fails because the asset precompilation attempts to connect to Redis. Running: rake assets:precompile rake aborted! ArgumentError: invalid uri scheme '' /tmp/build_7c5f167bf750cb2986dbb9c3510ea11e/vendor/bundle/ruby/2.1.0/gems/redis-3.2.0/lib/redis/client.rb:390:in `_parse_options' I have tried

Reboot on installation of .CAB WM

被刻印的时光 ゝ 提交于 2019-12-25 04:23:13
问题 On a Windows Mobile 6 or CE 5 device, I need to install a CAB file and then initiate a reboot. I am aware of custom actions. You need to create a setup.dll for the CAB file in native C++. So I have the following code already made codeINSTALL_EXIT Install_Exit(HWND hwndParent, LPCTSTR pszInstallDir, WORD cFailedDirs, WORD cFailedFiles, WORD cFailedRegKeys, WORD cFailedRegVals, WORD cFailedShortcuts) { MessageBox(hwndParent, _T("A reboot is required to complete installation, Press OK to reboot.

maven tomcat deployment producing error

谁说胖子不能爱 提交于 2019-12-25 04:11:57
问题 I wanted to deploy my java webapp into my tomcat server using tomcat7:deploy goal. But i am getting following error enter code[INFO] Deploying war to http://localhost:8080/CounterWebApp Uploading: http://localhost:8080/manager/text/deploy?path=%2FCounterWebApp 2500/5423 KB [INFO] I/O exception (java.net.SocketException) caught when processing request: Connection reset by peer: socket write error [INFO] Retrying request Uploading: http://localhost:8080/manager/text/deploy?path=%2FCounterWebApp

Deployment target 6.0 on Xcode 8.0

时光毁灭记忆、已成空白 提交于 2019-12-25 04:05:18
问题 The lowest deployment target on Xcode 8.0 is 8.0 (If I choose from the list). If I try to change it manually I get a warning: Applications using launch screen files and targeting iOS 7.1 and earlier need to also include a launch image in an asset catalog. I have a launch images in assets.xcassets. Is there a way to solve this? 来源: https://stackoverflow.com/questions/39610174/deployment-target-6-0-on-xcode-8-0