Hello!
I'm seeing a very strange issue on our live platform that consists of four
webserver Windows Server 2003 boxes sitting in a cluster behind an ISA server
cluster. They are all running IIS 6. We have the need for webservice
requests to be made from a .Net 2.0 webapp to the outside world so we have
utilised the 'defaultProxy' ...
I wrote a simple ASP.NET WebService Precompiled it and hosted it in a virtual directory.
Webservice code:
namespace Test.Services
{
/// <summary>
/// Summary description for AgentService
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[...
HI,
I am having a webservice running successfully on JBoss App Server. However, when I try deploying the webservice example on Weblogic 10.0 MP1 after making the necessary changes I get the message that "No business interface, component interface or web service endpoint interface found for Session Bean". In the generated EAR file there ...
Is there anyone having some source code in Java for accessing d.3's web services ? I got come C# code which is actually unusable since it runs inside some d.3 package and on their website there is no support for developers. Since they use WSDL I am sure I can connect to services, just need some java example not to search by myself.
...
I am very new to web service stuff so please be kind.
I have written a simple POJO class, and deployed it on an axis2 server:
public class Database {
private Project project;
public void login(){
project = new Project();
project.setDescription("Hello there");
project.setName("To me");
}
public Project ...
Let me preface this (Because I know I'll get this eventually in the responses)
Yes I know about WCF, but we are not using that or plan to right now (boss won't budge)
Ok, so my questions are the following. First I want to move some of our .asmx into a separate project. Right now it's in several scattered folders in our WAP project....
I have a number of different webservices in the C# web application I'm building and would like to create a quick documentation page which lists all of the webservices and the available web methods in each. Rather than having to keep the documentation page up-to-date whenever I change/add a webmethod it would be good if the documentation ...
I'm running CF8 and trying to use the web-services of Sharepoint WSS 3.0. I have not been able to authenticate due to the use of NTLM of the Sharepoint side.
I read that if you save the WSDL on the CF server you can work around the authentication while still generating a stub, but I have been unsuccessful with that as well.
Does any on...
Hi,
How can i get array list of custom object from web service?
I define a method that returns a list like this : ArrayList<Car> getVehicle() {...}
But in client ws, I receive an ArrayList of objects...
It seems I can't cast it even by copying custom class to client jar file of my applet, like serialized object...
How can i do that?...
My company is planning on implementing a remote programming tool to configure embedded devices in the field. I assumed that these devices would have an HTTP client on them, and planned to implement some REST services for them to access. Unfortunately, I found out that they have a TCP stack but no HTTP client. One of my co-workers sugg...
I'm trying to have access to a back.end system through webservices,
everytime i try to take data out I'm facing this Soap Exception
I've been struggling with this for a while now. Any tips?
System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Reflect...
I have a MOSS 2007 Webpart that displays data obtained from an external webservice (not originating from sharepoint).
It's created using VS2009, the webpart project includes a WebReference to my WebService and it uses the following code to make a connection (the url is configured in the WebReference):
//get xml sitemap from webser...
I'm working on a shopping cart that needs to calculate tax rates based on the ship-to county. I don't want to ask the customer for the county but instead I'd like to look up the county by using the address they provided.
And to top it off, this should be free.
So, does a [free] service like this exist? I couldn't find anything via UPS ...
If I specify a parameter in my WSDL is of type xsd:int, what is the max and min values for that parameter? It is dependant on the technology the web service is implemented in? I am using Java, so am I constrained by the int type in Java or should the web service library (Axis) be handling that?
...
I have a web service that I am passing an enum
public enum QueryType {
Inquiry = 1
Maintainence = 2
}
When I pass an object that has a Parameter of QueryType on it, I get the error back from the web service saying that '2' is not a valid value for QueryType, when you can clearly see from the declaration of the enum that it is....
Hi There,
I am working on a business application where the clients are Windows Mobile 6.1 Professional devices. The server is a Java enterprise application.
The industry working group recommends AES-256 encryption for client/server communications. This is necessary to gain certification. The encryption doesn't necessarily need to be ch...
I am trying to centralise the data access within my small company. The data I am wishing to represent in either a class library or a web service will be consumed by ASP.NET web applications (both Web Forms and MVC), ASP.NET desktop applications and Sharepoint (MOSS 2007) web parts.
This is all internal stuff, so is there any need to go ...
How can I add a reference to the REST web service to an ASP.NET application? The REST is generating the WADL file. How can I add a reference to my application . I tried the regular way, using Add Web Reference option, but that gives me an error.
...
Hi all,
I'm trying to figure out how to connect Excel 2007 to php5 based web services.
I found this pretty interessting article on the topic. Ok, so it seems to be
doable. Now, php5 soap services don't accept parameters in url form, so a RESTesque call like
http://domain.org/service.php?getme=something
won't work out since there are ...
Hi guys,
i have to use XMLhttpRequest to send the message that one user posted in another memebers profile without postback and for that i usually make a ASP.net webpage that is called by the XML http and does the server side work.
So i want to know if there is any differnce between using a regualr ASP.net page and a web service in thi...