This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Ctc.Business.Objects.Common; | |
using Ctc.Business.Raven; | |
using Ctc.Services.Stella2Api.Messages; | |
using Ctc.Services.Stella2Api.Services; | |
using Ctc.Services.Stella2Api.Services.Requests; | |
using Ctc.Services.Stella2Api.Services.RequestValidators; | |
using Ctc.Services.Stella2Api.Services.Responses; | |
using CTC.Toolbox; | |
using NHibernate; | |
using NServiceBus; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports System.Runtime.Serialization | |
Imports System.Xml | |
Imports System.IO | |
Public Module WebClient | |
<System.Runtime.CompilerServices.Extension()> | |
Public Sub AsyncDeSerializeObjectFromService(Of T)( | |
ByVal self As Net.WebClient, | |
ByVal svcUri As Uri, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Activity1 extends Activity { | |
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.main); | |
JSONClient client = new JSONClient(this, l); | |
String url = "url that will return JSON"; | |
client.execute(url); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Activity1 extends Activity { | |
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
setContentView(R.layout.main); | |
// in the calling activity define a bundle that can contain | |
// some number of strings | |
Bundle bundle = new Bundle(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This is core configuration file. | |
* | |
* Use it to configure core behaviour ofCake. | |
* | |
* PHP versions 4 and 5 | |
* | |
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org) | |
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) |