Hi again, the question is....
The application maybe in Silverligth.
It's possible to implement SYNChonous WebService call?
I try to realize any application RIA, with Grids, Edits and using WebServices in SL, but I do not understand how to make it's possible without a SYNC calls.
And I also need to use MODAL DIALOGS for some tasks.
I...
I have a class library (c#) with many methods that call the same web service (asmx).
What is the best practice for instantiating the web service.
Instantiate the web service once and pass it as a parameter to each method
Or instantiate and dispose the web service in each method.
...
How do search engines merge results from an inverted index?
For example, if I searched for the inverted indexes of the words "dog" and "bat", there would be two huge lists of every document which contained one of the two words.
I doubt that a search engine walks through these lists, one document at a time, and tries to find matches wit...
For a contact management system web app that allows tennants to upload lists of contact records (having varying field structures) and then displays these back to multiple users (within tennant) one at a time is there a good p/saas database solution to handle this
-it would need to allow uploading lists with custom fields (20K records per...
wcf: how can we have benefits on using JSON serialization in our services?
...
I'm in the position where I may be creating a new web service from scratch - without much pre-existing infrastructure to have to contend with. What resources are there that talk about the architectural aspects of deploying a web service? [Clarification: I'm not talking about an Enterprise SOA orientation here - rather setting up one fam...
I'm trying to use records with web services application in Delphi 32, the records defined as
TMyRec = record
Val1:integer;
Val2:string;
end;
TMyClass = class(TRemotable)
private fMyRec:TMyRec;
published
property MyRec:TMyRec read fMyRec write fMyRec;
end;
ITMyService = interface(IInvokable)
['{6283B8DA-C567-4814-906E-32172...
I am wondering if there is a tool that can be used to attached to the a single threaded asmx service call hosted in IIS, and return feedback based on the current actions the service is taking.
I know I can setup tracing, and then monitor the trace, but I am looking for a more dynamic way to do this.
Thanks in advance
...
I have an asmx web service that should only be allowed to respond to 1 client at once.
In otherwords if the service is getting called by client A, and server B calls, I would like B to pend until A is finished then B can get serviced.
If this is too complicated then at bare minimum calls from B should fail with a user defined error d...
Dear All,
The following question was posted in other forum, but there was no response, I am facing the same problem and I think it will get some answers here :
Question :
I am making use of the SharePoint 2007 GetListItems web service to programatically retrieve all documents within a document library. However, my program is throwing ...
What you prefer about saving Webservice files in asp.net website(not websiteapplication).
I saved WebService files in App_Code\WS\somewebservice.asmx.cs.
And call method from this class with jquery.ajax
$("#btnMY").click(function() {
$.ajax({
type: "POST",
url: "App_Code/WS/ConstructorWS...
I have a Windows Application in C#. This application interacts with a remote mySQL database. Should I create a PHP web service to do these (insert/add/delete/update) or use mySQL connector for c#? I'm not sure which way is better.
Thanks!
...
Is there an efficient tool to convert the .Net C# webservice to java webservice. Is there any open source tool that can help?
...
Hello everyone,
I am using Microsoft Search Server 2008 + C# + .Net 3.5 + VSTS 2008 + ASP.Net to develop a web application which invokes Search Server 2008 Web Services when a button in the html page is pressed.
I am using the following code to query content from Microsoft Search Server 2008. My question is how to display the search re...
i want use some data from a website with web service.
i have a username & password and i dont know how can i use webservice
...
Hi all,
I'm trying to generate JAXB classes from the Clickatell wsdl:
You can find the wsdl definition here it quite large:
http://api.clickatell.com/soap/webservice.php?WSDL
When trying to generate java classes from this Wsdl i got the following errors:
[ERROR] undefined simple or complex type 'SOAP-ENC:Array'
[ERROR] undefined attrib...
From the snippet below, how do i get rid of the (xml node) <wsu:Expires> tag? I want to either get rid of it or pass it in as a empty element. It is a read only property in objClient.RequestSoapContext.Security.Timestamp.Expires. Any help is appreciated.
<wsse:Security soap:mustUnderstand="1">
<wsu:Timestamp wsu:Id="Timestamp-26...
Every new web service you create using visual studio comes with a predefined namespace like this:
[WebService(Namespace = "http://tempuri.org/")]
My web service will run at different clients, and on different domains, so because of this I don't know the domain upfront during development, also I don't want to have to edit this file, ea...
I'm trying to pull a large amount of data out of a WCF web service. The request is fairly small and the response message will be very big. Currently the web service is throwing SystemOutOfMemory exceptions due a limitation on IIS6 for the memory it can allocated (~1.4GB).
I have read in some blogs that implementing streaming will so...
I have a WCF visual studio project, which contains many SVC files.
Can I compile each SVC file into its own dll file?
my target is to be able to deploy each svc file separately without touching other services, but maybe keep them on the same website
what options I have?
...