Click here to Skip to main content
15,885,757 members
Home / Discussions / Mobile
   

Mobile

 
SuggestionRe: can anyone help me to solve this error? Pin
David Crow13-Oct-22 3:16
David Crow13-Oct-22 3:16 
QuestionXamarin using C#: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Luis M. Rojas22-Jul-22 7:18
Luis M. Rojas22-Jul-22 7:18 
AnswerRe: Xamarin using C#: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Richard MacCutchan22-Jul-22 21:23
mveRichard MacCutchan22-Jul-22 21:23 
GeneralRe: Xamarin using C#: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Luis M. Rojas23-Jul-22 3:34
Luis M. Rojas23-Jul-22 3:34 
GeneralRe: Xamarin using C#: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Richard MacCutchan23-Jul-22 8:14
mveRichard MacCutchan23-Jul-22 8:14 
GeneralRe: Xamarin using C#: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Luis M. Rojas23-Jul-22 11:59
Luis M. Rojas23-Jul-22 11:59 
GeneralRe: Xamarin using C#: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Richard MacCutchan23-Jul-22 20:50
mveRichard MacCutchan23-Jul-22 20:50 
GeneralRe: Xamarin using C#: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Luis M. Rojas25-Jul-22 3:21
Luis M. Rojas25-Jul-22 3:21 
Solution:
I just changed the code to:
HttpWebRequest wReq = WebRequest.Create("http://www.mi.traelopaq.net/listarpaqjson.php?text1=2264&text2=pOADSIQMASD.O398AJas&KEYAPI=ODUTRAS.9di23821@ldpli2skjs43&KEYPASo=OASmsjdu38IO1p29AA93JA0OD9K1221") as HttpWebRequest;
         string json = null;
         using (HttpWebResponse wResp =(HttpWebResponse) wReq.GetResponse())
         {
             using (Stream s = wResp.GetResponseStream())
             {
                 using (TextReader tr = new StreamReader(s))
                 {
                     json = tr.ReadToEnd();
                     MessageBox.Show(json);
                 }
             }
         }

and i can read the URL without problem
GeneralRe: Xamarin using C#: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Richard Deeming25-Jul-22 4:37
mveRichard Deeming25-Jul-22 4:37 
QuestionMessage Closed Pin
25-Mar-22 7:38
Member 1557910425-Mar-22 7:38 
QuestionIs is realistic to make money from a small mobile/tablet app? Pin
Patrick Skelton20-Mar-22 0:54
Patrick Skelton20-Mar-22 0:54 
AnswerRe: Is is realistic to make money from a small mobile/tablet app? Pin
Richard MacCutchan20-Mar-22 2:17
mveRichard MacCutchan20-Mar-22 2:17 
GeneralRe: Is is realistic to make money from a small mobile/tablet app? Pin
Patrick Skelton21-Mar-22 21:26
Patrick Skelton21-Mar-22 21:26 
AnswerRe: Is is realistic to make money from a small mobile/tablet app? Pin
Gerry Schmitz20-Mar-22 4:32
mveGerry Schmitz20-Mar-22 4:32 
GeneralRe: Is is realistic to make money from a small mobile/tablet app? Pin
Patrick Skelton21-Mar-22 21:33
Patrick Skelton21-Mar-22 21:33 
GeneralRe: Is is realistic to make money from a small mobile/tablet app? Pin
Member 150787168-Aug-22 16:50
Member 150787168-Aug-22 16:50 
AnswerRe: Is is realistic to make money from a small mobile/tablet app? Pin
Member 150787168-Aug-22 16:44
Member 150787168-Aug-22 16:44 
QuestionHow to get started - app android and ios Pin
David Mikkelsen 20212-Mar-22 8:06
David Mikkelsen 20212-Mar-22 8:06 
GeneralRe: How to get started - app android and ios Pin
jaket-cp14-Mar-22 4:43
jaket-cp14-Mar-22 4:43 
AnswerMessage Closed Pin
20-Apr-22 22:46
Linda Hartley20-Apr-22 22:46 
AnswerRe: How to get started - app android and ios Pin
kevin james Jun202218-Aug-22 6:48
kevin james Jun202218-Aug-22 6:48 
AnswerRe: How to get started - app android and ios Pin
Uncork19-Sep-23 20:40
Uncork19-Sep-23 20:40 
GeneralMessage Closed Pin
22-Feb-22 1:17
professionalNicholas James jr22-Feb-22 1:17 
GeneralRe: Why to Choose Mobile App Company in India for best out put? Pin
Member 150787168-Aug-22 17:01
Member 150787168-Aug-22 17:01 
GeneralRe: Why to Choose Mobile App Company in India for best out put? Pin
Richard Deeming8-Aug-22 22:06
mveRichard Deeming8-Aug-22 22:06 

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.