soap

Jira Soap with a Php

試著忘記壹切 提交于 2019-12-30 11:34:09
问题 I have seen little to know instruction on using php to develop a client website to make remote calls to JiRA. Currently I'm trying to make a soap client using JSP/Java to connect to a local jira instance. I would like to create and search issues that is all. We are currently having some problems using Maven2 and getting all the files we need from the repository since we are behind a major firewall(yes I've used the proxy). I have a lot of experience with PHP and would like to know if using

Node-soap: How to create a complex message with specific attributes?

浪子不回头ぞ 提交于 2019-12-30 11:29:13
问题 This is the message I need to send to wsdl : <?xml version="1.0" encoding="UTF-8" ?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://WSDLPROVIDER" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <ns1:enqueue> <domain xsi:type="xsd:string">STH</domain>

Using SOAP to generate XML attributes in PHP

妖精的绣舞 提交于 2019-12-30 10:05:00
问题 I found you can generate this in SOAP in php: <foo bar="blah">12345</foo> With this: array("foo" => array("_" => 12345, "bar" => "blah")); However, the underscore method does not seem to work when the value is not a number and string, but instead embedded xml code . How would you do this for instance? <foo bar="blah"> <aaa a="b">blah</aaa> </foo> This is an extension of this person's question: http://www.bigresource.com/Tracker/Track-php-uQwDoUib/ 回答1: I don't have a quick way of testing, but

How to post a SOAP request from a browser?

不羁的心 提交于 2019-12-30 09:23:31
问题 Is it possible to send a SOAP request directly from a browser to service provider? And then parse the output in javascript to show the result? For example, if I've a SOAP request like this : POST /InStock HTTP/1.1 Host: www.example.org Content-Type: application/soap+xml; charset=utf-8 Content-Length: nnn <?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> <soap:Body xmlns:m="http://www.example

How do you change the SOAP Envelope schema in WCF?

微笑、不失礼 提交于 2019-12-30 08:20:09
问题 I am connecting to a third-party end point via WCF and I have one problem. The schema for the SOAP envelope that is generated by WCF isn't compatible with the end point. Currently WCF is generating this: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"> But it needs to be this: <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:a="http://www.w3.org/2005/08/addressing"> I've tested this in soapUI to confirm this is

WCF service returns 404 over https but not http

丶灬走出姿态 提交于 2019-12-30 08:07:11
问题 I'm migrating an existing service from HTTP (Dev/UAT) to HTTPS (Production), and I'm having trouble with the configuration. Here is the system.serviceModel section of my web.config: <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name=""> <serviceMetadata httpGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="true" /> </behavior> </serviceBehaviors> </behaviors> <serviceHostingEnvironment multipleSiteBindingsEnabled="false" /> <services> <service name="MyService

Creating XSLT transform to flatten multiRef encoded SOAP message

懵懂的女人 提交于 2019-12-30 07:39:51
问题 Input is a mutliRef encoded SOAP message/document. How do you use XSLT to flatten multiRefs. Multiref nodes can be referenced used multiple times, and themselves recursively reference other multiRef nodes. The only pieces of the structure that are safe to refer to, are multiRef elements and @id and @href attributes. Other elements or namespaces could change. Sample input message is: <?xml version="1.0" encoding="utf-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap

how to call web services using soap in php

梦想与她 提交于 2019-12-30 07:07:20
问题 The following is a sample SOAP 1.1 request and response.: POST /atservices/1.5/atws.asmx HTTP/1.1 Host: webservices2.autotask.net Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://autotask.net/ATWS/v1_5/getZoneInfo" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <getZoneInfo xmlns="http:/

Could not establish secure channel for SSL/TLS for SOAP call

余生长醉 提交于 2019-12-30 06:06:49
问题 Our core server is calling out to a soap web service over https on a number of different servers to confirm that a transaction has completed. The code is dotnet 3.5 (vb) and works for the various callback services we have set up until we just moved a new one into production and it is refusing to communicate, giving the following error: Unhandled Exception: System.ServiceModel.Security.SecurityNegotiationException: Could not establish secure channel for SSL/TLS with authority 'www.xyzzy.com'.

Could not establish secure channel for SSL/TLS for SOAP call

為{幸葍}努か 提交于 2019-12-30 06:06:31
问题 Our core server is calling out to a soap web service over https on a number of different servers to confirm that a transaction has completed. The code is dotnet 3.5 (vb) and works for the various callback services we have set up until we just moved a new one into production and it is refusing to communicate, giving the following error: Unhandled Exception: System.ServiceModel.Security.SecurityNegotiationException: Could not establish secure channel for SSL/TLS with authority 'www.xyzzy.com'.