Click here to Skip to main content
15,887,027 members
Home / Discussions / C#
   

C#

 
GeneralRe: Making Excel Cells Read Only Pin
Patrice T17-Feb-17 11:24
mvePatrice T17-Feb-17 11:24 
AnswerRe: Making Excel Cells Read Only Pin
Ralf Meier16-Feb-17 19:18
mveRalf Meier16-Feb-17 19:18 
GeneralRe: Making Excel Cells Read Only Pin
dpasswat17-Feb-17 10:25
dpasswat17-Feb-17 10:25 
Questionhow to convert pdf to xml? Pin
Member 1275769515-Feb-17 4:04
Member 1275769515-Feb-17 4:04 
AnswerRe: how to convert pdf to xml? Pin
Nathan Minier15-Feb-17 4:27
professionalNathan Minier15-Feb-17 4:27 
SuggestionRe: how to convert pdf to xml? Pin
Richard Deeming15-Feb-17 5:31
mveRichard Deeming15-Feb-17 5:31 
GeneralRe: how to convert pdf to xml? Pin
Nathan Minier15-Feb-17 5:49
professionalNathan Minier15-Feb-17 5:49 
Questionhow to making async call to proxy webreference created from asmx webservice Pin
ArunHanu15-Feb-17 2:25
ArunHanu15-Feb-17 2:25 
I have created proxy services by add web reference in my Xamarin.Droid project to access asmx webservice.
Eg: I have a webservice for feature master
when I make a direct request with URL "http://XX.XX.XXX.XXX/tabsaleswithdatasync.asmx/FeatureMaster"
I am getting following info

[{"msg":"","FeatureSlno":"2","Feature":"Fuel Used","DefaultValue":"","FeatureType":"B","Groups":"OverView","GroupOrder":"0","SubGroupOrder":"0","CategorySlno":"2","UtilisationSlno":"1","IconImagePath":"","LowerIsBetter":"0"},{"msg":"","FeatureSlno":"3","Feature":"Seating Capacity","DefaultValue":"","FeatureType":"B","Groups":"OverView","GroupOrder":"0","SubGroupOrder":"0","CategorySlno":"3","UtilisationSlno":"0","IconImagePath":"","LowerIsBetter":"0"}]


I have written my method to get data

EngageWebReference.TabSalesWithDataSync objProxy = new EngageWebReference.TabSalesWithDataSync();
objProxy.FeatureMasterCompleted += ObjProxy_FeatureMasterCompleted;
objProxy.FeatureMasterAsync();

private void ObjProxy_CityMasterCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
{
// here I am getting XMLException as data at the root level is invalid. line 1 position 1.
throw new NotImplementedException();
}

Can anyone suggest how to make async call get the desired result into a variable eg:
List<featuremaster> res = new List<featuremaster>
res = GetFeatureMasterList();
AnswerRe: how to making async call to proxy webreference created from asmx webservice Pin
Nathan Minier15-Feb-17 2:55
professionalNathan Minier15-Feb-17 2:55 
GeneralRe: how to making async call to proxy webreference created from asmx webservice Pin
ArunHanu15-Feb-17 3:06
ArunHanu15-Feb-17 3:06 
GeneralRe: how to making async call to proxy webreference created from asmx webservice Pin
Gerry Schmitz15-Feb-17 3:34
mveGerry Schmitz15-Feb-17 3:34 
GeneralRe: how to making async call to proxy webreference created from asmx webservice Pin
Nathan Minier15-Feb-17 4:24
professionalNathan Minier15-Feb-17 4:24 
GeneralRe: how to making async call to proxy webreference created from asmx webservice Pin
ArunHanu15-Feb-17 19:04
ArunHanu15-Feb-17 19:04 
GeneralRe: how to making async call to proxy webreference created from asmx webservice Pin
Nathan Minier16-Feb-17 1:00
professionalNathan Minier16-Feb-17 1:00 
GeneralRe: how to making async call to proxy webreference created from asmx webservice Pin
ArunHanu16-Feb-17 22:23
ArunHanu16-Feb-17 22:23 
Questionusing @ as Text for a link Pin
Member 1299330414-Feb-17 4:54
Member 1299330414-Feb-17 4:54 
AnswerRe: using @ as Text for a link Pin
OriginalGriff14-Feb-17 6:03
mveOriginalGriff14-Feb-17 6:03 
AnswerRe: using @ as Text for a link Pin
Richard MacCutchan14-Feb-17 6:31
mveRichard MacCutchan14-Feb-17 6:31 
AnswerRe: using @ as Text for a link Pin
Richard Deeming14-Feb-17 6:42
mveRichard Deeming14-Feb-17 6:42 
Questionhow to jump to the particular section in a tab from different tab Pin
Dhyanga13-Feb-17 7:01
Dhyanga13-Feb-17 7:01 
AnswerRe: how to jump to the particular section in a tab from different tab Pin
Richard Deeming13-Feb-17 7:59
mveRichard Deeming13-Feb-17 7:59 
QuestionRead xml file from folder and extract data to database Pin
Member 1299751812-Feb-17 21:47
Member 1299751812-Feb-17 21:47 
AnswerRe: Read xml file from folder and extract data to database Pin
Pete O'Hanlon12-Feb-17 22:02
mvePete O'Hanlon12-Feb-17 22:02 
GeneralRe: Read xml file from folder and extract data to database Pin
Member 1299751813-Feb-17 7:51
Member 1299751813-Feb-17 7:51 
GeneralRe: Read xml file from folder and extract data to database Pin
Member 1299751813-Feb-17 7:52
Member 1299751813-Feb-17 7:52 

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.