Citrix Problems

Search for this in your registry and delete if under a Citrix parent node:
ClientHostedApps

Refer: http://support.citrix.com/article/CTX132875/

Symptom Error Message, when trying to connect via Remote Desktop:

---------------------------
Error number 2320
---------------------------
Citrix online plug-in Configuration Manager:  No value could be found for (ClientHostedApps) that satisfies all lockdown requirements.  The lockdown requirements in force may be conflicting.
---------------------------
OK
---------------------------

Subversion Usage

List of features

svn list http://halsvn01/svn/hal/branches/features/ | grep -i searchforme

How to create a release candidate

svn copy http://halsvn01/svn/hal/trunk http://halsvn01/svn/hal/tags/yy.ww-RC## -m "Tagging current RC branch to yy.ww-RC##"

How to delete a branch

svn delete http://halsvn01/svn/hal/branches/features/branch-to-delete -m "Feature merged to trunk and migrated to prod, deleting for cleanup"

Create a feature branch

svn copy http://halsvn01/svn/hal/trunk http://halsvn01/svn/hal/branches/features/webss-9999-your-feature-here -m "Your description here. Fix WEBSS-XXXX"

Checking differences
svn diff

Checking differences and ignore white space
svn diff -x -w

Getting ready to merge into Release Candidate RC

Add files to your feature
svn add /your-path/your-filename.extension

Merge trunk into your current feature to avoid collisions
svn merge http://halsvn01/svn/hal/trunk
svn commit -m "Your description of what is being done"

Create a Patch and Apply It

### Create a patch file and put it on your Desktop
svn diff > ~/Desktop/barclays-diff-patch.txt

### Apply the patch to a feature
patch -p0 -i ~/Desktop/barclays-diff-patch.txt

Use wget to download an entire site

wget --recursive --domains 3dentertainmentnow.com --html-extension --convert-links --restrict-file-names=windows http://www.the-site.com

the --restrict-file-names=windows make sure the files will work on a Windows box too

Using Fiddler with an iPad

You can monitor an iPad's traffic with Fiddler 2 and a PC

Fiddler 2 Setup

1. Install Fiddler http://www.fiddler2.com/fiddler2/version.asp

2. Tools > Fiddler Options > HTTPS and ticking the Decrypt HTTPS Traffic box

Monitoring iPad traffic with Fiddler 2

1. Tools > Fiddler Options > Allow remote computers to connect

2. Accept generic SSL certficate and restart fiddler

3. Make sure Fiddler is set to capture traffic

Install Certifcate Maker
To resolve the incompatibility, you may replace Fiddler's default certificate generator. Download and install the new Certificate Maker and restart Fiddler.

1. FiddlerCertMaker.exe

2. When initially doing this had installed certificate without using FiddlerCertMaker.exe

3. How to uncheck and delete installed cert, closed Fiddler, ran FiddlerCertMaker.exe, started Fiddler

4. After all that re-added the certificate again

Setup iPad to use Proxy

1. Click on your Wifi Setup

2. DHCP, Manual

3. Enter the IP of your computer and Port 8888

Save session as:
httpArchive v1.2
and Fiddler Session Archive

Changes to OLCI tables

You will need to update the following items when making changes to OLCI.
See sample script.

-- CHECKIN_PASSENGER TABLE
ALTER TABLE WEB_OWNER.CHECKIN_PASSENGER

-- CHECKIN_PASSENGER_DELETED TABLE
ALTER TABLE WEB_OWNER.CHECKIN_PASSENGER_DELETED

-- CHECKIN_PASSENGER_ARC TABLE
ALTER TABLE  WEB_ARCHIVE.CHECKIN_PASSENGER_ARC

-- CHECKIN_PASSENGER_DELETED_ARC TABLE
ALTER TABLE WEB_ARCHIVE.CHECKIN_PASSENGER_DELETED_ARC

-- CHECKIN_DELETE_TRG TRIGGER
TRIGGER "WEB_OWNER"."CHECKIN_DELETE_TRG"
ALTER TRIGGER "WEB_OWNER"."CHECKIN_DELETE_TRG" ENABLE;

-- CHECKIN_ARCHIVE_PROCESS
PACKAGE BODY CHECKIN_ARCHIVE_PROCESS is