web-services

JBOSS: Invalid algorithm http://www.w3.org/TR/2001/REC-xml-c14n-20010315 (InclusiveC14N)

丶灬走出姿态 提交于 2020-01-26 02:04:05
问题 I am using JBOSS EAP 6.3.1 - I am not allowed to use wildfly in production. CXF Version 2.7.11 I am trying to build a secure token service, which can handle a RequestSecurityToken request, while using a X509 certificate for authentication. Example Request from a third party application - sadly can not be changed: <SOAPENV:Envelope xmlns:SOAPENV='http://schemas.xmlsoap.org/soap/envelope/'> <SOAPENV:Header> <wsse:Security xmlns:wsse='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss

Sending SOAP request to a specific service

偶尔善良 提交于 2020-01-25 21:40:53
问题 Okay, so I'm totally new to webservices and for a project I'm working on I'm trying to wrap my head around the whole SOAP thing. I think I have a vague understanding of what is going on, but I'm missing some specific information and I simply can't find anything helpful by googling. I've read the questions others asked like this one SOAP request to WebService with java but I still can't fully figure out what is going on. Specifically I'm trying to use the service provided here http://ec.europa

iOS App Transport Security issue

时光总嘲笑我的痴心妄想 提交于 2020-01-25 20:32:51
问题 TL; DR: I have an iOS app connecting to a webservice that does not meet the minimum requirements for the new ATS feature. I have modified my Info.plist to allow an exception so my app can still connect to the webservice. (NSURLSession/NSURLConnection HTTP load failed on iOS 9 ) This works correctly in development, however, the update I just pushed to the store still fails to hit the webservice. I don't know where the disconnect is happening or how to fix this. === First off, this is all

iOS App Transport Security issue

倾然丶 夕夏残阳落幕 提交于 2020-01-25 20:32:12
问题 TL; DR: I have an iOS app connecting to a webservice that does not meet the minimum requirements for the new ATS feature. I have modified my Info.plist to allow an exception so my app can still connect to the webservice. (NSURLSession/NSURLConnection HTTP load failed on iOS 9 ) This works correctly in development, however, the update I just pushed to the store still fails to hit the webservice. I don't know where the disconnect is happening or how to fix this. === First off, this is all

iOS App Transport Security issue

人走茶凉 提交于 2020-01-25 20:32:07
问题 TL; DR: I have an iOS app connecting to a webservice that does not meet the minimum requirements for the new ATS feature. I have modified my Info.plist to allow an exception so my app can still connect to the webservice. (NSURLSession/NSURLConnection HTTP load failed on iOS 9 ) This works correctly in development, however, the update I just pushed to the store still fails to hit the webservice. I don't know where the disconnect is happening or how to fix this. === First off, this is all

Spring WS client set cookie for authentication

帅比萌擦擦* 提交于 2020-01-25 18:40:10
问题 In order to consume a RPC web service, first I have to call a web method 'Authentication' and then I am supposed to be able to call other web methods. I have tried to implement a spring web client to consume this service but something is going terribly wrong. This service was originally designed for php users and the sample client code they provided is as following: $soap = new SoapClient('http://www.2972.ir/wsdl?XML'); if ($soap->Authentication('user', '123456')) { echo $soap->getCredit(); }

OData call with $filter and $expand simultaneously

Deadly 提交于 2020-01-25 18:03:43
问题 I've been trying to call a entity, but i'm supposed to call the results from its associated entities. I tried to do it with the following URL: /sap/opu/odata/XXXXXXXX/SERVICE_NAME/MatnrGetdetailCollection?$filter=IVendorId eq '1701' and ILanguage eq 'P' and IMaterial eq 'M-05'&$expand=MatnrClassGetdetail I must use the filter because the called function has these mandatory parameters. Am I making any mistake on the URL or the error isn't there? 回答1: In general $filter and $expand can be

OData call with $filter and $expand simultaneously

…衆ロ難τιáo~ 提交于 2020-01-25 18:02:57
问题 I've been trying to call a entity, but i'm supposed to call the results from its associated entities. I tried to do it with the following URL: /sap/opu/odata/XXXXXXXX/SERVICE_NAME/MatnrGetdetailCollection?$filter=IVendorId eq '1701' and ILanguage eq 'P' and IMaterial eq 'M-05'&$expand=MatnrClassGetdetail I must use the filter because the called function has these mandatory parameters. Am I making any mistake on the URL or the error isn't there? 回答1: In general $filter and $expand can be

Managing web services in FlexBuilder - How does the manager work?

末鹿安然 提交于 2020-01-25 13:00:13
问题 In FlexBuilder 3, there are two items under the 'Data' menu to import and manage web services. After importing a webservice, I can update it with the manage option. However, the webservices seems to disappear after they are imported. The manager does however recognize that a certain WSDL URL was imported and refuses to do anything with it. How does the manager know this, and how can I make it refresh a certain WSDL URL? 回答1: In your src folder of the flexbuilder project you should see the

Web Service Client - Construction Failing Due To Timeout (Proxy Issue)

纵饮孤独 提交于 2020-01-25 11:43:05
问题 I have a webservice in Java 1.6 that extends javax.xml.ws.Service . The WSDL URL is located at an HTTPS endpoint and I am behind a corporate proxy (NTLM I believe). I have the proxy host, port, username, and password. I have verified that I can access the WSDL using curl if I specify the proxy in my .curlrc file. When the constructor is called it will eventually timeout with the error: javax.xml.ws.WebServiceException: Failed to access the WSDL at: https://www.blah.com/myservice.asmx?wsdl. It