I'm trying to consume a Third Party web service, through a wsdl file provided. I would load the file locally from a Spring-J2EE based project underneath WEB-INF folder.
The wsdl might have more than one operation exposed. So I need a way to be able to choose the method to be called. I would also need to make use of a JaxbMarshaller.
Ca...
Suppose given a URL, http://test.org/service.asmx
How can I use SOAP method in SQL Server to access the service?
...
Hello everyone,
I am designing a WCF interface which returns status of all orders (Order data structure includes two members, a string type ID and an enum orderstatus, and designed as DataContract), the total # of orders are very large, about 10M. I am concerning about the traffic and impact to server side if client calls this interface...
I am using a .net 2.0 client to create a proxy from a wsdl file. This wsdl has some types included from other xsd files.
When I create proxy, the types that are specified in xsd documents are created even though they are referenced with in the wsdl. I tried it some other clients like Soap UI, java. They all work fine. Is there a tweak t...
Google uses the XML/RSS/Atom-based Google Data APIs to provide programmatic access to its various services.
Because it is Google doing this, these API are becoming quite popular, as in: there are many client applications supporting it. Google even provides a lot of client libraries themselves.
It should be possible to use the APIs for ...
I have a (new) project and it has a web service reference. It has following structure:
<Folder: project folder>
<File: source file 1>
<File: source file 2>
<File: source file .>
Folder: Web References
Folder: MyService
File: Reference.map
File: Reference.cs
File: MyService.xsd
...
I am trying to call a web service from a BizTalk (2006) orchestration.
Having got the hang of the basics, I have been following this tutorial (page 74 onwards) in which i have a web reference to an external web service (I am using this web service instead of the one in the tutorial), I have my web message in a Send component, and have ...
I am using jax ws wsgen tool in maven2. I need to deploy the webservice on weblogic10.1
wsgen is not generating the webservice.xml , weblogic-webservices.xml.
Is there any way to generate these weblogic related artifacts using wsgen or by anyother tool by inuputting the wsdl.
...
Edit: Obviously my first question was not really easy to understand, I hope the answer is usefull :)
I have tried installing Axis2 on the Red5 server and everything went ok, I accessed the Red5 app properties from a custom Web Service using Red5's RTMPClient and exposed them through Axis2.
The problem is that doing it that way I have a...
Hi,
I haven't seen anything explicitly saying this can't be done, but I want to confirm...
We have a client who needs to consume a web service and they are still using .NET 1.1
I would love to use this as a reason to learn some WCF, I just want to make sure it's compatible..
from what I've read, it looks like I can host the WCF servi...
Questions on calling web services from iPhone?
Anyone have any recommended tutorials on doing this?
Anyone have any best practices on implementing security with these calls?
Has anyone made or seen any shared libraries or wrappers for easy web service calls from the iPhone?
...
I'm not sure I'm completely happy that throwing exceptions in web services is a good idea. I wouldnt mind as much if it wasn't for the stack trace. This is not something I wan't.
I have researched around several implementations and there really doesn't seem to be a consensus on this. CampaignMonitor for example does return a Result obj...
I have this web service... It serves up HTML in response to an AJAX request, and the web service needs to be aware of:
the user's specific language
the user's timezone or location
I understand that this is currently quite infeasible. BUT...
It seems that HTML 5 will have a Geolocation API! Awesome. This should take care of my timez...
What is the best way to inspect the calls & responses from a web service in .NET?
I'm interacting with a Web Service written in Perl and running into issues.
How can I capture the text of the call and response?
UPDATE:
Based on comment to clarify:
I'd like to do it via .NET so I can log it or email it when an issue arises.
...
I have a SoapExtension that is intended to log all SOAP requests and responses. It works just fine for calls from an application using the MS Soap Toolkit (OnBase Workflow). But it doesn't work for calls made by $.ajax() on an html page. Here's an example:
$.ajax({
type: "POST",
url: url,
data: data,
contentType: "app...
This is something that's been bugging me for many years: why most online services highly value the entropy of a password, citing it as a security measure, and enforcing it when users select a password?
I decided to come out with this question after reading the paper "Do Strong Web Passwords Accomplish Anything?" (and, of course, classic...
I've got a Silverlight application which uses a built-in .ASMX WebService to access a SQL database and run some queries. Everything runs without any hitches on my Development machine.
I'm trying to deploy the application to IIS 6 and I'm having some issues.
The Silverlight application itself seems to run fine, however the Web Service...
I have a grails application that will be rendering an html page into a pdf file and I have a flex application sitting on a server that is going to accept REST parameters and construct a graph based on the parameters (which will be formatted in JSON). What I want to do is make a call to the flex app with my parameters and have the flex ap...
Hi,
I've created a linked list class in my JavaScript code and then translated that code into C#.
Right now I have a JavaScript function that calls a Web Service in order to get an array of names, the JavaScript onComplete function then takes that array and makes it into a linked list.
Is there any way I can create the linked list i...
Is there a web service or a tool to detect if what a certain text is the name or a person, a place or an object (device).
eg:
Input: Bill Clinton Output: Person
Input: Blackberry Output: Device
Input: New york Output: Place
Accuracy can be low. I have looked at opencyc but I couldnt get it to work. Is there a way I can ...