Click here to Skip to main content
15,894,017 members
Home / Discussions / C#
   

C#

 
AnswerRe: Sir, Dan Letecky post Desktop Search Application: Part 2 Pin
Dave Kreskowiak19-Mar-13 8:12
mveDave Kreskowiak19-Mar-13 8:12 
QuestionMaintaining Variables Pin
clugsy6419-Mar-13 5:38
clugsy6419-Mar-13 5:38 
AnswerRe: Maintaining Variables Pin
NotPolitcallyCorrect19-Mar-13 5:39
NotPolitcallyCorrect19-Mar-13 5:39 
GeneralRe: Maintaining Variables Pin
clugsy6419-Mar-13 5:52
clugsy6419-Mar-13 5:52 
AnswerRe: Maintaining Variables Pin
Simon_Whale19-Mar-13 5:59
Simon_Whale19-Mar-13 5:59 
AnswerRe: Maintaining Variables Pin
Pete O'Hanlon19-Mar-13 6:07
mvePete O'Hanlon19-Mar-13 6:07 
GeneralRe: Maintaining Variables Pin
clugsy6419-Mar-13 7:20
clugsy6419-Mar-13 7:20 
AnswerRe: Maintaining Variables Pin
Abhinav S19-Mar-13 18:17
Abhinav S19-Mar-13 18:17 
Questionread .sav-file Pin
ANahr19-Mar-13 4:40
ANahr19-Mar-13 4:40 
AnswerRe: read .sav-file Pin
NotPolitcallyCorrect19-Mar-13 4:53
NotPolitcallyCorrect19-Mar-13 4:53 
AnswerRe: read .sav-file Pin
Jegan Thiyagesan19-Mar-13 6:10
Jegan Thiyagesan19-Mar-13 6:10 
GeneralRe: read .sav-file Pin
ANahr19-Mar-13 11:15
ANahr19-Mar-13 11:15 
AnswerRe: read .sav-file Pin
Pete O'Hanlon19-Mar-13 6:34
mvePete O'Hanlon19-Mar-13 6:34 
QuestionUsing URL in C# Pin
annex4518-Mar-13 21:21
annex4518-Mar-13 21:21 
AnswerRe: Using URL in C# PinPopular
Pete O'Hanlon18-Mar-13 23:12
mvePete O'Hanlon18-Mar-13 23:12 
AnswerRe: Using URL in C# Pin
Richard Deeming18-Mar-13 23:41
mveRichard Deeming18-Mar-13 23:41 
GeneralRe: Using URL in C# Pin
annex4520-Mar-13 12:43
annex4520-Mar-13 12:43 
AnswerRe: Using URL in C# Pin
jschell19-Mar-13 9:53
jschell19-Mar-13 9:53 
QuestionLinq To SQL Query Not Working - Null Problem Pin
Kevin Marois18-Mar-13 20:40
professionalKevin Marois18-Mar-13 20:40 
AnswerRe: Linq To SQL Query Not Working - Null Problem Pin
Freak3019-Mar-13 0:25
Freak3019-Mar-13 0:25 
GeneralRe: Linq To SQL Query Not Working - Null Problem Pin
Kevin Marois19-Mar-13 5:00
professionalKevin Marois19-Mar-13 5:00 
AnswerRe: Linq To SQL Query Not Working - Null Problem Pin
Mycroft Holmes19-Mar-13 0:28
professionalMycroft Holmes19-Mar-13 0:28 
GeneralRe: Linq To SQL Query Not Working - Null Problem Pin
Freak3019-Mar-13 22:17
Freak3019-Mar-13 22:17 
Questionsocket in service WCF Pin
ibrahimCA18-Mar-13 10:55
ibrahimCA18-Mar-13 10:55 
I create a WCF web service that contains this method in service.svc:

public int positionGPS (_latitude string, string _longitude)
{
           / / Send the ordinate DB
            DAL.GPSEntities bd = new DAL.GPSEntities ();
             / / Table of the database table position
             Pos = new TablePosition TablePosition ();

            
             pos.latitude = _latitude;
             pos.longitude = _longitude;

             bd.AddToTablePosition (pos);
             bd.SaveChanges ();

/ / Add the code for the socket

      / /??????????
}

this method will be called back for a pda, gps coordinates
then they saved in the database.
 
my problem:
I want to know how to send these coordinates to another application winforms for tracing in real time in maps.
I know there is a method to use the socket, but I do not know how to apply in wcf, wcf then my service will be housed in the IIS server.
and in our case winforms application (the client socket that many) also PDAs.
and thank you in advance.
AnswerRe: socket in service WCF Pin
Richard MacCutchan18-Mar-13 23:27
mveRichard MacCutchan18-Mar-13 23:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.