Click here to Skip to main content
15,897,371 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: How to register an assembly in asp.net web app? Pin
Tushar Kothari12-Sep-06 2:17
Tushar Kothari12-Sep-06 2:17 
QuestionRe: How to register an assembly in asp.net web app? Pin
choorakkuttyil12-Sep-06 2:32
choorakkuttyil12-Sep-06 2:32 
AnswerRe: How to register an assembly in asp.net web app? Pin
Boro_Bob13-Sep-06 3:41
Boro_Bob13-Sep-06 3:41 
Questionclassic ASP Pin
myousufq12-Sep-06 0:33
myousufq12-Sep-06 0:33 
AnswerRe: classic ASP Pin
Tushar Kothari12-Sep-06 2:11
Tushar Kothari12-Sep-06 2:11 
GeneralRe: classic ASP Pin
myousufq12-Sep-06 7:46
myousufq12-Sep-06 7:46 
QuestionWebservice asynchronous methods not available Pin
Talal Sultan11-Sep-06 20:12
Talal Sultan11-Sep-06 20:12 
QuestionWSE 3.0 using TCP and custom data. Pin
Steve Messer11-Sep-06 8:10
Steve Messer11-Sep-06 8:10 
I am trying to create an complex object to send back as a response to a request.


for example:

[SoapMethod("GetRO")]
 public RODataResponse GetRO( GetRORequest request )
 {
    RODataResponse resp = new RODataResponse();

    string a = request.target;
    string b = request.roId;

    resp.status = "GetRO Goooood";
    resp.roData = null;

    return resp;
  }


My object is defined as:

public class RODataResponse
{
    public string status;
    public RepairOrder roData;
}


Which contains a complex object that fails with a serialization error when using Wse2wsdl.exe.

public class RepairOrder
{
    public Dictionary<string, LineItem> lineItemList = new Dictionary<string, LineItem>();

    public RepairOrder()
    {
       lineItemList.Add( "one", new LineItem());
    }
}



My question is how do you make this work? How do I make a list of items serializible?
Questionloading dll in javascript. Pin
V.11-Sep-06 4:39
professionalV.11-Sep-06 4:39 
AnswerRe: loading dll in javascript. Pin
led mike11-Sep-06 6:06
led mike11-Sep-06 6:06 
GeneralRe: loading dll in javascript. Pin
V.11-Sep-06 20:37
professionalV.11-Sep-06 20:37 
Questionupload POST request with javascript or ajax Pin
DagsmanIsTheMan11-Sep-06 1:44
DagsmanIsTheMan11-Sep-06 1:44 
AnswerRe: upload POST request with javascript or ajax Pin
CWIZO13-Sep-06 3:54
CWIZO13-Sep-06 3:54 
GeneralRe: upload POST request with javascript or ajax Pin
DagsmanIsTheMan13-Sep-06 4:43
DagsmanIsTheMan13-Sep-06 4:43 
QuestionxmlHttp + web services + help needed Pin
Naveed Kamboh11-Sep-06 1:30
Naveed Kamboh11-Sep-06 1:30 
AnswerRe: xmlHttp + web services + help needed Pin
Tushar Kothari11-Sep-06 1:36
Tushar Kothari11-Sep-06 1:36 
GeneralRe: xmlHttp + web services + help needed Pin
Naveed Kamboh11-Sep-06 2:00
Naveed Kamboh11-Sep-06 2:00 
GeneralRe: xmlHttp + web services + help needed Pin
Tushar Kothari11-Sep-06 3:45
Tushar Kothari11-Sep-06 3:45 
QuestionAsynchronous webservice call Pin
Tushar Kothari11-Sep-06 0:50
Tushar Kothari11-Sep-06 0:50 
Questionmake edit box uneditable Pin
tibiz10-Sep-06 19:47
tibiz10-Sep-06 19:47 
AnswerRe: make edit box uneditable Pin
Steve Echols10-Sep-06 20:01
Steve Echols10-Sep-06 20:01 
QuestionWebsite templates Pin
jesarg10-Sep-06 15:01
jesarg10-Sep-06 15:01 
AnswerRe: Website templates Pin
CWIZO11-Sep-06 0:18
CWIZO11-Sep-06 0:18 
QuestionAdvertising on my website Pin
tmoney10110-Sep-06 1:34
tmoney10110-Sep-06 1:34 
AnswerRe: Advertising on my website Pin
James Gupta10-Sep-06 13:22
professionalJames Gupta10-Sep-06 13:22 

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.