473,698 Members | 2,574 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SOAP Client

cj
Simple Object Access Protocol is new to me. Can anyone point me to a
simple soap example? I found something on MS site but they don't tell
me what namespace to include for dim SOAPClient = New SOAPClient to work
for example.
Feb 28 '06 #1
7 2351
cj,

Do you real need Soap or do you need to make a webservice?

Which is much easier to create with Visual Studio Net than doing everything
yourself.

By the way, I thought that you said that you would go to bath on wensday not
on tuesday.

Cor
Feb 28 '06 #2
cj
I think I need soap. I need to pass an xml file/string to a Validation
Over Internet (VOI) server. The documentation they gave me says, "Using
an XML-based application with SOAP technology, you can process
transactions from any computer running a client application with
Internet access. To use our service, you must create your own
client-side application to interface with our VOI server. YOu may write
your client applications in languages such as Java, Visual Basic, Perl,
C/C++, and the like. The client application must submit requests using
HTTPS."

I don't know what a webservice is but SOAP and webservices seem
connected in the info I've found searching the Internet. I'd guess SOAP
is required, but I'd like to hear your input.

The folks I'm connecting to are not really into Microsoft development
environments. They work in Java and non-MS C++ on Linux I think. I can
kinda read C++ but given I'm still new to all this I'm easily confused.

I kinda figured my bath tomorrow at 11:00 will be much more enjoyable if
I have some SOAP with me at that time. :)
Cor Ligthert [MVP] wrote:
cj,

Do you real need Soap or do you need to make a webservice?

Which is much easier to create with Visual Studio Net than doing everything
yourself.

By the way, I thought that you said that you would go to bath on wensday not
on tuesday.

Cor

Feb 28 '06 #3
CJ,

It would be clever if I would help you with SOAP.
The last time I have looked at it was more than 3 years ago.

I would try it in the newsgroup

Microsoft.publi c.dotnet.langua ges.framework.w ebservices.

If you crosspost it to this one (one message to more newsgroup) we can see
what happens than

Cor
Feb 28 '06 #4
cj
Cross posting sounds great but how would I do that? I don't mean to
sound stupid but... I'm picking up and sending these messages with
Thunderbird's news reader.

Cor Ligthert [MVP] wrote:
CJ,

It would be clever if I would help you with SOAP.
The last time I have looked at it was more than 3 years ago.

I would try it in the newsgroup

Microsoft.publi c.dotnet.langua ges.framework.w ebservices.

If you crosspost it to this one (one message to more newsgroup) we can see
what happens than

Cor

Feb 28 '06 #5
cj
I just looked and don't see
Microsoft.publi c.dotnet.langua ges.framework.w ebservices

I see
Microsoft.publi c.dotnet.framew ork.webservices .enhancements
&
Microsoft.publi c.dotnet.langua ges but no framework under it.
Cor Ligthert [MVP] wrote:
CJ,

It would be clever if I would help you with SOAP.
The last time I have looked at it was more than 3 years ago.

I would try it in the newsgroup

Microsoft.publi c.dotnet.langua ges.framework.w ebservices.

If you crosspost it to this one (one message to more newsgroup) we can see
what happens than

Cor

Feb 28 '06 #6
Hello,

Microsoft.publi c.dotnet.framew ork.webservices is the right place for a SOAP
or web service problem.

I am not sure the Validation Over Internet (VOI) server is a web service
server and what XML data it required. You may need to consult them for
details before you make the final solution. With VS.NET, we can easily
create a web service client which consume a remote web service. So your
question may be, is the functions on VOI public as a web service, and can I
consume them in a VS.NET application.

Hope this help,

Luke Zhang
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Mar 1 '06 #7
cj,

Try this link

news://msnews.microsoft.com/microsof...rk.webservices

I hope this helps,

Cor

"cj" <cj@nospam.nosp am> schreef in bericht
news:eN******** ******@TK2MSFTN GP09.phx.gbl...
I just looked and don't see
Microsoft.publ ic.dotnet.langu ages.framework. webservices

I see
Microsoft.publi c.dotnet.framew ork.webservices .enhancements
&
Microsoft.publi c.dotnet.langua ges but no framework under it.
Cor Ligthert [MVP] wrote:
CJ,

It would be clever if I would help you with SOAP.
The last time I have looked at it was more than 3 years ago.

I would try it in the newsgroup

Microsoft.publi c.dotnet.langua ges.framework.w ebservices.

If you crosspost it to this one (one message to more newsgroup) we can
see what happens than

Cor

Mar 1 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
4667
by: Daniel Thune, MCSE | last post by:
I am having a problem with formatting a SOAP Header in a .Net client. The client calls a Java Axis 1.1 based web service. In order to authenticate the caller, the web service call is intercepted by another web service that validates a security token in the header. I have pasted my current SOAP message that my code sends as captured from a trace function that I added. Below that is a sample SOAP message that the developer of the web...
0
4357
by: Matt Wood | last post by:
Hi, I have written a Web Service for a customer which expects a SOAP message with Document/Literal encoding, and uses RoutingStyle=SoapServiceRoutingStyle.RequestElement to route the SOAP body message to my Web Method. The Web Method expects a string as its parameter and then feeds that string to an XML deserializer which maps the XML elements contained within the string to my custom objects, then performs an insert/update on an SQL...
3
7723
by: Sydney | last post by:
Hi, I am trying to construct a WSE 2.0 security SOAP request in VBScript on an HTML page to send off to a webservice. I think I've almost got it but I'm having an issue generating the nonce value for the UserName token. Is it possilbe at all to do this from VBScript (or jscript?)? I know I will be limited with what I can do with the SOAP message. Eg/ can't sign/encrypt it etc. Thanks,
0
5603
by: info | last post by:
Dear all, is the first time that I use SOAP, and i must say that i'm having several problems. this is SOAP message that expects the server =================XML EXPECTED FROM THE SERVER================ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
1
5982
by: libsfan01 | last post by:
Hi all Can anyone explain the relationship between SOAP and XMLHttpRequest in Javascript? What actually is SOAP? and how does it relate to the process of transferring data client-side through the aforementioned method?
0
2201
by: Grzegorz Smith | last post by:
Hi All. I 'm learning ZSI to use SOAP and I desperately need help. I'm working on example from tutorial -(examples/server/send_response/ simple/wsdl/). Here are my wsdl files -http://pastebin.com/873488. I made wsdl2py wsdl2py --complexType --file=binding.wsdl and get Example_services.py and Example_Services_types.py. Here is the Example_services.py -http://pastebin.com/873492 and Example_Services_types.py -http://pastebin.com/873494 Now...
2
6762
by: furrypop | last post by:
Hi, I'm trying to get the Perl SOAP::Lite examples to work on a Windows PC, running Apache 2.2.4. Apache is definitely serving CGI scripts, as I've tested a dummy Hello World thing. I'm also definitely getting a hit when I use a browser to get to my hibye.cgi server (well, a blank page rather than a 404). However, when I run my hibye.pl client, I receive a 503 Service Unavailable at H:\scripts\hibye.pl line 25. It works when I...
1
8282
by: parimalb | last post by:
Hi All, I want to pass an array argument to the java webservice from perl client using SOAP::LITE package. Please let me know if anyone knows about this. The web method declaration in java is like this publishSimpleMetric(Arraylist<String> appinfo,Arraylist<String> metricinfo,String seperator); Now i tried to call the web service from perl client as follows ...
4
12045
by: gcharbon | last post by:
Hi community, I have a problem with a Soap client written in php. I have a local server (coded in c and a client in c too, it works fine), but i want to test client in php, and i have an error (I'm not sure to understand it...) : SoapFault exception: Method 'ns1:getMetadataRequest' not implemented: method name or namespace not recognized in beta_2/soap.php:26 Stack trace: #0 /root/src/rxtxws/beta_2/soap.php(26):...
0
2248
by: vigneshrao | last post by:
Hi, I have been working on a script that loops through multiple records and sends data (one record per call) to a WS. I am supposed to make a new call for each record before sending the data. The problem I have is the first record gets processed fine where as the second record always; reason being the EAI expects it to be a seperate call Though I am creating/reseting a new service everytime within the foreach loop the data seems to be...
0
8683
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8610
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9031
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8902
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8873
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6528
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5862
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4623
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.