0
votes
0answers
7 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
16 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 …
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 …
1
vote
2answers
53 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 …
0
votes
2answers
13 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 …
0
votes
1answer
127 views
wsdl importer generates faulty server
Hi,
I've been trying to get a soap server up that implements (is that the correct term?) a wsdl specification made by a third party. I have used Delphi's wsdl importer. (Part of) the generated code …
0
votes
2answers
105 views
struggling with XML namespaces (linq)… what am I doing wrong here?
Hi,
Trying to parse some XML but apparently this is too much for a lazy sunday afternoon,
this is my code: (I Tried the XPathDocument and XmlDocument approach too but this also failed miserably)
…
7
votes
13answers
1k views
Example Web Service
When I wanted to learn SOAP I looked around for tutorials. There are plenty out there, and they all say that they've created an example web service that you can use to test your "My First SOAP …
0
votes
2answers
252 views
Generic SOAP Debugging Tools
When you're programming against a SOAP Service, what tools do you use to explore/poke-at the API? I realize that Visual Studio/Eclipse likely have some sort of client built in (and please, do talk …
0
votes
1answer
78 views
Web Services with Netbeans
After having done a web service with netbeans and having tested it. What is it that I should upload to the server so I can use it? I have been going around tutorials but none (of the ones I've found) …
0
votes
2answers
24 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 …
0
votes
1answer
51 views
Getting destination URL in BeforeSendRequest
I'm writing a BeforeSendRequest routine to log outbound SOAP messages, and I would also like to log the destination URL. I've looked in the request and channel objects, with no luck. …
1
vote
1answer
30 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/" …
3
votes
4answers
42 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 …
0
votes
1answer
73 views
Detecting missing responses to long running HTTP (SOAP) requests
I need a way to detect a missing response to a long running HTTP POST request. This problem arises when the network infrastructure (firewalls, proxies, unplugged cables, etc.) drops the response …
