Archived Months
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > asp.net webservices > july 2007

Create WSDL at each request (ASP.net 2.0)
Posted by Jay Douglas at 7/31/2007 9:41:23 AM
Using a SoapExtensionReflector I'm making some adjustments to some the wsdl document auto generated by asp.net. It seems as the wsdl is being cached thus only showing the original modifications. How do I disable any caching that asp.net is using for generation of the wsdl documents? I need t...more >>

XMLDocument to XMLNode
Posted by Dave T at 7/31/2007 8:42:05 AM
I have a web service method that returns an XMLDocument. When I call it from an aspx page, the intellisense says that the method is of type XMLNode, so when I try, stupidly, to get the results of the web service call into an XMLDocument in the client, it fails with the error System.Web.Servic...more >>

Launch signtool in a Web Service
Posted by Thibaut Blanchin at 7/24/2007 6:54:01 AM
Does anybody know how to launch correctly signtool.exe inside a Web Service ? I'm having headache trying.... For security and authentication reasons I use Impersonation. (configured in web.config file). I've create a WS that uses process.start to launch signtool. I'm getting error : "SignToo...more >>

How to call a .NET WS from Java??
Posted by Christian Havel at 7/23/2007 2:16:02 AM
Hi, I try to call a .NET Webservice from Java. Can anybody give me a tip how to do this? Christian...more >>

Application.Lock()/UnLock() or lock(Application)
Posted by nano2k at 7/23/2007 12:51:45 AM
Hello Is there a difference between: 1. Application.Lock(); try { //...code } finally { Application.UnLock(); } pattern and 2. lock(Application) { //...code } ? I read on MSDN (http://support.microsoft.com/default.aspx/kb/271787) that there are some situations when t...more >>

webservice servicing multiple object instances.
Posted by srajan NO[at]SPAM gmail.com at 7/21/2007 11:16:58 PM
Hi, I have a webservice that provides access to multiple object instances. Now from client I want to channel the calls to specific objects. I could think of 2 options 1. The url for the service could take in the objectId, some identifier that identifies the object uniquely e.g. MySe...more >>

Web based timesheet application
Posted by LiveTecs at 7/21/2007 8:08:33 PM
http://www.livetecs.com TimeLive Web Collaboration Suite is an integrated suite that allows you to manage project life cycle including tasks, issues, bugs, timesheet, expense, attendance. TimeLive is available in two different flavors. Hosted version and downloadable version. Downloadable...more >>

How to send up a multi-dimensional array in a property of type system.object?
Posted by psm NO[at]SPAM delcam.com at 7/19/2007 3:20:54 PM
I have a web service that returns Field[][]. The Field object contains Name (type string) and Val (type object). I am using it to return back a user-defined selection of properties of an task object, hence Val being of type object. This web service works fine, until I try to put another Fiel...more >>



web services
Posted by AVL at 7/19/2007 5:54:02 AM
hi, i need to check the availability of my web service.... how can i do that. i dont want to call any of the methods present in web service to test availability.. i just want to ping to the web service....how can i do that.... ...more >>

rising process time of a webservice
Posted by Andreas Klein at 7/19/2007 12:00:00 AM
Hello NG, I have a problem with a webservice on my server: the process time is rising when the are multiple requests. This means with one request the answer comes after about 500ms. When i have 5 concurrent requests, _each_ answer takes about 2000ms. I have tested this with a dummy funct...more >>

Schema type information provided by IXmlSerializable is invalid: Type 'string' is not declared
Posted by Jeremy at 7/18/2007 10:10:33 AM
I've added the System.Xml.Serialization.XmlSchemaProvider attribute to my class to customize the schema. Some of the datatypes in my schema are strings, but I'm getting an error that string type is not declared. Can anyone show me how to do this properly? I've included the code to my schema ...more >>

IXmlSerializable.GetSchema creates mutiple schema elements in my wsdl
Posted by Jeremy at 7/18/2007 9:29:33 AM
I've built a class that uses the IXmlSerializable interface to do custom serialization. I"ve then used the IXmlSerializable.GetSchema() method to output the schema of my class to the wsdl in my web service. The problem is that the schema of my class appears in a seperate schema element in th...more >>

Good Soap Client
Posted by R. K. Wijayaratne at 7/18/2007 1:08:02 AM
Hi guys, Do you know of any software that allows you to point to any web-service URL, paste the SOAP XML packet into a window, fire the pasted SOAP packet and see the returned XML SOAP XML in the same program? SOAP Spy Enterprise Edition does this, but it is expensive. Any other programs...more >>

MSDiscoCodegenerator Failure with VS2005 (used to work in VS2003)
Posted by amol at 7/17/2007 2:59:10 PM
Hi, I have a WSDL file that I am trying to use when adding a web reference to my project. I can successfully do this with Visual Studio 2003, but I get an error when trying to add the same wsdl as a web reference in Visual Studio 2005. I tried using wsdl.exe on a command line and get the follo...more >>

.Net 2.0 : Soap client : reusing http connections ?
Posted by Steve B. at 7/17/2007 12:00:00 AM
Hi, We have built an asp.net application that uses some web services (actually WSS web services). Because of high number of users and theirs simultaneous requests, web services are very frequently requested. Using standard Visual Studio web references, we cannot control the http connecti...more >>

Returning Bare Type
Posted by at 7/16/2007 6:29:48 PM
Hi everyone, We have a web method which returns the following type: public class methodNameResult { public string responseCode = null; public string details = null; } Here is the web-method that returns the above: [SoapDocumentMethod("", ...more >>

First Try Failing
Posted by Zorpiedoman at 7/16/2007 12:58:05 PM
Taking my first stab at creating a web service and failing when I try to add a web reference. To this point all I have done is added a web service to the application. It has the default HelloWorld method. In a separate windows applicaiton I try and set up a Web Reference to this page, an...more >>

Conecting web buttons to a web service
Posted by Bigadds at 7/12/2007 6:24:01 AM
good day i need call a webservice when a button on a page is clicked. i am using visual web deveolper for this task ans i am guessing that i need to edit the onclick property of the button. could you help with the code i may require or guide me to a tutriol that wil help with this probl...more >>

Asynchronous Call Pattern Problem #2
Posted by lucius at 7/11/2007 11:12:21 AM
My async web method does not seem to be truly asynchronous. My webmethod is supposed to immediately return "nothing" to a calling client while it makes its own webservice call to another remote thing. Could someone tell me how to make this better? It seems like my webmethod is still holdin...more >>

interfacing WS with EDI
Posted by GaryDean at 7/9/2007 4:45:22 PM
I have a client that needs to interface with a vendor that uses EDI documents. for instance they use the EDI 850 purchase order document. Is there a good way to interface Web Services with EDI documents? -- Regards, Gary Blakely ...more >>

Base WebService Page and Event?
Posted by lucius at 7/9/2007 11:15:50 AM
I have a multiple Framework 2.0 .asmx.cs that have a string input property called "securityinput" on many WebMethods. Each .asmx.cs inherits from a base class that inherits from WebService. I would like to create a custom Event in the constructor of this base class that would capture/inspec...more >>

Client side jscript issue
Posted by john at 7/6/2007 7:56:01 PM
Working in Visual Studio Objective: I am trying to have my server side vb code construct a file name for use with my client side JavaScript code to then save the file to the web. My saving to the web method is working with a preset test filename. The issue I have is that when I put thi...more >>

Include Verbose Description?
Posted by lucius at 7/6/2007 12:34:39 PM
I have several WebMethods in my 2.0 system decorated like this: [WebMethodAttribute(Description="..... I have XML comments that describe the actual parameters. I would like to copy those comments (or use them directly) so they are visible like in the WebMethodAttribute. What is a good...more >>

PageMethods
Posted by dnadeveloper at 7/5/2007 5:41:00 PM
Can anyone tell me what is is required to get the PageMethod code into my ..aspx pages? So far I have a scripmanager with EnablePageMethods wet to true. TIA Chris ...more >>

Pocket PC - Unable to read data from the transport connection
Posted by Jay Balapa at 7/3/2007 4:13:12 PM
Hello, We have a Pocket PC client application which just connects to our webservice. When a client connects his Pocket PC through his WIFI he gets the following- Unable to read data from the transport connection . I have the same setup and am unable to reproduce this problem. This method ...more >>

Webservices Eventing
Posted by Chris at 7/2/2007 4:18:00 PM
Hi, we have data points coming in quickly a few times a second and need to push it out to many clients (Flex, if its important...) who subscribe to receive the data without polling for each point. I believe this is called Webservices Eventing... Can somebody point me to an example of this sor...more >>


DevelopmentNow Blog