CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: andegre

Search: Search took 0.02 seconds.

  1. Getting exception "ArgumentOutOfRange" even though I have a try/catch block

    I have a multi-threaded application that compares directories on one server to another. The application keeps crashing with the ArgumentOutOfRange exception even though I have a try block around the...
  2. Replies
    4
    Views
    1,482

    DateTime.TimeOfDay Help!

    I'm using the DateTime variable to determine when something is going to happen. Right now, my "endtime" is "6/11/2011 12:00:00 PM", but when I do "DateTime.TimeOfDay", it shows as "12:00:00" instead...
  3. Replies
    0
    Views
    443

    System references in 64-bit

    FYI - I'm running Windows 7 64-bit OS

    I have a website that I'm trying to build in 64-bit (by specifying 'AnyCPU' in the platform) but it always builds in 32-bit because there are 4 system...
  4. Help with Serializing an Array of a custom object

    Very straight forward but am drawing blanks. Been googling for the last day and a half and haven't found a good example that I can use to make work.



    [XmlRoot(Namespace =...
  5. Replies
    1
    Views
    1,104

    Exposing 3rd party objects in a webservice

    I have a webservice that developers will call, that basically just re-directs the method call to a 3rd party webservice. That 3rd party webservice has it's own custom objects/classes that are used as...
  6. Replies
    3
    Views
    1,239

    Which is more efficient

    I am reading some settings from a config file that would be setup by different developers. They can choose to add different settings and leave out other ones. In by abstract classes constructor, I...
  7. Replies
    1
    Views
    598

    Serialization Help!

    I've been racking my brain on this for the last week. I am calling a webservice and am getting an XmlNode as my return value. I created 2 custom classes to handle this node, the array of objects, and...
  8. Re: How can I do this? (interface, delegate, etc)

    Oh, writing that leads to another question, how can I give the client/user who is calling my webservice access to the 3rd party objects?
  9. Re: How can I do this? (interface, delegate, etc)

    Can you elaborate on the "forwarding/wrapping" part?

    Here's my thought:


    public XmlNode Search(3rdPartySystemFields sFields, 3rdPartyPrimaryFields pFields)
    {
    if (ws == null)
    ws...
  10. How can I do this? (interface, delegate, etc)

    I have a client/server application where the user has the exe on their own machine. From there, I have a server that is hosting a website that houses all of my web services. All interaction to the...
  11. Replies
    0
    Views
    711

    3rd Party software help

    Anyone every use the 3rd party software developed by Mitov? It's audio/video editing software.
  12. Replies
    1
    Views
    638

    Suggestions Requested please

    I need to write a program to allow my boss to be able to edit/manipulate video files (mp4, avi, wmv, etc). I need to be able to do the following:
    View a video file,
    while viewing the video...
  13. Replies
    2
    Views
    1,432

    Re: Sharepoint Webservice help via C#

    After doing many different tests and variations, there's still something wrong with how I have the field name in the "ViewFields" section.

    I tested this another way to try and figure out what the...
  14. Replies
    2
    Views
    1,432

    Re: Sharepoint Webservice help via C#

    I forgot to post my code, here you go...



    XmlDocument xDoc = new XmlDocument();
    XmlNode ndQuery = xDoc.CreateNode(XmlNodeType.Element, "Query", "");
    ...
  15. Replies
    2
    Views
    1,432

    Sharepoint Webservice help via C#

    Hello, I have a C# application that is trying to read information from a Sharepoint webservice. I am calling the "GetListItems" method sending in my ViewFields and the xml query. I currently have it...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured