Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

I have a web service which receives datasets and plugs them into a CRM

 

I have a need to be able to connect to it from HTML and ASP pages.

 

Am I going to have to receive something other than Datasets, or can a SOAP dataset be created from a non .Net web site?

Read the Fovean Chronicles

Because you just can't spend your whole day programming!

  • Administrators
Posted

Technically there is no reason why a non MS client couldn't use a DataSet. However Datasets do include several MS 'features' (anything in the msdata namespace) you may encounter errors with other clients. Datasets also can be on the heavy side and may cause issues with limited bandwidth.

 

I personally would tend to create my own data types (classes, arrays etc) and, after use of the attributes from the System.Xml namespace, return these from the web methods - you still get a valid schema definition without the overheads.

Posting Guidelines FAQ Post Formatting

 

Intellectuals solve problems; geniuses prevent them.

-- Albert Einstein

Posted

As usual, very good advice

 

Right now I just spent 2 hours trying to check my wsdl with the stupid wsdl.exe program, which can't find the web services section of the Web.Config no matter where I put it

 

Next was to try PocketSoap, which clearly can't interpret either a a dataset or a class file

 

So I think a respectable XML file in place of a dataset

 

Thanks!

Read the Fovean Chronicles

Because you just can't spend your whole day programming!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...