3
votes
2answers
65 views
Persisting web service passwords
I'm not a security guy so any help on this would be greatly appreciated.
I have a large number of third-party field devices that have remote methods that can be called across xml- …
1
vote
2answers
81 views
deserialize the XML Document — Need Help
I am using the below code snippet now to deserialize the XML document ...
[WebMethod]
public XmlDocument OrderDocument(XmlDocument xmlDoc)
{
XmlSerializer serializer = new Xml …
0
votes
2answers
22 views
IIS 6.0 hangs when serving a web-service
Hi guys
I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a seperate application or using cassini from Visual s …
0
votes
3answers
46 views
Calls to webservice are slow, should i be using something else?
Hi,
Currently we got a web service up and running that handles all our C.R.U.D calls to our database, and pretty much every interaction between user and the database.
(starting wi …
0
votes
2answers
105 views
Asynchronous Web Service Design Patterns
When writing a Silverlight app hooked up to a WCF Web Service, the only option we are presented with in using the Web Service is to make asynchronous calls to the WS interface.
i. …
0
votes
1answer
16 views
The name/identity of the invoker of a web service
I have a SOAP web service which I call from two clients using axis2. Can the web service know from which of these two clients the call originated from? If so, how do I know that du …
1
vote
2answers
105 views
Passing Entity on ASP.NET Web Service
This might be very easy, but What I am trying to do here is, I am trying to pass a Customer Object to a Web Service Method. Customer class is on Entity namespace and it is serializ …
2
votes
2answers
63 views
How do you detect when the connection breaks when a web service is returning a result?
In a C# ASP .NET application I have a web service that receives a DataSet, processes it, and returns it.
Returning it can take up to a minute over a slow connection. What happens …
0
votes
1answer
15 views
What is reponse.d when returning data from a WCF Service with ContentType of “application/json”?
I have a WCF service that has webHttpBinding and has enableWebScript turned on in it's endpoint behavior configuration.
The response from the service looks something like this
H …
5
votes
5answers
125 views
Understanding AJAX.
Having been primarily a server-side programmer(ASP.NET WebForms) I'm trying to get my mind wrapped around AJAX outside of the "catch-all" approach of using UpdatePanels in the Micr …
0
votes
4answers
93 views
How do I access the properties of a JSON Serialized object.
In my JavaScript I want to access the properties of a JSON serialzied object that was produced via a .NET web service. How do I deserialize the JSON data into an object that I can …
0
votes
2answers
54 views
Python Decorator for GAE Web-Service Security Check
In this post, Nick suggested a decoartor:
http://stackoverflow.com/questions/1499832/python-webapp-google-app-engine-testing-for-user-pass-in-the-headers/1500047#1500047
I'm wri …
0
votes
0answers
77 views
SSRS call web service and pass multi values array
I have a web service I need to call which is expecting a string Array. I'm using the standard VS SSRS and am having troubles setting up the Data Source in my project. I've setup Da …
1
vote
3answers
266 views
SOAP servers and clients with Zend framework (Getting errors)
I am testing a server and client i made on my webspace.
when i try to call a simple "testServer" function defined in a ServerMap class, I get
"Looks like we got no XML document"
…
0
votes
3answers
399 views
Catch Custom Exception from ASMX Web Service
I have a web service in which I have created a custom exception. Let's say the name of this exception is InvalidContractException.
What I would like to do is if a specific step …
