web-services

Should I place Jquery files on my web server or just refer to them via jquery.com in my PHP files, which is better?

When I use Jquery or its plugin, should I just add <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt; <script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js"&gt;&lt;/script&gt; Or should I download both files and upload both to my web serv...

accessing sharepoint help desk list items via web services

I have a sharepoint site based on the help desk (call center) template, and although I can access other lists with the Lists.GetListItems() method described on MSDN, I cannot get at the Service Requests list items. Can someone explain to me how the Service Requests lists differs from normal lists, and what I need to do to get at it? I ...

Converting existing C++ web service to a load balanced server?

We have a C++ (SOAP-based) web service deployed Using Systinet C++ Server, that has a single port for all the incoming connections from Java front-end. However recently in production environment when it was tested with around 150 connections, the service went down and hence I wonder how to achieve load-balancing in a C++ SOAP-based web ...

Public WCF service requires authentication, despite no security being specified

I have published a WCF service (MyService.svc) on an ASP.NET site, in a sub-folder called WebServices. When running on the local ASP.NET web server it works fine. When published to an IIS-run site and I try to access, for example, /WebServices/MyService.svc/jsdebug, I get 401 Unauthorized. The rest of the site works fine. Does anyone h...

Calling webservice via server causes java.net.MalformedURLException: no protocol

I am writing a web-service, which parses an xml file. In the client, I read the whole content of the xml into a String then I give it to the web-service. If I run my web-service with main as a Java-Application (for tests) there is no problem, no error messages. However when I try to call it via the server, I get the following error: j...

How to access a webservice requiring certificate

Hi, I need to make a webservice call using C# to a webservice requiring SSl certificate.I have the cert file, and installed it.When,I browse to https url,it requests for a certificate(but no certs visible). How to do call webservice in code? Do I have to install the certificate? ...

How do you monitor your web services?

Is there any tools that can be used to monitor SOAP, REST services for basic as well as service uptime etc., ...

My program needs to access information (key/value) from my hosted server. What web architecture would be best for this?

My program needs to download object definitions (basically xml files, maybe binary files) on demand via the net. The program will request objects from my server during runtime. The only thing the program has to send the server is a string that identifies the object it needs (e.g. RedCubeIn3DSpace23). So a basic Key, Value system. My app ...

java webservices

Hi We have a current jee project and a new requirement to introduce a webservice into the project. We develop on Rad 7 and deploy to Websphere 6.1, but this could change soon to deploy to tomcat. What i was wondering is, what approach should we take for developing these webservices? Should we develop RESTful webservices and use JAXB? S...

WSE 3.0 Trust chain error - how do i view what certificate is being sent back? I want to know what cert has the trust chain error.

I'm having a trust chain error when I receive my response in WSE 3.0. Their cert is fine when I grab the WSDL. Their cert is fine when I connect. It likes my public cert when I send the XML request. What WSE doesn't like is the token in the response. Microsoft.Web.Service3 calls getelement, then loadbinarysecuritytoken, but then check...

Autocomplete Extender "No item found"

Hello everyone. I have the following webservice (.cs file) that searches for a list of products that is used in a textbox as an autocomplete extender. public string[] GetProdDesSearch(string prefixText, int count) { try { ORDataClassesDataContext dbac = new ORDataClassesDataContext(); return dbac.tblProducts ...

Making one copy of complex type from 2 webservices.

Hi In C# (other .Net OOP languages as well), I have 2 webservices. Svc1 returns a complex datatype which becomes the parameter for svc2. Note that it is the same complex type. Now, I create the 2 proxy classes of these 2 webservices. Which means the same type gets generated twice. How can I make sure that in 2 proxies only one copy of...

How do I consume this web service in a .NET app?

I'm pushing the bounds of what one should ask of others with this one, but I'm totally stuck, so here goes... This is my first web service. Not only that, it's my companies first web service - nobody I work with has ever written or consumed anything like this one. I know these things are not complicated, but for a first kick at the can,...

Limiting access to web service

Hi, Is there any way to restrict access to my (.NET) web service without modifying the actual web service code and/or the calling app? Basically, I have the web service on one subdomain and would like to be able to call it from different app in another subdomain, both on a same machine. Regards, Ondrej Edit: Important information I fo...

Can a server page (jsp, aspx) be used as Web Service

What is the difference between using a "Web Service" and calling a server page such as JSP/ASPX? To me it looks like a Web Service is just a framework around the server pages. For e.g. I can have a JSP page that takes: mypage.jsp?method=getupdate&param1=23&param=44 (I can also send these variables through POST) In my JSP page I can ca...

WCF WebService content type error in IIS

Hi, I have a WCF Webservice that returns a bank list from database, when I use IIS server I get the message "Cannot process the message because the content type 'text/xml; charset=utf-8' was not the expected type 'application/soap+xml; charset=utf-8'.". And when I use self hosting (application console) to run the WS, works without error...

Why can't my ASP.NET web service kick off a process, but my .NET console app can?

This is code from a class library: proc.StartInfo = new ProcessStartInfo(CmdPath, "+an -b"); proc.StartInfo.RedirectStandardOutput = true; proc.StartInfo.CreateNoWindow = true; proc.StartInfo.UseShellExecute = false; proc.Start(); proc.WaitForExit(); This works perfectly as I would expect when called from a console test app. When I ...

Can anyone explain the difference between XMLRPC, SOAP and also the C# Web Service?

Are they just the same protocol or something different? I am just confused about it. Actually, I want to call a web service written in C# with ASP.NET by Python. I have tried XMLRPC but it seems just did not work. So what is the actually difference among them? Thanks. ...

Calling a web service that uses session state in wcf

I have a web service that calls another web service that uses session state. Now I am rewriting the web service and making it WCF. I am having some confusion on how to call my web service from my wcf service. Here is the code as it exists now: [WebMethod(EnableSession = true] public string MyWebServiceCall() { string result; My...

An exception occurred during the Install phase.System.ComponentModel.Win32Exception: The specified service already exists

This error i am getting when i am installing the webservice which i have been given.. since i have no idea about webservice ,i am finding it difficult where to locate the name. i have some vb file and resx file. where can i locate the name of service any guess. The service name given in error msg , is not present anywhere ...