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 > january 2007

Filter by week: 1 2 3 4 5

WS - .Net to Java interop
Posted by Raj at 1/31/2007 12:49:26 AM
In one of the projects that we are executing, we are facing issues in WS Security interoperability between Java and .NET web services. I will describe the problem below and would like to know if any of you have faced any similar issues before and the way to go forward. Problem Statement ...more >>


Web Services and SSL
Posted by AndyBrew at 1/30/2007 8:48:01 AM
Hi We are currently embarking upon a project to develop a suite of web services to allow the integration of a PDA application with our data server. Our current thoughts are to setup an SSL certificate on the server and use a custom username/password authentication mechanism for authenticati...more >>

Can a Web Servive send it's status to a client?
Posted by Ethan Strauss at 1/29/2007 4:13:32 PM
Hi, I have a web service which is doing a lot of processing and taking 4-5 minutes to do so. The processing is split into several discrete steps and I would like for the service to be able to tell the client when it is done with each step. I have tried to do this in a couple of ways and ...more >>

Replicating text files using web services
Posted by asdf NO[at]SPAM asdf.com at 1/26/2007 7:15:13 PM
Can I replace replication of text files over ftp with a web service? I'd like to elminate as much labor as possible, having the text files transfer as soon as new ones are deposited in a folder. Just need to know it's the right path to pursue. ...more >>

Brand new to web services
Posted by bennyandlinds NO[at]SPAM gmail.com at 1/25/2007 10:20:31 PM
I have been a C# developer for a while now and have hear a lot of buzz about web services. I would like to try incorporating a web service in a new application I am developing, but have no clue where to start. I have tried checking out the Web Service Factory by Microsoft Patterns & Practices ...more >>

Dropping carriage return characters from web service
Posted by Ron Gliane at 1/25/2007 11:46:02 AM
I have a web service that returns a String as part of the return . The String has embedded CR (x13) and LF (x10) in it. When the client code gets it though, the CRs have been stripped out and only the LFs are present. I saw an article that said I need to convert the String to Unicode (UTF-8...more >>

Optimisations for Deployed web service
Posted by robin9876 NO[at]SPAM hotmail.com at 1/25/2007 9:04:26 AM
Are there any optimisations that can be made on a Windows 2003 server for a web service that has been deployed to it? Such as HTTP compression and any server or .Net settings. ...more >>

best way implement web service with authentication.
Posted by modi at 1/24/2007 1:16:35 AM
hi, We guys have implement a webservice wherein we authenticate the user by passing the same in soap headers. once is the user is authenticated we flag the user as authenticated in a session variable. My doubt is, is it the right way of implementing this. We are using inproc to store the sess...more >>



Windows Communication Framework
Posted by Gaurav Vaish (MasterGaurav) at 1/23/2007 1:16:22 PM
Hi, I have recently published an article on WCF at CodeProject http://www.codeproject.com/useritems/edujini_wcf_scart_01.asp It would be great the experts can provide a feedback on the same. Please note that this is my first article in the series. I have submitted Part-2 t...more >>

Newbie, sending text message to mobile device and SQL Server
Posted by verci at 1/23/2007 12:43:01 AM
Hi guys, sorry if this seems stupid :( I've been assign to build an application that receives some text message via (MAIL or SMS), once I got the text I need, a search through a SQL Server database would be done to obtain a text that will be sent to a mobile phone via SMS, I've read some ...more >>

help needed
Posted by maheshwari.sumit NO[at]SPAM gmail.com at 1/22/2007 9:40:06 AM
If you are deploying a web service and want request to go through a firewall... what will you set? Regards S ...more >>

File protection between webservice calls
Posted by nano2k at 1/22/2007 6:28:15 AM
Hi My C# webservice uses a file to store some (short) information between calls. One method creates/updates the content of a file, another reads it. What is the best method to avoid issues like "file is already opened by another process", etc between calls? Using Monitor.Enter(...) and Monitor...more >>

How do I catch unhandled Exceptions in Webservice (2.0)
Posted by Tomasz at 1/17/2007 9:28:46 PM
Hello Everybody! How do I catch unhandled exceptions in a Webservice application - .Net Framework 2.0? In Windows I can subscribe to the AppDomain.CurrentDomain.UnhandledException event. In ASP.Net applications Application_Error event handler can be used. How do I get a similar function...more >>

Distributed transactions in Webservices.
Posted by Basil at 1/17/2007 2:49:44 PM
Hello! Could you help me? How can I implement distributed transactions in Webservices, if I have Framework 1.1, WSE 2.0? Could you give me a few samples? Thanks. Best regards, Basil. ...more >>

VS2005 "Add Web Reference" "Unable to connect to the remote server", then successfully displays the service info. Add reference button is disabled. C
Posted by BobC at 1/17/2007 6:05:34 AM
VS2005 "Add Web Reference" "Unable to connect to the remote server", then successfully displays the service info. The Add reference button is disabled. The service also times out if I click on the Service Description link of the web service description page w/in this dialog.. Add reference ...more >>

No SoapContext
Posted by APA at 1/17/2007 3:46:47 AM
In the constructor of my web service I have no access to the SoapContext (i.e. RequestSoapContext.Current). Not only that but I have implemented a customer UsernameTokenmanger.AuthenticateToken method and it doesn't call that either. I have the following setup in my web.config <configSections...more >>

Is it possible to declare static properties on a Web service?
Posted by Jeff Johnson at 1/16/2007 11:19:45 AM
I want to do this in my Web service: public static Guid ApplicationId { get { return _appId; } } And then in my external code do this: Guid webServiceGuid = MyWebServiceReference.MyWebServiceClass.ApplicationId; In other words, I want the Web reference that VS 2005 creates to disc...more >>

Asymmetric Encryption
Posted by pintu at 1/15/2007 4:58:29 AM
Hello everybody.. I hav some confusion regarding asymmetric encryption.As asymmetric encryption it there is one private key and one public key.So any data is encrypted using private key and the same is decrypted at client side using public key and vice-versa..Now i hav confusion like i.e. *...more >>

Problem with funky characters
Posted by Marlene A. Roman at 1/12/2007 8:53:17 PM
Hope everybody is doing OK. I have a web service that I call to encrypt sensitive information as credit cards, credentials etc. I am getting this error "Error'', hexadecimal value 0x11, is an invalid character." when I try to consume this from a client in this case a Web App. Is t...more >>

Duplicate class definitions
Posted by Jeff Johnson at 1/12/2007 2:14:25 PM
Disclaimer: I am extremely new to Web services and may very well be doing the wrong thing! Background: I have a Web service and a Windows Forms client app (VS 2005). The Web service exposes a method to accept a ScheduleEntry object, which is a class I have written. I felt doing this would b...more >>

connect to webservice in Visual Studio
Posted by peter at 1/11/2007 10:13:44 AM
Hi, I am developing a small webservice in Visual Studio (programmed in c#). Sometimes when I try to run my small tester application in Visual Studio (which tries to connect to my webservice) I get this error: There was an error downloading 'http://localhost:1639/TestService.asmx. Unable to ...more >>

Redirecting an ASMX page to a new server
Posted by Simon960 at 1/9/2007 6:28:29 PM
Hi, I wonder if someone would help me please? I am trying to redirect a ..NET web service ASMX page to a new server (from https://localhost/webservices/syncdata.asmx for test) to https://vault1.secured-url.com/fundamentumfais/webservices/syncdata.asmx) so that my VB .NET standalone client ap...more >>

Compression
Posted by Peter Morris [Droopy eyes software] at 1/8/2007 12:40:39 PM
My webservice will involve sending/receving one of my parameters as a large XML string. If I use remoting I believe I can compress my stream, is this also possible using a WebService? Thanks Pete ...more >>

Non-negative number required. Parameter name: byteCount
Posted by James at 1/7/2007 2:14:00 AM
How can this issue be resolved (in the subject). bytecount is not a parameter in my functions. I read from some other groups that this is related to the IP change whil the transactions take place. Any solution for this? Thanks James...more >>

Destination Unreachable --> WSE817:
Posted by Satya at 1/5/2007 7:13:07 AM
I am getting following error while calling " Service A" which been developed using WSE 2.0 from "Service B" which been developed using WSE 1.0 _message "Destination Unreachable --> WSE817: The &lt;To&gt; header must match the Actor attribute on this receiver. The &lt;To&gt; header conta...more >>


DevelopmentNow Blog