Because Microsoft did not include a way to have unique constraints in sharepoint, this has to be done manually.
I am inserting items into a sharepoint list via a web service method.
How can I check if an existing list item already exists with the same field ID value?
I've learnt I should be using wsLists.getListitems web service met...
I'm trying to understand serialization more in context to the legacy .NET web services. Lets say I return a complex type from one of my .asmx methods. Does that type have to be marketed serializable? Or does the web service reference and web service iteself take care of all this serializing and deserializing?
...
I'm finding this post very useful..
http://stackoverflow.com/questions/102084/hidden-features-of-vb-net
XML literals seem to be very powerful.. I'm wondering if there's any way to use them to view the results of a Web Service Call in .Net?
...
Here is what i want to do, and i know it is possible with perl, php, python and java, but i am working with c#
how can i do the following:
public void amethod(string functionName)
{
AVeryLargeWebServiceWithLotsOfMethodsToCall.getFunctionName();
}
I want to pass the functionName to the method and I want it to be executed as above....
I'm planning to develop a web service application to support an iPhone app and need to be able to secure communications between the application and certain asmx methods. Having used APIs for Facebook, Twitter and the like - I was wondering how I might best accomplish this with ASP.NET. Any thoughts?
...
Hello,
I have a web service that returns a serializable data object.
On the last page of the Database Expert - XML Web Service selection screen I am getting an error. I cannot figure out how to get around this.
...
What simple tools would you recommend to read a text file of addresses, send each record separately to a web service for geocoding, and save the batch of results as a text file?
Looking for no-frills component(s) with usage examples, for minimal code-from-scratch. Language irrelevant as long as dev environment is easy to install.
Req...
I want to learn about Web services and so what are some of the best video tutorials / online tutorials which you prefer for understanding Web services and related topics?
I have basic understanding of SOAP and REST but I want to get a lot of detailed understanding of the topic and so am looking for Video Tutorials / Online Tutorials for...
Hi,
We made a simple application and using GoogleAppEngineLauncher (GAEL) ran that locally. Then we deployed, using GAEL again, to our appid. It works fine.
Now, we made a web service. We ran that locally using GAEL and a very thin local python client. It works fine.
We deployed that, and we get this message when we try to visit our ...
Hello to all,
If i logged in the gmail,at the same time if i open orkut..it will automatically redirect to my orkut account.how can possible?
I have to implement same concept with the 2 domanis (ex: www.abc.com,www.bbc.com) throgugh PHP.
If i login into the www.abc.com, then if opened www.bbc.com in same browser ,it will takes to the ...
I have been writing a pure java web server specifically customized for a website I'm making. I've grown tired of reinventing the wheel though, and am now investigating moving over to java servlets. Basically I just want to run server side java code while leveraging the servlet technology to avoid writing http protocol specific code.
I...
I am doing an integration project for a customer running Microsoft Exchange 2007 (BPOS). I am looking for a way to search for e-mail using the Exchange Web Services Operations -- MS' API to their own hosted exchange solution. So far, I have found a nice API description, but as far as I can see none of it allows for searching for e-mails ...
I just created my first Web Service.
I use:
IIS 7.5
VS 2008
.Net 3.5
After install my IIS and browse to my asmx file in IE I get the follow Error:
HTTP Error 500.21 - Internal Server Error
Handler "ScriptHandlerFactory" has a bad module "ManagedPipelineHandler" in its module list
I googled it since 2 hours but don't find a ...
We want any calls to our .asmx web service to be made by the client from https. If not, throw an error.
I've setup the following method in my .asmx:
private bool IsSecureConnection()
{
return HttpContext.Current.Request.IsSecureConnection;
}
Question is, do I have to call this in every method and throw or is ther...
Hi,
How would I go about generating Visual Basic 6 Proxy dll/tlb from a WSDL file?
Similar to the WSDL2Java for java, but for Visual Basic.
Thanks.
...
Hi chaps,
I wrote my first WebService.
My System is ISS7, ASP.Net, Framework 3.5.
My code only gives a "Hello World" back and all settings are correct, so I can return in IE the "Hello World".
Now when I Change my Text from "Hello World" to "Good Bye World" and copy the file in the webservice folder, nothing changed in the IE. It's t...
I have a windows application and a web service. Both have a Linq to SQL mapper with Customer table on them. Same table from the same database, same everything. I tried to send winapp.Customer object to web service but the webserviceReference.MyMethod() accepts webservice.Customer object and doesn't accept winapp.Customer as parameter. Tr...
Before obfuscation, the call to the webservice works like a charm.
After obfuscation i get this error.
Method obfuscatedText.GetStringFromWebService can not be reflected. There was an error reflecting ".
What could i do? Why do i get this error after obfuscation?
...
I have a simple web service that has an API third party developers are allowed to access. The API mostly follows REST principles.
I'm interested in solutions to make the API more secure by requiring developers to use client certificates. Is there any open source solutions or other implementation advice any of you have that would assist ...
i want to consume a .NET web service which returns an object of some class in labview. How do i convert the returning object into a labview object. Currently it just returns a srting.
Thanks
...