Click here to Skip to main content
15,908,166 members
Home / Discussions / Web Development
   

Web Development

 
QuestionMicrosoft.Web.Services3.Security.Cryptography.AES Class Pin
khaasJ13-Sep-06 2:40
khaasJ13-Sep-06 2:40 
QuestionclassName effects not showing up Pin
eggie512-Sep-06 12:28
eggie512-Sep-06 12:28 
AnswerRe: className effects not showing up Pin
Guffa13-Sep-06 7:00
Guffa13-Sep-06 7:00 
GeneralRe: className effects not showing up Pin
eggie513-Sep-06 7:06
eggie513-Sep-06 7:06 
QuestionStandalone HTTP Communication [modified] Pin
mollasadra12-Sep-06 11:31
mollasadra12-Sep-06 11:31 
QuestionNeed help in making web page resizable Pin
bankerkev12-Sep-06 5:38
bankerkev12-Sep-06 5:38 
Questionhow to connect to MS SQL database Pin
JustmeNick12-Sep-06 5:24
JustmeNick12-Sep-06 5:24 
QuestionHow to register an assembly in asp.net web app? Pin
choorakkuttyil12-Sep-06 1:59
choorakkuttyil12-Sep-06 1:59 
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 

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.