Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
V

Vijay Kanda

@Vijay Kanda
About
Posts
23
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to get Route Map from Bing Map ?
    V Vijay Kanda

    I am not sure whether this is the right forum to ask this question or not. Please let me know if this is not the right forum. I have list of geo coordinates (the route I took/drive). Now I want to pass these geo coordinates and get the path/route image from Bing Map service APIs. I am developing a REST service APIs. I am already using the Bing Map Route APIs. But I am not sure how to get the image of the route/path. I did goole it. I could not find any examples. Thanks.

    C# question json tutorial

  • How to Consume REST APIs ?
    V Vijay Kanda

    Bernhard, Thanks for the link. I really appreciate it. I used this and few other examples to consume the GET method. Unfortunately I was not able to consume the POST method. Actually POST method working partially, I still having some problem. But I'll post my code here shortly. Thanks again.

    WCF and WF question json tutorial

  • How to Consume REST APIs ?
    V Vijay Kanda

    I am working on a Rest Service project. I need to consume another Rest Service APIs (in Jason). My Service pass some data and then the other Rest service will process that data and return some data in responses.My question is how do I access or consume the other rest service apis in my service? Thanks.

    WCF and WF question json tutorial

  • How to Create WCF Rest service in Visual Studio 2012?
    V Vijay Kanda

    I have created WCF Rest Service Application using Visual 2010 an year ago. Now I need to use DBGeometry class in the service. But the Rest Service throws an exception (Bad Request) when I use DBGeometry. So I want to create a new WCF Rest Service application using visual studio 2012. Unfortunately there is no WCF Rest Service Application template in Visual Studio. I tried to create WCF Rest Service Application using Blank Solution in Visual Stdio 2012 , but could not get to work. Is there any template or any other ways to create WCF Rest service app in Visual studio 2012. I know I can use ASP.Net MVC 4 and Web API template... but it's too much work, since I need to create controllers , etc for all my Rest service methods... Thanks.

    WCF and WF csharp asp-net json visual-studio wcf

  • How to Create WCF Rest service in Visual Studio 2012?
    V Vijay Kanda

    Thanks Richard.

    C# csharp asp-net json visual-studio wcf

  • How to Create WCF Rest service in Visual Studio 2012?
    V Vijay Kanda

    I have created WCF Rest Service Application using Visual 2010 an year ago. Now I need to use DBGeometry class in the service. But the Rest Service throws an exception (Bad Request) when I use DBGeometry. So I want to create a new WCF Rest Service application using visual studio 2012. Unfortunately there is no WCF Rest Service Application template in Visual Studio. I tried to create WCF Rest Service Application using Blank Solution in Visual Stdio 2012 , but could not get to work. Is there any template or any other ways to create WCF Rest service app in Visual studio 2012. I know I can use ASP.Net MVC 4 and Web API template... but it's too much work, since I need to create controllers , etc for all my Rest service methods... Thanks.

    C# csharp asp-net json visual-studio wcf

  • How to convert unix time to datetime (C#) ?
    V Vijay Kanda

    Is there any built in method (.Net C#) to convert the unix time (double datatype) to datetime? I got the following code from Stackoverflow : public static DateTime UnixTimeStampToDateTime( double unixTimeStamp ) { // Unix timestamp is seconds past epoch System.DateTime dtDateTime = new DateTime(1970,1,1,0,0,0,0); dtDateTime = dtDateTime.AddSeconds( unixTimeStamp ).ToLocalTime(); return dtDateTime; } But it's not working properly. The above method returns 1970-01-01 00:00:00 as result. Thanks. here is the Stackoverflow link: http://stackoverflow.com/questions/249760/how-to-convert-unix-timestamp-to-datetime-and-vice-versa[^]

    C# csharp com tutorial question

  • How to determine whether the given geo code in within geo fence or not?
    V Vijay Kanda

    I am using distance method in the DBGeography to find the places within given raduis... but now I need to figure out whether the given geo coordinates (Lat, longitude) are whether within given geo fence or not... geo fence could be any shape (circle, square, ploygon etc... My question is that is there any classes or methods in C# to do that? Thanks.

    C# question csharp tutorial

  • WCF REST Service : Using Bing Map
    V Vijay Kanda

    Richard, Thanks for the links... I read those links... But they don't explain which namespace or dill file I have to reference etc... I just need a quick tutorial how to use the BIng Maps Route APIs ... Thanks

    C# json csharp wcf question

  • Using Bing map or google geocoder
    V Vijay Kanda

    Simon, Thanks... really appreciate it... I could not find the article which you mentioned... please let me know the url when you have a chance... Thanks again.

    C# json tutorial learning

  • WCF REST Service : Using Bing Map
    V Vijay Kanda

    I am new to WCF REST service and Bing Map APIs... Can anyone please tell me where to start... I got the Bing Map key... Where do I (which namespace) find the Bing Map APIs (Routes API etc) and add to my project reference? Thanks.

    C# json csharp wcf question

  • Using Bing map or google geocoder
    V Vijay Kanda

    I am creating a REST Service project (just for learning purpose) and using Bing Map... This is what I want to accomplish...I am sending my current location (Latitude and longitude) to the service and I want to find out all the nearest Mac Donalds (for example) within 1 mile range from my current location and the distance and the time it will take me to get each Mac Donalds... I know there are BING MAP APIs which I can use to accomplish ... But I never used BING map or rest service before... so can anyone please tell me the Bing Map method/API names which take latitude and longitude as argument and retrun the info that I mentioned above. Thanks.

    C# json tutorial learning

  • .NET REST Service : using Bing Map
    V Vijay Kanda

    I am creating a REST Service project (just for learning purpose) and using Bing Map... This is what I want to accomplish...I am sending my current location (Latitude and longitude) to the service and I want to find out all the nearest Mac Donalds (for example) within 1 mile range from my current location and the distance and the time it will take me to get each Mac Donalds... I know there are BING MAP APIs which I can use to accomplish ... But I never used BING map or rest service before... so can anyone please tell me the Bing Map method/API names which take latitude and longitude as argument and retrun the info that I mentioned above. Thanks.

    WCF and WF json csharp tutorial learning

  • What is the best tool to create UML diagrams?
    V Vijay Kanda

    Pete, Thanks for your respond... Yes, from C#.

    C# question

  • What is the best tool to create UML diagrams?
    V Vijay Kanda

    What is the best (free) tool(s) to create UML diagrams? Thanks.

    C# question

  • Can anyone suggest any good books or tutorials on WPF-MVVM please?
    V Vijay Kanda

    Abhinav, Thanks for your comments.. you are right... I recently joined code project... I was not familiar with the site when i joined... Initially I posted this question in C# discussion section... I did not see or realize the WPF/Silverlight forum... Then I posted the question here i thought this was the right place for this question... thanks for your feed back...I'll make sure I don't cross post question in the future...

    WPF wpf csharp architecture question

  • Can anyone suggest any good books or tutorials on WPF-MVVM please?
    V Vijay Kanda

    Rags1512, Thanks.

    WPF wpf csharp architecture question

  • Any latest good books or tutorial on WPF-MVVM ?
    V Vijay Kanda

    Abhinav, Thanks so much.

    C# wpf csharp architecture tutorial question

  • Can anyone suggest any good books or tutorials on WPF-MVVM please?
    V Vijay Kanda

    I am looking for latest books or tutorials... not the old or outdated ones...Books or tutorials with hands-on or practical examples... Thanks.

    WPF wpf csharp architecture question

  • Any latest good books or tutorial on WPF-MVVM ?
    V Vijay Kanda

    Can anyone suggest any good books or tutorials on WPF-MVVM please? I am looking for latest books or tutorials... not the old or outdated ones... Books or tutorials with hands-on or practical examples... Thanks.

    C# wpf csharp architecture tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups