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

C#

 
GeneralRe: C# VS 2008 3.5 XML/Webservice error Pin
#realJSOP23-Apr-10 7:56
mve#realJSOP23-Apr-10 7:56 
GeneralRe: C# VS 2008 3.5 XML/Webservice error Pin
Wheels01223-Apr-10 8:07
Wheels01223-Apr-10 8:07 
GeneralRe: C# VS 2008 3.5 XML/Webservice error Pin
Luc Pattyn23-Apr-10 8:16
sitebuilderLuc Pattyn23-Apr-10 8:16 
GeneralRe: C# VS 2008 3.5 XML/Webservice error Pin
Wheels01223-Apr-10 8:17
Wheels01223-Apr-10 8:17 
GeneralRe: C# VS 2008 3.5 XML/Webservice error Pin
#realJSOP24-Apr-10 0:51
mve#realJSOP24-Apr-10 0:51 
GeneralRe: C# VS 2008 3.5 XML/Webservice error Pin
Wheels01226-Apr-10 1:43
Wheels01226-Apr-10 1:43 
GeneralRe: C# VS 2008 3.5 XML/Webservice error Pin
#realJSOP26-Apr-10 12:32
mve#realJSOP26-Apr-10 12:32 
GeneralRe: C# VS 2008 3.5 XML/Webservice error Pin
Wheels01227-Apr-10 1:30
Wheels01227-Apr-10 1:30 
Found a work around, although not as elegant as I would like:
Bank.net.webservicex.www.USZip ws = new Bank.net.webservicex.www.USZip();


           XmlNode cityNode = ws.GetInfoByZIP(txtZip.Text);

           string cityName = "UNKNOWN";
           string stateName = "UNKNOWN";
           foreach (XmlNode node in cityNode)
           {
               foreach (XmlElement elem in node)
               {
                   if (elem != null && elem.Name.Equals("CITY"))
                   {
                       cityName = elem.FirstChild.InnerText;
                   }
                   if (elem != null && elem.Name.Equals("STATE"))
                   {
                       stateName = elem.FirstChild.InnerText;
                   }
               }
           }
           txtCity.Text = cityName;
           txtState.Text = stateName;

WHEELS
QuestionSerialPort Pin
jashimu23-Apr-10 4:32
jashimu23-Apr-10 4:32 
AnswerRe: SerialPort Pin
Ravi Bhavnani23-Apr-10 4:52
professionalRavi Bhavnani23-Apr-10 4:52 
AnswerRe: SerialPort Pin
Luc Pattyn23-Apr-10 4:58
sitebuilderLuc Pattyn23-Apr-10 4:58 
GeneralRe: SerialPort Pin
jashimu23-Apr-10 5:13
jashimu23-Apr-10 5:13 
GeneralRe: SerialPort Pin
jashimu26-Apr-10 4:49
jashimu26-Apr-10 4:49 
GeneralRe: SerialPort Pin
Luc Pattyn26-Apr-10 5:16
sitebuilderLuc Pattyn26-Apr-10 5:16 
AnswerRe: SerialPort Pin
PIEBALDconsult23-Apr-10 4:59
mvePIEBALDconsult23-Apr-10 4:59 
GeneralRe: SerialPort Pin
jashimu23-Apr-10 5:09
jashimu23-Apr-10 5:09 
Questionsms broadcast bluetooth Pin
Wannes Geysen23-Apr-10 4:02
Wannes Geysen23-Apr-10 4:02 
QuestionRe: sms broadcast bluetooth Pin
Wannes Geysen26-Apr-10 1:08
Wannes Geysen26-Apr-10 1:08 
QuestionUsing Gzip in HttpRequests Pin
rahul.kulshreshtha23-Apr-10 3:41
rahul.kulshreshtha23-Apr-10 3:41 
AnswerRe: Using Gzip in HttpRequests Pin
Abhinav S23-Apr-10 5:16
Abhinav S23-Apr-10 5:16 
GeneralRe: Using Gzip in HttpRequests Pin
Migounette23-Apr-10 6:51
Migounette23-Apr-10 6:51 
QuestionGetting UNMANAGED stack trace in C# Pin
Fayu23-Apr-10 3:39
Fayu23-Apr-10 3:39 
AnswerRe: Getting UNMANAGED stack trace in C# Pin
Dave Kreskowiak23-Apr-10 4:00
mveDave Kreskowiak23-Apr-10 4:00 
AnswerRe: Getting UNMANAGED stack trace in C# Pin
Abhinav S23-Apr-10 5:58
Abhinav S23-Apr-10 5:58 
QuestionExcel Addin MiniDump Pin
GoodIntentions23-Apr-10 3:37
GoodIntentions23-Apr-10 3:37 

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.