Skip to content

Commit

Permalink
Latest ServiceStack v1.75 libs and updated Console Host project to in…
Browse files Browse the repository at this point in the history
…clude example urls to try out
  • Loading branch information
mythz committed Jan 17, 2011
1 parent b90064d commit eff7ecd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 0 deletions.
Binary file modified Lib
Binary file not shown.
Binary file modified libs/ServiceStack.Interfaces.dll
Binary file not shown.
Binary file modified libs/ServiceStack.ServiceInterface.dll
Binary file not shown.
Binary file modified libs/ServiceStack.ServiceInterface.pdb
Binary file not shown.
Binary file modified libs/ServiceStack.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Text;
using System.Threading;

namespace ServiceStack.Examples.Host.Console
Expand All @@ -16,6 +17,15 @@ static void Main(string[] args)
System.Console.WriteLine("AppHost Created at {0}, listening on {1}",
DateTime.Now, ListeningOn);

var sb = new StringBuilder();
sb.AppendLine("Some urls for you to try:\n");
sb.AppendLine(ListeningOn + "xml/syncreply/GetFactorial?ForNumber=5");
sb.AppendLine(ListeningOn + "json/syncreply/GetFibonacciNumbers?Skip=5&Take=10");
sb.AppendLine(ListeningOn + "jsv/syncreply/GetAllUsers?debug");

System.Console.WriteLine(sb);


Thread.Sleep(Timeout.Infinite);
System.Console.WriteLine("ReadLine()");
System.Console.ReadLine();
Expand Down

0 comments on commit eff7ecd

Please sign in to comment.