Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. NotMyRealName221

    Problem with MemoryStream

    I just said the longest OOoo in history. Thanks a ton both of you
  2. NotMyRealName221

    Problem with MemoryStream

    Hello, thanks for taking a look at my problem. I have a SoapExtension that needs to access the soap message for logging. I'm trying to switch that logging from flat file to database. Everything has been working fine with the flat file all along. The basic process is this: Copy the existing...
  3. NotMyRealName221

    Need to transform normalized XML

    I'm consuming some XML from a sevice that I have no control over. The XML is comming back something like this: <root> <projects> <project> <id>1</id> <name>Project 1</name> </project> <project> <id>2</id> <name>Project 2</name> </project> </projects>...
  4. NotMyRealName221

    Adding value to SOAP header

    This is my code, inside a SOAP Extension: public void AddSessionId(SoapMessage message) { myHeader SessionHead = new myHeader(); SessionHead.SessionId = _SessionId + "|" + _Sequence; message.Headers.Add(SessionHead); } public class myHeader : SoapHeader...
  5. NotMyRealName221

    Soap Extension

    nevermind, everyone can stop looking :-) I just had to add an entry to the web.config file
  6. NotMyRealName221

    Soap Extension

    Hey, I wrote a soap extension, ok, I didn't write it, I found it on a microsoft tutorial. It's for logging all the SOAP messages in and outgoing. What I don't understand is how to connect that to my SOAP proxy. The SOAP proxy was created by wsdl.exe so it's pretty standard although very...
  7. NotMyRealName221

    object of array of objects problem

    Yes, there is... well, that part is in C# so it's brackets, but that is correct. it IS possible to send it multiple credentials. So the [] need to be there, I'm just not sure how to set the first element of that array of objects? I keep getting different errors. What would be the correct...
  8. NotMyRealName221

    object of array of objects problem

    I feel like a total newb asking this question but I'm hitting the wall with this sillyness. I just used the wsdl.exe to create code for a SOAP service. Speaking of which... is this really a necessary comment to put in that autogenerated code: // This code was generated by a tool. (who's it...

Part and Inventory Search

Back
Top