Click here to Skip to main content
15,899,475 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDisplay the current location's latitude and longitude on the mobile Pin
Ritika S7-Dec-06 0:42
Ritika S7-Dec-06 0:42 
QuestionDynamic Menu: Help needed! Pin
Simon Parzer7-Dec-06 0:31
Simon Parzer7-Dec-06 0:31 
AnswerRe: Dynamic Menu: Help needed! Pin
ToddHileHoffer7-Dec-06 2:31
ToddHileHoffer7-Dec-06 2:31 
GeneralRe: Dynamic Menu: Help needed! Pin
Simon Parzer7-Dec-06 3:38
Simon Parzer7-Dec-06 3:38 
GeneralRe: Dynamic Menu: Help needed! Pin
ToddHileHoffer7-Dec-06 3:47
ToddHileHoffer7-Dec-06 3:47 
QuestionVisual Studio and IIS Pin
Bulky Fellow7-Dec-06 0:17
Bulky Fellow7-Dec-06 0:17 
AnswerRe: Visual Studio and IIS Pin
M LN Rao7-Dec-06 0:43
M LN Rao7-Dec-06 0:43 
QuestionRemote Web Service Connection Error Pin
K.P.Kannan6-Dec-06 23:26
K.P.Kannan6-Dec-06 23:26 
We use the following code to authenticate users through the web service
When we type the URL in IE we are able to see the webservice.
But when we connect through .NET, it is failing. Any system related, proxy related settings to be checked. They changed the proxy server from some
xxx.xxx.xxx.xxx to yyy.yyy.yyy.yyy. We used to connect through .NET when we used xxx.xxx.xxx.xxx. The System people are checking and it seems that they are running out of ideas. Solution is greatly appreciated

WebProxy proxy = new WebProxy("xxx.xxx.xxx.xxx", 80);
proxy.BypassProxyOnLocal = true;
proxy.Credentials = new NetworkCredential("user","password","domain");
// instantiating the class for calling the webservice to authenicate against SSO
AuthenticateUser service=new AuthenticateUser();
// populating the inputXML String to be sent to the web service with username and password
string inputXml1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
inputXml1 += "<transaction xmlns=\"https://website" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ";
inputXml1 += " type=\"request\" date=\"1967-08-13\" version=\"1\">";
inputXml1 += " <credential type=\"user\" id=\""+userName+"\" password=\""+userPassword+"\"/>";
inputXml1 += " </transaction>";
//calling the proxy
service.Proxy = proxy;
log.Error(inputXml1);
log.Error(inputXml1);
// calling the webservice and storing the outputXML
log.Error("inside third after inputxl ");
string outputXML=service.Authenticate(inputXml1);
Questionreplace not working Pin
Sushantc6-Dec-06 23:06
Sushantc6-Dec-06 23:06 
AnswerRe: replace not working Pin
Guffa6-Dec-06 23:15
Guffa6-Dec-06 23:15 
GeneralRe: replace not working Pin
Bulky Fellow7-Dec-06 0:20
Bulky Fellow7-Dec-06 0:20 
AnswerRe: replace not working Pin
l0kke7-Dec-06 2:48
l0kke7-Dec-06 2:48 
QuestionBind HyperLink in DataList Pin
Emy El.Kayat6-Dec-06 23:04
Emy El.Kayat6-Dec-06 23:04 
Questionproblem uploading to hosting server Pin
licec6-Dec-06 23:03
licec6-Dec-06 23:03 
QuestionView Source Pin
Khan.Bangash6-Dec-06 22:24
Khan.Bangash6-Dec-06 22:24 
AnswerRe: View Source Pin
Christian Graus6-Dec-06 22:37
protectorChristian Graus6-Dec-06 22:37 
GeneralRe: View Source Pin
Khan.Bangash6-Dec-06 22:40
Khan.Bangash6-Dec-06 22:40 
GeneralRe: View Source Pin
Christian Graus7-Dec-06 0:04
protectorChristian Graus7-Dec-06 0:04 
GeneralRe: View Source Pin
ednrgc7-Dec-06 4:23
ednrgc7-Dec-06 4:23 
AnswerRe: View Source Pin
Kapil Thakur6-Dec-06 23:09
Kapil Thakur6-Dec-06 23:09 
AnswerRe: View Source Pin
Guffa6-Dec-06 23:12
Guffa6-Dec-06 23:12 
GeneralRe: View Source Pin
Khan.Bangash6-Dec-06 23:25
Khan.Bangash6-Dec-06 23:25 
GeneralRe: View Source Pin
Ritika S6-Dec-06 23:48
Ritika S6-Dec-06 23:48 
GeneralRe: View Source Pin
Khan.Bangash7-Dec-06 0:27
Khan.Bangash7-Dec-06 0:27 
GeneralRe: View Source Pin
Ritika S7-Dec-06 0:49
Ritika S7-Dec-06 0:49 

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.