Click here to Skip to main content
15,881,600 members
Home / Discussions / C#
   

C#

 
QuestionUserControl and Collections in Designer Pin
cinias14-Oct-09 3:10
cinias14-Oct-09 3:10 
AnswerRe: UserControl and Collections in Designer Pin
Henry Minute14-Oct-09 3:41
Henry Minute14-Oct-09 3:41 
Questionbiometric sdk for hp ipaq pda Pin
solomonope14-Oct-09 2:30
solomonope14-Oct-09 2:30 
AnswerRe: biometric sdk for hp ipaq pda Pin
Richard MacCutchan14-Oct-09 3:07
mveRichard MacCutchan14-Oct-09 3:07 
QuestionGetting corrupt data from NetworkStream.Read Pin
JFord123414-Oct-09 1:34
JFord123414-Oct-09 1:34 
AnswerRe: Getting corrupt data from NetworkStream.Read Pin
Richard MacCutchan14-Oct-09 3:20
mveRichard MacCutchan14-Oct-09 3:20 
GeneralRe: Getting corrupt data from NetworkStream.Read Pin
JFord123414-Oct-09 5:51
JFord123414-Oct-09 5:51 
QuestionWebservice and proxy Pin
Mogyi13-Oct-09 23:11
Mogyi13-Oct-09 23:11 
Hello all of you,

I made a webservice and I can't get this to run via proxy.

the basic procedure on the client side looks like this:

MyWebservice service = new MyWebservice(); 

WebProxy iProxy = new WebProxy(_proxyAdress, true);

service.Proxy = iProxy;

...

if(service.LogOn(user, pass))
{

...

data = service.GetMyData();


now what happens is that the session variables are lost on the GetMyData() call

on the server side:

[WebMethod (EnableSession = true)]
public bool Logon(string s, string p)
{
...

Context.Session.Add ("LoggedIn", true);

...

return 
}

[WebMethod (EnableSession = true)]
public SomeData GetMyData()
{

...

   if(Context.Session ["LoggedIn"]) //<-- LoggedIn == null 

...
}



Whitout proxy it goes but with proxy dosen't. Please drop some tips if you have some. Thx. Wink | ;)
AnswerRe: Webservice and proxy Pin
Keith Barrow14-Oct-09 2:00
professionalKeith Barrow14-Oct-09 2:00 
GeneralRe: Webservice and proxy Pin
Mogyi14-Oct-09 2:15
Mogyi14-Oct-09 2:15 
AnswerRe: Webservice and proxy Pin
Hristo-Bojilov14-Oct-09 2:04
Hristo-Bojilov14-Oct-09 2:04 
GeneralRe: Webservice and proxy Pin
Mogyi14-Oct-09 2:17
Mogyi14-Oct-09 2:17 
QuestionOpening a named browser window from a windows application Pin
mSh198513-Oct-09 22:26
mSh198513-Oct-09 22:26 
QuestionAdding Data to datagridview [modified] Pin
ldsdbomber13-Oct-09 20:36
ldsdbomber13-Oct-09 20:36 
AnswerRe: Adding Data to datagridview Pin
OriginalGriff13-Oct-09 23:50
mveOriginalGriff13-Oct-09 23:50 
GeneralRe: Adding Data to datagridview Pin
ldsdbomber14-Oct-09 1:22
ldsdbomber14-Oct-09 1:22 
Questionwrite to a excel sheet that is already open Pin
ananya choudhury13-Oct-09 17:18
ananya choudhury13-Oct-09 17:18 
QuestionApp Communication via screen reads Pin
Rizean13-Oct-09 15:54
Rizean13-Oct-09 15:54 
QuestionVisual Studio integrated Source Control Pin
Expert Coming13-Oct-09 13:46
Expert Coming13-Oct-09 13:46 
AnswerRe: Visual Studio integrated Source Control Pin
Expert Coming13-Oct-09 15:26
Expert Coming13-Oct-09 15:26 
GeneralRe: Visual Studio integrated Source Control Pin
Not Active13-Oct-09 17:41
mentorNot Active13-Oct-09 17:41 
AnswerRe: Visual Studio integrated Source Control Pin
Kevin Marois14-Oct-09 5:38
professionalKevin Marois14-Oct-09 5:38 
Question[Message Deleted] Pin
arkiboys13-Oct-09 12:20
arkiboys13-Oct-09 12:20 
AnswerRe: linqtoxml - update Pin
Christian Graus13-Oct-09 12:23
protectorChristian Graus13-Oct-09 12:23 
GeneralRe: linqtoxml - update Pin
arkiboys13-Oct-09 12:34
arkiboys13-Oct-09 12:34 

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.