0
votes
0answers
17 views
Using SoapFormatter
Hi I need to serialize several fields of my class
class Foo
{
Guid value1;
decimal value2;
SomeCustomEnum value3;
}
Can I serialize all fields one by one:
MemoryStream ms = new …
0
votes
0answers
18 views
Integrating Fedex into your web application
I realize they have an API but some of
the questions I have wouldn't be
answered by it, and it would be great
to receive feedback from others who
have integrated it before.
I basically am …
0
votes
2answers
14 views
Signing SOAP messages using WSS4J
We need to sign a SOAP message with a certificate in Websphere 7. Currently we are looking at using WSS4J from Apache and are approaching this in the java code itself.
Does anyone have any …
1
vote
1answer
19 views
Sending form data to web service + call request
I am in the process of creating a system that sends specific user data to a web service. Basically, the user enters his name, telephone number and reference number. He then selects whether he is …
0
votes
2answers
27 views
Need Standard Approach to create a SOAP interface for a deployed REST service
We want to allow our enterprise of service providers to deploy REST or SOAP solutions. These services will become candidates as an "authoritative" service endpoint for a specific request made by a …
3
votes
4answers
43 views
How do you catch a thrown soap exception from a web service?
I throw a few soap exceptions in my web service successfully. I would like to catch the exceptions and access the string and ClientFaultCode that are called with the exception. Here is an example of …
2
votes
2answers
54 views
SOAP object over HTTP post in C# .NET
I am trying to compose a SOAP message(including header) in C# .NET to send to a URL using HTTP post. The URL I want to send it to is not a web-service, it just receives SOAP messages to eventually …
1
vote
1answer
31 views
What does this line in a WSDL file mean?
In a Magento forum someone wrote that removing this line from the WSDL file has a huge impact on the performance of the SOAP server:
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" …
1
vote
3answers
50 views
In-process SOAP service server for Java
OK, I am developing a program which will be deployed to lots of machines (Windows, Linux, AIX, z/Linux, openVMS, etc.). I want that application to contain a SOAP web service, but I don't want to …
0
votes
2answers
57 views
Which one is best for Iphone REST API or SOAP?
I am working on iPhone Applications. Recently i have used SOAP api to integrate with iPhone application. my main aspect of this particular query is whether SOAP is best or REST is best considering …
2
votes
1answer
49 views
Is implementing SOAP clients in Perl using meta-programming sensible?
I'm currently dealing with a code base which contains several dozens of classes generated with SOAP::WSDL. However, having worked with Moose I now think that generating those classes at runtime at …
2
votes
2answers
149 views
Calling functions with parameters using SOAP with Perl
I am attempting to access a web service using SOAP through Perl and am having issues calling the service's functions that require parameters. The XSD that dictates the SOAP call says,
…
1
vote
2answers
40 views
PHP SoapClient request
I'm trying to send a SOAP request to a newsletter service using this WSDL:
dev-service.go.mayoris.com/wcf/SubscriptionService.wsdl?wsdl
Here's my PHP:
$client = new SoapClient($wsdl_url, array(
…
0
votes
1answer
36 views
What are those “garbage” 16 bytes at the beginning of an unencrypted EncryptedData tag from an encrypted ws-security SOAP message? (WCF)
I'm inspecting a WCF request message in order to implement part of the WS-Security standard to have iPhone <-> WCF intercommunication (I'm using certificate security over basicHttpBinding).
After …
1
vote
2answers
54 views
Get Just the Body of a WCf Message
Hi all,
I'm having a bit of trouble with what should be a simple problem.
I have a service method that takes in a c# Message type and i want to just extract the body of that soap message and use it …
