I would like to add a namespace prefix to the XML root node and I found an entry by Scott Hanselman which details exactly what I would like to achieve. The only problem being the implementation is missing !
Modifying the namespace PREFIX of the root node of the body of a SOAP Web Services Response....whew!
It would be of great help i...
Seeing something strange between a Java web service and the .NET client talking to it. We are sending an object back and forth with a DateTime property on it. Sort of like this (generated from the WSDL):
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")]
[System.SerializableAttribute()]
[System.Diagnostics.Debugg...
Currently inside my organization we are trying to come up w/ some conventions for a pilot SOA project. At first glance we thought it would be best to force users of the service to use the business service w/out direct access to any data endpoints .. but are there specific scenarios where this is not true or it might be "valid" for devel...
I'm trying to consume the standard SharePoint web service GetWeb in the code-behind of an InfoPath form. The form is hosted as part of a workflow, so loaded inside the browser with Forms Services. It therefore runs on the credentials of the current user logged into SharePoint. The web service runs if the user is in the Owner group of the...
I am retro-fitting an application to make use of a PHP HTTP proxy (for caching) instead of the actual API server, the application currently combines the server URI and the path with the code:
methodUri = new Uri(apiUri, method.Path)
Where:
apiUri = "http://api.eve-online.com/" (System.Uri Object)
method.Path = "/char/SkillIntraining...
I have some Web Service Questions.
I work with VS2005, and I need to build a web service.
Can I copy/move/delete files or folders from a web service?
Can I can make (or use) an SDF Database file from a web service?
thank's in advance
...
I am considering using ADO.Net Data Services in a project for the purpose of getting data over to a Silverlight client. I'd like to use the Data Services with my existing Linq To Sql classes and designer. I probably could regenerate everything as ADO.Net entity objects, but I feel this would be a bad design for DRY reasons.
I'm new to...
I want to implement a web-service that uses the same interface as the Lists web service in sharepoint. I do not want to run this through sharepoint. What is a good way to get started in this?
I have tried to use the wsdl.exe tool to generate some wrapper classes but the generated wrappers seem to have punted on the structure parameters ...
Hi guys,
I have a .net based asmx service and I trying to find out details on the clients that are currently using it.
Just wondering what is the best way to gather the information on things like the IP address of the client, the URL that is using my service and so on.
Cheers
...
I need to know how the a .net web service authenticates a request from a client that is using a certificate. I know that the client will have to attach their certificate to the service proxy before they make a request, but I dont know how to check that the correct computer is contacting us.
This needs to be implemented in a shared hosti...
Hi,
Does anyone know of a web service where I can get price feeds and charts for the FTSE 100 and DOW Jones index?
I only need a delayed price feed not a real-time one.
It is for display on a public website so I assume we'll need a provider that we can pay to license the information?
Thanks,
Chris
...
On our local dev server, the web services we created list both SOAP and HTTP Post options. However on the production server only SOAP is being listed.
Is there some explicit setting that needs to be made for remote servers to enable HTTP Post? I had thought it was on by default unless you explicitly turned it off.
This is ASP.NET 2.0...
I need to access a third party application that requires a JKS Certificate (which I have).
My client application is an ASP.NET one. How do I go about this?
(I would have liked to provide more information, but unfortunately I have none!)
...
Hi,
I've got a rendering extension for reporting services which uses the ReportExecution2005.asmx service to execute a number of "subreports" and then puts the results in a powerpoint presentation.
A typical usage scenario would be to go to the Report Manager, select my "Powerpoint" report, which is used only as a placeholder for param...
I'm doing a web application that utilizes an external web service. This external web service requires me to sign each of my requests. So I'm using WebServicesClientProtocol class and .NET 2.0 by first consuming the external web service and then manually edit the Reference.cs file and change the extended class from System.Web.Services.Pro...
We are defining a new application interface using the paradigm of web services and axis as web services implementation.
We hesitate to use beans or basic xml soap messages. We believe that beans can have compatibility problems if at the other side of the call there is no interface axis.
Has anyone used axis with beans and receive calls f...
C# .NET 2.0 if that turns out to be applicable.
I'm going to start to get to the bottom of why a web service we have is acting slow - this web service jumps over a proxy, into another domain, queries a stored procedure for some data, and then returns a int/string/dataset, depending on what I asked for. I just wrote a console app that qu...
I have a resource at a URL that both humans and machines should be able to read:
http://example.com/foo-collection/foo001
What is the best way to distinguish between human browsers and machines, and return either HTML or a domain-specific XML response?
(1) The Accept type field in the request?
(2) An additional bit of URL? eg:
http...
I've been doing a lot of studying and work recently related to WCF, web services and distributed computing in general, but most of the security concepts go over my head. Transport security, message security, encryption, certificates, etc. I understand the basics of symmetric and asymmetric encryption, but I don't really understand the re...
I do most of my work with Microsoft technologies these days, so naturally I'm checking out what WCF has to offer. It seems very flexible and a great next step up from .Net remoting, but it seems very tied to SOAP messages and quite a bit clunky for a platform agnostic web service app. I'm not an expert on the technology, but I imagine ...