Posts

Showing posts with the label server

Using Intellij IDEA 12 for WebLogic Server 12c

Using Intellij IDEA 12 for WebLogic Server 12c If you want to explore the latest EE features, you would need WebLogic Server 12c. However if you still have the IDEA 12 Ultimate edition, you will quickly find that it only supports up to WebLogic Server 11g (10.x)! However you can still make your IDEA 12 U to work with WLS 12c, and all you need is an extra "registry.xml" file under WLS home directory (eg: C:/apps/wls12120/registry.xml). This file will allow the IDEA to pickup and recognize your latest WLS 12c installation. <?xml version="1.0" encoding="UTF-8"?> <bea-product-information>   <host home="C:appswls12120" name="${env.HOST}">     <product format="1.0" name="WebLogic Platform">       <release level="12.0"         ServicePackLevel="6" PatchLevel="0"         Status="installed" BeaProgramGroup="BEA WebLogic Platform 12.0" StartMenu=...

Using SEFAUTIL Server

Image
Using SEFAUTIL Server NOTE : SEFAUTIL Server is being released as BETA. Our main reason for this is to get feedback on PowerShell commandlet format before the community write scripts against the existing commandlets. To give feedback on SEFAUTIL Server please join the Community Yammer forum: Click Here To see the new PowerShell commands that come with SEFAUTIL Server run: get-command �Module SefautilServerPowershell Set-CsUserForwarding Set-CsUserTeamMembers Set-CsUserDelegates Set-CsUserNote Community versus Enterprise Edition   Download SEFAUTIL Server: https://gallery.technet.microsoft.com/lync/SEFAUTIL-Server-Community-6cd286b2 download  file  now

VB Net Run Server In Pastebin Base64 By I M 9

Image
VB Net Run Server In Pastebin Base64 By I M 9 � Informa��es: � VB.Net: Run Server In [Pastebin / Base64] � Tamanho: 132 KB ::. � Data da Cria��o: 21/02/2017 [00:41] download  file  now

Using IIS ARR as a Reverse Proxy for Lync Server 2013

Image
Using IIS ARR as a Reverse Proxy for Lync Server 2013 There are several nice guides available on how to configure IIS ARR as a Reverse Proxy for Lync. For example: Using ARR for Reverse Proxy with Lync 2013 Using IIS ARR as a Reverse Proxy for Lync Server 2013 Installing and configuring IIS ARR Reverse Proxy Using IIS Application Request Routing (ARR) as a TMG Replacement All these guides will take you through the steps of installing ARR, creating a server farm and configuring caching, proxy, and routing rules for the farm.   When adding a server to the server farm you need to specify on which ports the reverse proxy should pass on the traffic to the internal side. In Lync we have internal webservices, to be used by internal clients using ports 80 and 443, and we also have external webservices (i.e. an IIS Web site) using ports 8080 and 4443. Hence, you should set these ports to 8080 and 4443, and also make sure your internal firewall allows this communication. Now once this server...

Using Pentaho Marketplace over a proxy or server w o internet

Image
Using Pentaho Marketplace over a proxy or server w o internet Using the Pentaho Marketplace over a proxy Theres a known issue with the Pentaho marketplace when used on a server that has no internet connection. The issue is that... it doesnt work. This is what you get: Well, since the release of pentaho 5.1, not anymore! There was a code change that allowed this to be possible. What we need is to make sure we define the following java environment variables to the start of pentaho, eg, by editing the start-pentaho.sh or whatever method you use to start it: http.proxyHost : the host name of the proxy server http.proxyPort : the port number, the default value being 80. http.nonProxyHosts :a list of hosts that should be reached directly, bypassing the proxy. This is a list of patterns separated by |. The patterns may start or end with a * for wildcards. Any host matching one of these patterns will be reached through a direct connection instead of through a proxy. For authentication, theres...

Using conditionals before adding columns to a table in SQL server

Using conditionals before adding columns to a table in SQL server Working with databases is not as easy as it looks like, specially if you are working with production databases. When a database is production you need to be very careful with the changes you make, adding, removing tables, columns, changing data, etc. Once a database is in production you use incremental scripts in order to push new updates into it. These incremental scripts need to handle everything and they do not have to have any errors and must be able to run multiple times if it is needed. One thing I keep seeing in lots of incremental scripts are the lack of verification before they are executed. The other day I asked one of my developers to add one column to a table and also to write the respective incremental script and UI controller. This is what I got: ALTER TABLE [table]   ADD [column_name] VARCHAR ( 10 ) DEFAULT [defaultvalue] ; There are a couple of things i do not like about this script but one of them wa...