soap

XSD schema, SOAP, REST and a MESS!

I think this person hit on my problem Link I have a schema and a pdf that has something like the below I have NO WSDL file. Absolutely none, i do have a large schema (apiName.xsd). It seems like i need to do something with it but i have no clue what. <xs:element name="CheckDomain"> <xs:complexType> <xs:sequence> <xs:element name="d...

convert xsd to WSDL?

I am very confused how i am suppose to send data to a server. I have a .xsd file and i only realized 1 hour ago (and did research) that the schema is actually describing the XML data i am suppose to send. But i have NO idea how i am suppose to generate a XML from it. I dont think i am suppose to go through it by hand? I never used a WSDL...

PayPal SOAP and NVP

Hi, I am new to PayPal and i want to know which is batter way to implement PayPal, SOAP or NVP API. And what is the major difference between these two??? ...

"Method xxx can not be reflected" error in webservice call

Before obfuscation, the call to the webservice works like a charm. After obfuscation i get this error. Method obfuscatedText.GetStringFromWebService can not be reflected. There was an error reflecting ". What could i do? Why do i get this error after obfuscation? ...

File Attachements with PHP5 SOAP

I'm writing some code to talk to a web service via WSDL-SOAP. I'm using php5's native soap implementation. So far so good. However I now need to download files as "attachments" over soap. The interwebs is mysteriously silent on how to do this. Surely its possible or the PHP docs would mention it as a limitation ? :\ I did this a few yea...

Web-services granularity with SAP project ?

In a project that comes as a third-app on top of SAP to extent its functionality thru SOAP web-services, I am wondering how should be defined the web-services themselves ; should we implement dozen of web-services that achieve simple & atomic actions, or very few web-services that takes a bunch of parameters and does all the thing. I am...

Use gSOAP for VS 2003/C++ access to SOAP Web Service with WS-Security?

We have an upcoming project to allow an old platform that's only extensible with C++ / VS 2003 to call a SOAP-based web service that uses WS-Security. My Google research indicates that gSOAP could be the best way to go. I'm looking for validation and/or alternative suggestions. ...

Does a Python 3 SOAP client module exist?

I couldn't find one that works with Python 3.1. Any suggestions for a WSDL-consuming Python 3 SOAP client module/library? ...

Are SAP's BAPI APIs propritary, or just a wrapper for something else?

So, I've just been dumped into the middle of a project involving SAP. Specifically, I need to use SAPs BAPI APIs to pull a bunch of information out of "The Client's" SAP system. Given that SAP is a closed platform, I've been having trouble finding a high level overview of the who/what/where/when/how of SAP and BAPI. Specifically Is B...

How to implement SOAP?

I have to implement SOAP via HTTP, using C#. Do you know any good documents, and sample code to help? ...

Is there some way to determine the client to my HTTP SOAP API currently?

I know that user agent can be faked easily when connecting through HTTP. I want to ensure access to my SOAP API only from iPhone devices. We don't know how many users will be using this when it is released but it might be a lot and we can't handle traffic from outside of the devices. Any other means to prevent this? ...

A minimalist, non-enterprisey approach for a SOAP server in Python

I need to implement a small test utility which consumes extremely simple SOAP XML (HTTP POST) messages. This is a protocol which I have to support, and it's not my design decision to use SOAP (just trying to prevent those "why do you use protocol X?" answers) I'd like to use stuff that's already in the basic python 2.6.x installation. ...

How do I tell Ruby's OpenSSL library to ignore a self-signed certificate error?

I'm trying to use Ruby's SOAP support as follows: SERVICE_URL = 'https://...' ... def create_driver ::SOAP::WSDLDriverFactory.new(SERVICE_URL).create_rpc_driver driver.options['protocol.http.ssl_config.verify_mode'] = OpenSSL::SSL::VERIFY_NONE driver.options['protocol.http.ssl_config.client_cert'] = @certificate_path driver en...

Using a SOAP 1.1 web service from .NET 3.5

It appears that .NET 3.5 is enforcing the SOAP 1.2 schema when dealing with web services, even if the service specifies SOAP 1.1 in the schema for the SOAP envelope. Is there a setting to for the service reference to recognize SOAP 1.1? EDIT: The issue is the formatting of SOAP Faults returned from the web service to the .NET 3.5 clien...

.NET 3.5 - Relax the strictness on Xml returned from a Web Service

I'm calling a SOAP 1.1 web service that I don't own and it's not strict about returning valid Xml. Specifically, when sending SOAP faults it's ignoring the order of sub-elements that are specified in the for the SOAP schema. The result is that when I call the service and it returns a SOAP fault I end up with a CommunicationException a...

Infopath 2007 and WCF Data Connection

I am having trouble trying to connect an Infopath 2007 form to an WCF web service. I appears that the Infopath only wants to communicate via a SOAP 1.0 message. To get around the issue for the moment I have created an .asmx web service. Should I consider continuing down this workaround or figure out a way to get WCF to dish out SOAP 1...

SOAP Message Expiration

How to use time-stamp in SOAP Header to implement Message Expiration? Note: Using .NET 2.0, so ASMX Services and NO WCF. ...

.NET VB webservice - sending soap response

I am attempting to send a soap response from a web service I have created. At the moment the response I'm sending is standard XML. How can I change this to respond in soap in this format: - <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:uiew="http://HSteindotnet.restrac.com/UIEWebServices/"&gt; <s...

SOAP and Spring

Hi guys, I've just finished reading about SOAP via Spring-WS in "Spring in Action", 2nd edition, by Craig Walls from Manning Publications Co. They write about Contract First, much like the Spring docs, with making a message and method XML and then transforming that to XSD and then again to WSDL, while wiring up the marshalling and servi...

How to deploy an Axis-generated soap service to an embedded Tomcat instance

Hey All, I generated a Soap Service from a WSDL and now I need to deploy it to my existing application which uses embedded tomcat (I.E. I have a class which extends TomcatServeletContainer and a main class which instantiates that class and starts the server). I see many examples for how to deploy an axis service to a standalone tomcat ...