Topic profile page for Webservice.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Webservice.
Topic "Webservice" was discussed 8,113 times on 589 sites in last 3 months
Started 4 days, 16 hours ago (2009-12-03 21:23:00)
by umalingesh
Hi, I have a .Net webservice which takes a Datetime object as parameter Expand | Select | Wrap | Line Numbers [webmethod] public string GetDateTime(DateTime dt) { return dt.ToString(); } Now I am trying to create a php client for the above webservice. How should I send a DateTime value to ...
Started 4 days, 23 hours ago (2009-12-03 14:18:00)
by Demint
Hi, I am looking at design options to develop an integration to an external webservice. The webservice will take a couple of fields off of a parent object (say account) and then a couple of fields from the set of child objects (say contact). So for arguments sake lets say it takes the account name and site and then an array of contact name and postcodes. It would be ...
Started 5 days, 6 hours ago (2009-12-03 07:26:00)
by Smitha Unni
Hi there, i want to copy a sales order which is created in GP to a new sales order but different sales type id and sales order number using webservice. Is there a way to copy one sales order to another using webservice? But with different typeid? Thanks alot !! Smitha Submitted via EggHeadCafe - Software ...
Started 5 days, 10 hours ago (2009-12-03 03:29:00)
by gonzalioz
[RESOLVED] Sending Email from a Webservice Hi all, The title pretty much says it all. I am trying to send a email from a webservice using this code: Code: Dim temp = DirectCast(ds.tblUser.Select("Email = " & email), OutlookSignDataSet.tblUserRow()) If temp IsNot Nothing Then Dim user = temp...
Started 5 days, 10 hours ago (2009-12-03 03:29:00)
by gonzalioz
[RESOLVED] Sending Email from a Webservice Hi all, The title pretty much says it all. I am trying to send a email from a webservice using this code: Code: Dim temp = DirectCast(ds.tblUser.Select("Email = " & email), OutlookSignDataSet.tblUserRow()) If temp IsNot Nothing Then Dim user = temp...
Started 5 days, 13 hours ago (2009-12-03 00:29:33)
by mylok
I have webservice simple return a linq define object [WebMethod] public Category GetByModel(string departmentid) { var db = new RDDataContext(); Category item = (from p in db.Categories where p.CategoryID == 1 select p).Single(); return item; //var item1 = new Category { Name="test", ...
Started 5 days, 17 hours ago (2009-12-02 20:35:00)
by Mike Hacker
I am trying to run a keyword query against SharePoint via the search webservice.  My goal is to retrieve 10 results per page and at the bottom of the page have links to up to 10 pages of content.  Everything seems to be working except SharePoint returns a different "TotalAvailable" count as I move forward through the pages. I am calling the web service like:  string ...
Started 6 days ago (2009-12-02 13:39:00)
by angerbee
Every post I am seeing about using web services talks about how it does not work unless you put the WebService object inside MXML in Flex, or use the plugin to put a WebService object on the stage in Flash. This does not make any sense and makes this a useless platform. Somebody out there has to know how to properly use ActionScript, and ActionScript alone, to use web services....
Started 1 week, 1 day ago (2009-11-30 12:18:36)
by DiegoVieira
I have created one webservice that it's working well, but something is happening that I don't want: allow anyone to access it. Anyone who type on the address bar: www.mysite.com/WebService/MyWebService.asmx is able to pull data from my webservice. I want to restrict only my app to access the webservice. I was reading something about Web Service security here: http://msdn.microsoft.com/en-us/...
Started 6 days, 7 hours ago (2009-12-02 06:25:00)
by rickyforpower
I have developed a WebService using Annotations. Everything works properly but I need to document this one right now. Is there an Annotation to do that? A possible solution that I found is to force application server (in my case jboss) to read wsdl from an URL rather then generating a new one at runtime, but my application is release based and for me is not the best way. Can someone...
Started 1 week ago (2009-12-01 10:02:00)
by gtyagi
Hello frnds,I m going to start a WebService part.i m new to webservice part,so kindly need your help. Firstly,tell me that what is the use of Webservice??In which situation,we have to made WebService?? MY FIRST WEBSEVICE EXAMPLE I add Firstservice.asmx Code: using System; using System.Web.Services; using System.Xml.Serialization; [WebService(Namespace="http://localhost/...
Started 5 days, 7 hours ago (2009-12-03 06:19:00)
by Phoenix_Guru
Hi, I have an application based on cairngorm and I use webserives to submit data to database. The problem I am facing is that the some attributes of the data object which I want to send to the web service are getting lost. Untill the following steps, the data is there accurately, but then it gets lost after getting encoded. service = ServiceLocator.getInstance().getWebService(...
Started 1 week ago (2009-12-01 04:02:00)
by Lancer Castro
I need a help to display a list of results (like a query in a database) coming from a webservice in a LOV. But whenever I encounter messages saying that there are pending changes and will be lost. I believe this is a popular VO in my 'AM' in a loop 'FOR'. I made a case for test purposes only, creating two VOs (The VOs are equal, but one created by ...
Started 4 days, 23 hours ago (2009-12-03 14:40:00)
by CoreyW
Hi All, What is the best practice for persisting variables between successive calls to a web service? In the web service constructor, we load a bunch of complex caches from a database and another sources into static variables. The caches are loaded the first time the ctor is called, and we are preventing the caches from being ...
Started 1 week ago (2009-12-01 09:12:00)
by vinod098
Hi, i am consuming one of the web-service through Filter. I can load the WSDL link sucessfully and even can select the port and operations. But when i click on Input mapping and when i select the XML data type and try to map with character field in remedy form it throws the below error, see the attached file. PS: one more thing to note is in the object properties its not showing any ...
Started 1 week, 1 day ago (2009-11-30 05:46:00)
by Aftab Sindhi
Hi everybody, I've a web service which has following classes: NOTE: Some code, i.e. local variables etc, is removed for brevity. [Serializable] public class ResponseCode { public string ErrorCode { return _errorCode; } public string ErrorDescription { get { return _errDescription; } } } [Serializable] public class BaseResponse { public ResponseCode ...