Click here to Skip to main content
15,897,518 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Visual Studio Error Pin
Philippe Mori26-Jul-12 17:26
Philippe Mori26-Jul-12 17:26 
GeneralRe: Visual Studio Error Pin
MWRivera27-Jul-12 4:31
MWRivera27-Jul-12 4:31 
AnswerRe: Visual Studio Error Pin
WoodenLegNamedSmith2-Aug-12 7:58
WoodenLegNamedSmith2-Aug-12 7:58 
AnswerRe: Visual Studio Error Pin
Sakthivel Parasuraman2-Aug-12 23:57
Sakthivel Parasuraman2-Aug-12 23:57 
QuestionA simple contact form with validation Pin
Member 929983624-Jul-12 5:03
Member 929983624-Jul-12 5:03 
AnswerRe: A simple contact form with validation Pin
StianSandberg26-Jul-12 4:49
StianSandberg26-Jul-12 4:49 
QuestionFirst SOAP project coming up, need clarification Pin
MrAurora24-Jul-12 2:55
MrAurora24-Jul-12 2:55 
AnswerRe: First SOAP project coming up, need clarification Pin
jkirkerx24-Jul-12 8:22
professionaljkirkerx24-Jul-12 8:22 
I not sure if this helps you.

But a Web Service is a way to get or post data to a web server, without using a page or form, in other words, you don't have to type the data in.

A Web Service can accept many different types of input, the most basic being JSON, and the most complex in my opinion is SOAP. XML is the basic foundation for packaging data to be sent or received.

Overall, to learn how to send and receive data to a web service, you start with learning how to create XML on the fly, and how to read back the XML, allowing for any element and value that may arise. Parsing the response elements is the hardest part.

SOAP is pretty interesting. I've seen some really huge WSDL files from FedEx, In which every possibility you can think of is built-in the file.

Some fields or elements are just populated with text, like a address, and others are enumerated, in which it can only be one of the defined values.

It's been awhile since I've work with SOAP, but You have to drop the SOAP file in your project somewhere, and make a reference to it, and load it as an object. And then goes through the object elements and populate them with your data.

Sometimes, a SOAP file can be hard to read, so you load it up in a viewer like Liquid XML, and it will give you a picture of the structure.


MrAurora wrote:
values like "EU ROHS|REACH SVHC (46)"


I'm not sure what to make of that, looks like 2 choices, or several choices listed as parameters, seperated by |, split

MrAurora wrote:
<layer>this tag accept these 5 values


Enumerated, only accepts those 5 possible anwsers, like multiple choice question on test.
MrAurora wrote:
SOAP WSDL files can be used to produce client side code maybe

It's all server side code, designed to transmit from one server to another.
GeneralRe: First SOAP project coming up, need clarification Pin
MrAurora25-Jul-12 0:22
MrAurora25-Jul-12 0:22 
GeneralRe: First SOAP project coming up, need clarification Pin
jkirkerx25-Jul-12 7:31
professionaljkirkerx25-Jul-12 7:31 
GeneralRe: First SOAP project coming up, need clarification Pin
MrAurora27-Jul-12 0:56
MrAurora27-Jul-12 0:56 
GeneralRe: First SOAP project coming up, need clarification Pin
jkirkerx27-Jul-12 7:21
professionaljkirkerx27-Jul-12 7:21 
Question.net client, java soap web services , validation from soap headers Pin
Anuradhaanu22-Jul-12 23:08
Anuradhaanu22-Jul-12 23:08 
AnswerRe: .net client, java soap web services , validation from soap headers Pin
Richard MacCutchan23-Jul-12 3:20
mveRichard MacCutchan23-Jul-12 3:20 
Questionsending data to script on web server Pin
Danzy8321-Jul-12 11:42
Danzy8321-Jul-12 11:42 
AnswerRe: sending data to script on web server Pin
Sandeep Mewara21-Jul-12 19:58
mveSandeep Mewara21-Jul-12 19:58 
AnswerRe: sending data to script on web server Pin
David Mujica23-Jul-12 2:22
David Mujica23-Jul-12 2:22 
GeneralRe: sending data to script on web server Pin
Danzy8323-Jul-12 4:34
Danzy8323-Jul-12 4:34 
GeneralRe: sending data to script on web server Pin
Andrei Straut23-Jul-12 9:04
Andrei Straut23-Jul-12 9:04 
GeneralRe: sending data to script on web server Pin
David Mujica23-Jul-12 11:05
David Mujica23-Jul-12 11:05 
AnswerRe: sending data to script on web server Pin
jkirkerx23-Jul-12 10:17
professionaljkirkerx23-Jul-12 10:17 
QuestionCGI in Java - Legacy but interesting (for educational purposes) Pin
ppign20-Jul-12 23:15
ppign20-Jul-12 23:15 
AnswerRe: CGI in Java - Legacy but interesting (for educational purposes) Pin
Trak4Net21-Jul-12 11:22
Trak4Net21-Jul-12 11:22 
QuestionContact me Web page Pin
flinchy319-Jul-12 4:51
flinchy319-Jul-12 4:51 
AnswerRe: Contact me Web page Pin
R. Giskard Reventlov19-Jul-12 5:38
R. Giskard Reventlov19-Jul-12 5:38 

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.