tfs 2012 publish does not work - publish

I am trying to deploy my asp.net mvc application to another server but getting this error:
Error 101 Web deployment task failed. (Could not connect to the remote computer ...
I have installed the Web Management service on the server and it is running?
I have also tried to queue a build in tfs which builds fine on the buildserver however the deployment is not happening:
/p:DeployOnBuild=True
/p:DeployTarget=MSDeployPublish
/p:CreatePackageOnPublish=True
/p:MsDeployServiceUrl=https://myserver:8172/msdeploy.axd
/p:MsDeployPublishMethod=WMSVC
/p:UserName=myserver\myadmin
/p:Password=mypassword
/p:AllowUntrustedCertificate=True
/p:DeployIisAppPath="Default Web Site/myappname"

You need to install the Web Deploy package from WebPI and ensure that you have ports 443 and 8172 open on your firewall.
Web Deploy Download if you don't PI

Related

IBM Worklight 6.1 - Worklight deployment fails on SUSE Linux using a remote database

I'm trying to deploy a war file to websphere through worklight using suse linux and a remote database.
When I tried to deploy the war file using a remote database(I'm using oracle to test), I'm getting the following error:
GetSQLQueryResult failed with error code java.sql.SQLRecoverableException: IO Error: Connection reset
at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:711)
at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:385)
at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:30)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:558)
at java.sql.DriverManager.getConnection(DriverManager.java:571)
at java.sql.DriverManager.getConnection(DriverManager.java:187)
at com.ibm.worklight.install.helper.GetSQLQueryResult.main(GetSQLQueryResult.java:68)
Caused by: java.net.SocketException: Connection reset
at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:118)
at java.net.SocketOutputStream.write(SocketOutputStream.java:159)
I can access the remote machine database from the machine where worklight is installed.
Also, if I use the same WAR file on a local database on SUSE Linux, or use a remote database on another OS(Windows for example), the app is deployed correctly.
Something is not right with the question description...
You do not deploy .war files to Worklight
Worklight, in a remote server, is comprised of a Java EE .jar file, deployed to the application server (WAS/Liberty profile, Tomcat)
A .war file, in Worklight, is a Java web app containing server-related artifacts required for running your application (generated by the Studio/CLI tool); you deploy this .war file to the application server where Worklight Server is deployed to
That said,
A connection reset means there is a general network issue and is not related to Worklight itself.
It sounds like a network issue with the specific machine running Suse Linux.
- Check firewall settings, timeout values, blocked ports...

SQL Server integration services deployment wizard port

I am trying to deploy a SSIS project from Visual Studio (VS). I can run my packages locally in VS against the SQL Server 2014 instance. I can also connect to the SQL Server 2014 instance via SQL Server Management Studio.
However, I cannot connect when I try to deploy. Maybe a port needs to be opened for the integration services catalog? Does anyone know the port?
Thanks.
This link should give you everything you need about setting up your firewall to work with SSIS and its service. The port it uses seems to be port 135
Configure a Windows Firewall for Access to the SSIS Service

How to use primefaces on cloudbees glassfish server

We are developing an Java EE webapp on a glassfish 4 server running in the cloubeees cloud. We want to use Primefaces 3.5 . Our app runs perfectly on a local glassfish server after we copied the commons-fileupload.jar into the lib domain/lib folder. When we push the app into the cloud it isnt deployed the log says:
Cause: Class 'org.primefaces.component.fileupload.FileUploadRenderer' is missing a runtime dependency: java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileItem
So i think the server misses the fileupload.jar, but we dont have acces to the server administration console or the folder structure. Does anyone here used Primefaces in the cloudbees cloud or knows a other way to fix the problem?
best regards
Peter!

SQL Server Integration Services Login Failure

I noticed an error in my event log today that states:
The SQL Server Integration Services 10.0 service failed to start due
to the following error: The service did not start due to a logon
failure.
The service is configured to use ./sqluser but I cannot find this login with the domain.
What exactly is this services used for? What login should I be using for this service and what rights/privileges does the user need for this service to function properly. I am using SQL 2008 under Windows Server 2008 r2.
What exactly is this services used for
Managing Integration Services
Microsoft SQL Server Integration Services includes the Integration
Services service, a Windows service for managing Integration Services
packages. The Integration Services service is available only in SQL
Server Management Studio.
Running the Integration Services service provides the following
management capabilities:
Starting remote and locally stored packages
Stopping remote and locally running packages
Monitoring remote and locally running packages
Importing and exporting packages
Managing package storage
Customizing storage folders
Stopping running packages when the service is stopped
Viewing the Windows Event log
Connecting to multiple Integration Services servers
The Integration Services service is installed when you install the
Integration Services component of SQL Server. By default, the
Integration Services service is started and the startup type of the
service is set to automatic. The service must be running to monitor
the packages that are stored in the SSIS Package Store. The SSIS
Package Store can be either the msdb database in an instance of SQL
Server or the designated folders in the file system.
The Integration Services service is not required if you only want to
design and execute Integration Services packages. However, the service
is required to list and monitor packages using SQL Server Management
Studio.
What login should I be using for this service and what rights/privileges
Managing the Integration Services Service
By default, the Integration Services service runs in the context of
the NETWORK SERVICE account.
I have not found a simplified list of what is required for the service to run correctly but this article describes how to connect to a remote SSIS service.
I'll keep browsing MSDN articles

Application sharing

I Have a windows application made using VB.net and Mysql database. I want to install it on a Local network to be used by several users on different windows machines. How best can I do this?
You should have a look at
ClickOnce - A new VB.NET 2005
Deployment Tool
Using ClickOnce Deployment in
VB.NET
ClickOnce: Delivering .NET
Applications Via the Net
ClickOnce Deployment for Windows
Forms Applications
ClickOnce Deployment in .NET
Framework 2.0
You will have to install the application on each computer. But you can have on machine running the MySQL server to which the application will connect. This way all users can access the same data.