Best Practice for referencing datasets with web service

Ask a Question related to ASP.NET, Design and Development.

  1. #1

    Default Best Practice for referencing datasets with web service

    Hello All,
    I have an application that uses several layers as such:

    a Client that references a ClientHelper
    a ClientHelper references a WebService
    a WebService that references a Webservice Helper
    a Webservice Helper that Connects to the SQL server

    I have been trying to keep my typed datasets on the
    Webservice helper then passing the datasets as they are
    filled all the way back to my client.

    My question is this. I have noticed that I can declare a
    dataset on my client in such a way:

    dim MyDataSet as new clientHelper.webservice.TargetDataSet

    Now, for the questions.

    If i declare the dataset in this way, is it coming from
    the webservice? or is there a TargetDataset.xsd going
    somewhere that I cannot see?

    Again, My goal is to try and keep the client package
    small and not redefine any of the datasets locally so
    that I can make changes from the top if nescesarry.

    If this is not a good Scenario please suggest a better
    one.

    thanks for your time and help

    tal McMahon

    Tal McMahon Guest

  2. Similar Questions and Discussions

    1. Web Service Returning DataSets Error
      Hi! I find it awkward that some of my methods returning a typed dataset runs ok. While some throws an error saying 'object not set to an...
    2. Referencing web service
      Hi I have just uploaded my first web service to a remote host. So I am very new to this. I am now trying to reference the ws by putting the ws...
    3. Referencing web service complex data type within a second web service (like a delegate)
      Hi, I am trying to figure out if ASP.NET XML Web Services and the WSDL standard can handle this type of scenario: I have two web services, and...
    4. Web Service: DataSet or Stream.Best Practice.
      Hi, I need to transfer a DataSet object from WebClient to WebService. Is there a difference between transmitting a DataSet object and a Stream...
    5. Best Practice to spawn an Application from a Web Service ?
      Hi all. Can someone provide some help on the following as there seems to be many different methods of acheiving the same outcome. Basically I...
  3. #2

    Default Re: Best Practice for referencing datasets with web service

    Fregate un sapo y coman budines marmolados
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139