Skip to content

Instantly share code, notes, and snippets.

View oraclebill's full-sized avatar

Bill Jones oraclebill

View GitHub Profile
@oraclebill
oraclebill / gist:11379114
Created April 28, 2014 17:49
successful createAccount!!
REQUEST:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:v1="http://www.sungard.com/bsil/acctmgmt/v1-0"
xmlns:v11="http://www.sungard.com/ws/v1-0"
xmlns:v12="http://www.sungard.com/common/v1-0"
xmlns:v13="http://www.sungard.com/product/v1-0"
xmlns:v14="http://www.sungard.com/cloud/v1-0"
xmlns:v15="http://www.sungard.com/payment/v1-0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
@oraclebill
oraclebill / gist:11378425
Created April 28, 2014 17:21
SSO error in create account
REQUEST:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:v1="http://www.sungard.com/bsil/acctmgmt/v1-0"
xmlns:v11="http://www.sungard.com/ws/v1-0"
xmlns:v12="http://www.sungard.com/common/v1-0"
xmlns:v13="http://www.sungard.com/product/v1-0"
xmlns:v14="http://www.sungard.com/cloud/v1-0"
xmlns:v15="http://www.sungard.com/payment/v1-0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
@oraclebill
oraclebill / gist:11377534
Created April 28, 2014 16:49
createCloudAccount fail
REQUEST:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:v1="http://www.sungard.com/bsil/acctmgmt/v1-0"
xmlns:v11="http://www.sungard.com/ws/v1-0"
xmlns:v12="http://www.sungard.com/common/v1-0"
xmlns:v13="http://www.sungard.com/product/v1-0"
xmlns:v14="http://www.sungard.com/cloud/v1-0"
xmlns:v15="http://www.sungard.com/payment/v1-0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
@oraclebill
oraclebill / gist:11298161
Created April 25, 2014 18:03
BSIL Error in updateCloudService
REQUEST:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://www.sungard.com/bsil/cloud/v1-0" xmlns:v11="http://www.sungard.com/ws/v1-0" xmlns:v12="http://www.sungard.com/cloud/v1-0">
<soapenv:Header/>
<soapenv:Body>
<v1:updateCloudServiceRequest>
<v11:client>
<v11:userId>bill.jones</v11:userId>
<v11:userApplicationDN>bill.jones</v11:userApplicationDN>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:v1="http://www.sungard.com/bsil/acctmgmt/v1-0"
xmlns:v11="http://www.sungard.com/ws/v1-0"
xmlns:v12="http://www.sungard.com/common/v1-0"
xmlns:v13="http://www.sungard.com/product/v1-0"
xmlns:v14="http://www.sungard.com/cloud/v1-0"
xmlns:v15="http://www.sungard.com/payment/v1-0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
@oraclebill
oraclebill / gist:6900983
Created October 9, 2013 13:08
script to update cloudstack db with categories for rating licensed template usage
#!/bin/bash
# Author - Bill Jones
# Version - 0.1
# Release Date - 8th Oct 2013
# Contact - bill.jones@sungard.com
# CloudMonkey script to configure Service Offerings
# ======================== Defaults ========================
@oraclebill
oraclebill / gist:920718
Created April 14, 2011 22:28
python import wtf?
IPython 0.10.1 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object'. ?object also works, ?? prints more.
In [1]: from core.models import Child
In [2]: from core.models import Profile
======================================================================
ERROR: test_standard_flow (designfirst.orders.tests.UILifeCycleTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/bjones/Sites/localhost/dsusa/sites/designfirst/../designfirst/orders/tests.py", line 230, in test_standard_flow
response = self.client.post(submiturl, data, follow=True)
File "/Users/bjones/Sites/localhost/dsusa/lib/django/test/client.py", line 320, in post
response = self._handle_redirects(response)
File "/Users/bjones/Sites/localhost/dsusa/lib/django/test/client.py", line 477, in _handle_redirects
response = self.get(path, QueryDict(query), follow=False)
Traceback (most recent call last):
File "/Users/bjones/Sites/localhost/dsusa/lib/django/test/testcases.py", line 242, in __call__
self._pre_setup()
File "/Users/bjones/Sites/localhost/dsusa/lib/django/test/testcases.py", line 217, in _pre_setup
self._fixture_setup()
File "/Users/bjones/Sites/localhost/dsusa/lib/django/test/testcases.py", line 222, in _fixture_setup
call_command('flush', verbosity=0, interactive=False)
File "/Users/bjones/Sites/localhost/dsusa/lib/django/core/management/__init__.py", line 166, in call_command
return klass.execute(*args, **defaults)
File "/Users/bjones/Sites/localhost/dsusa/lib/django/core/management/base.py", line 222, in execute
def test_projectless_order(self):
from django.conf import settings
settings.DEBUG = True
from django import db
db.reset_queries()
try:
# fail if owner not set
order = WorkingOrder()
order.account_code = 'test-account-code'