Click here to Skip to main content
15,888,521 members
Home / Discussions / C#
   

C#

 
AnswerRe: Hot to make transparent???? Pin
Pete O'Hanlon11-Mar-09 22:51
mvePete O'Hanlon11-Mar-09 22:51 
GeneralRe: Hot to make transparent???? Pin
S K Y11-Mar-09 23:24
S K Y11-Mar-09 23:24 
GeneralRe: Hot to make transparent???? Pin
Pete O'Hanlon12-Mar-09 1:31
mvePete O'Hanlon12-Mar-09 1:31 
JokeRe: Hot to make transparent???? Pin
0x3c012-Mar-09 1:41
0x3c012-Mar-09 1:41 
GeneralRe: Hot to make transparent???? Pin
Nagy Vilmos11-Mar-09 23:43
professionalNagy Vilmos11-Mar-09 23:43 
GeneralRe: Hot to make transparent???? Pin
Pete O'Hanlon11-Mar-09 23:58
mvePete O'Hanlon11-Mar-09 23:58 
JokeRe: Hot to make transparent???? Pin
Wes Aday12-Mar-09 5:03
professionalWes Aday12-Mar-09 5:03 
GeneralRe: Hot to make transparent???? Pin
Pete O'Hanlon12-Mar-09 5:46
mvePete O'Hanlon12-Mar-09 5:46 
QuestionRTF to PDF Pin
Mridang Agarwalla11-Mar-09 21:59
Mridang Agarwalla11-Mar-09 21:59 
AnswerRe: RTF to PDF Pin
Sun Rays11-Mar-09 22:03
Sun Rays11-Mar-09 22:03 
GeneralRe: RTF to PDF Pin
Mridang Agarwalla11-Mar-09 22:25
Mridang Agarwalla11-Mar-09 22:25 
GeneralRe: RTF to PDF Pin
dan!sh 11-Mar-09 22:31
professional dan!sh 11-Mar-09 22:31 
Questionwe want demo for devleoping UML tool in c#.net Pin
Kanchan Pawar11-Mar-09 21:40
Kanchan Pawar11-Mar-09 21:40 
JokeRe: we want demo for devleoping UML tool in c#.net Pin
ABitSmart11-Mar-09 21:48
ABitSmart11-Mar-09 21:48 
GeneralRe: we want demo for devleoping UML tool in c#.net Pin
scottgp12-Mar-09 2:09
professionalscottgp12-Mar-09 2:09 
JokeRe: we want demo for devleoping UML tool in c#.net Pin
Guffa12-Mar-09 3:52
Guffa12-Mar-09 3:52 
RantRe: we want demo for devleoping UML tool in c#.net Pin
Ashfield11-Mar-09 21:58
Ashfield11-Mar-09 21:58 
JokeRe: we want demo for devleoping UML tool in c#.net Pin
0x3c011-Mar-09 22:09
0x3c011-Mar-09 22:09 
JokeRe: we want demo for devleoping UML tool in c#.net Pin
Expert Coming11-Mar-09 22:24
Expert Coming11-Mar-09 22:24 
AnswerRe: we want demo for devleoping UML tool in c#.net Pin
Pete O'Hanlon11-Mar-09 22:41
mvePete O'Hanlon11-Mar-09 22:41 
JokeRe: we want demo for devleoping UML tool in c#.net Pin
Zhat12-Mar-09 2:40
Zhat12-Mar-09 2:40 
QuestionTooltip only shown one time Pin
stancrm11-Mar-09 21:30
stancrm11-Mar-09 21:30 
AnswerRe: Tooltip only shown one time Pin
Expert Coming11-Mar-09 22:30
Expert Coming11-Mar-09 22:30 
AnswerRe: Tooltip only shown one time Pin
Alan N12-Mar-09 2:20
Alan N12-Mar-09 2:20 
QuestionBackGround Service for connection.... Pin
King Julien11-Mar-09 20:22
King Julien11-Mar-09 20:22 
Hi all....

Let me explain about the project am working on now.....

I have a specific device with a dedicated IP address and port, whose methods can be called by using the web services. So whenever i require some data from the device i create a proxy for the specified web service and any method in that particular web service can be called and used. By this way am able to achieve the functionality. But the problem is, the time taken by the proxy to establish the connection is very high. So whenever i run my application to call a specific method to acquire some data it takes more time to establish the connection, but once the connection is made, it is quite faster in the consecutive method calls.....

e.g

myapp 127.1.2.3 1254 time

myapp---->>> exe name
127.1.2.3---->>> IP address as an argument
1254---->>> port number as an argument
time---->>> command name as argument

will print the time of the device in the screen.

Any new command like date, counters etc...
can be given as

myapp 127.1.2.3 1254 date

myapp 127.1.2.3 1254 counters and so on.....

Each of this commands takes more time to establish the connection and obviously more time to print the results.

So i planned to run a windows service which will take the ip address and port as the argument and run in the background, so that it establishes the connection and which can just return the live proxy name to myapp whenever required, so that the methods can be called using the existing proxy....

I have even created a test windows service(without any webservices and proxies for checking) and installed and checked. But it takes only int as arguments that too only (128 to 256)...

i have googled about this and found some techniques called remoting, IPC mechanisms etc.... But no fruitful results on what i am expecting....

Please suggest me how to proceed with this and any sample codes would also be greatly appreciable....

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.