all groups > dotnet web services > june 2007 > threads for june 22 - 28, 2007
Filter by week: 1 2 3 4 5
How do you send an XML document to a Web Service?
Posted by Gustaf at 6/28/2007 4:12:14 PM
I'm using ASP.NET in VS 2005 to build a Web Service based on XML Schemas
made by another person. There's one schema for the input format and
another for the output. So far, I've been able to make a Web Service
that will accept the input format, using the xsd.exe tool.
My question now is, how w... more >>
Native Memory leak? (Private bytes increases resulting in worker process recycling)
Posted by chen at 6/28/2007 3:02:39 PM
While investigating a possible memory leak scenario in one our web
services, we ran into a peculiar situation where the "private bytes"
of the worker process continued to increase steadily while the .NET
CLR Memory counter '# Bytes in all heaps' remained constant. Pretty
much all the documentati... more >>
Copy file to remote server webservice
Posted by Priya at 6/28/2007 11:36:00 AM
Hi ,
I m usin ga webservice to copy a file to a remote server. When i do that i m
getting ' Access to path denied' error. Pls let me know what permission i
need to give.
I tried giving impersonate = true in web.config.
Thanks in advance
Priya... more >>
Calling J2EE web service from .NET
Posted by RNoel at 6/27/2007 12:24:03 PM
I implemented a J2EE web service on Sun's Application Server 8. The web
service is set up to require BASIC authentication. I created a Java client
that passes credenttials for the authentication and all went well.
I then tried to add a web reference to a client project in .NET using VB.
... more >>
WSHttpBinding in WCF
Posted by DanM at 6/27/2007 8:40:03 AM
Hi,
If I have a WCF web service deployed that uses the WSHttpBinding, is it
possible for a web service client to connect to my service if that client
does not support WS-Addressing, or is WS-Addressing mandatory when the
WSHttpBinding is in use?
Many thanks,
Dan... more >>
'add service reference' missing - help
Posted by dave at 6/27/2007 6:54:02 AM
I installed 3.0 extensions for vs.net 2005 and the wcf sdk and I am missing
'add service reference' from the context menu while trying to add a reference
(to wcf).
Any ideas on what is going on?
thx
dave... more >>
Debug webservice
Posted by Peter K at 6/27/2007 6:03:34 AM
Hi
I have a VS2005 c# solution which includes a webservice and a windows
application which uses the webservice.
How do I "debug" into the webservice from the application?
I can for example debug/attach to aspnet_wp.exe and access the webservice
from a browser - and there I can hit brea... more >>
2 WCF Web Services Sharing a Data Contract Class - Can't Assign?
Posted by ESPNSTI at 6/26/2007 3:03:00 PM
I have two WCF Web Services that use the same DataContract class as the type
of a propety used in the MessageContracts.
When I add web references (in a ASP.Net 2.0 web site in Visual Studio 2005),
it creates the class specified in the DataContract more than once (one for
each web reference in... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Application_Start not firing
Posted by Steve Ricketts at 6/26/2007 9:13:41 AM
I have a web service written in VB 2003 .Net that I've put on a number of
different servers an OS's, 2003 and 2000. Application_Start sets up a
number of variables used by the various functions in the application.
I just put the application on a 2000 server and found that it's not firing
t... more >>
Publishing different versions of Webservice
Posted by Mohan Babu D at 6/26/2007 7:25:00 AM
Hi,
Can any one let me know how to publish different versions of Webservices in
..NEt
Thanks in advance
~Mohan Babu D... more >>
Maximum request lenght exceeded
Posted by Cactus77 at 6/26/2007 7:13:13 AM
Hi,
I have a problem with deploying a Report Model.
I've build a Report Model in Visual Studio and by deploying mij my
model, I get the next error:
System.Web.Services.Protocols.SoapException: There was an exception
running the extensions specified in the config file. ---
>System.Web.Htt... more >>
WebException not caught while running on Vista but is caught on XP
Posted by Philip K at 6/25/2007 8:37:01 PM
Simplifying the code a bit its like this:
try
{
myRemotingObj.Myfunction(string, string,string,string,timeSpan)
}
catch(WebException)
{
commsUp = false;
}
Using .NET Framework v2.0 and C# and my own service running on my LAN, I
call a function in my .NET remoting object inside of... more >>
Call webservice from windows C# application
Posted by zion at 6/22/2007 6:19:09 PM
Hi,
How can I call a simple webservice on my IIS?
Thanks
... more >>
WebClient generates exception: header must be modified using ...
Posted by oldVB3r at 6/22/2007 1:45:25 PM
The following code generates the exception shown below when I call
UploadData. I'm trying to call a WCF service using basicHTTP with a manually
generated Soap message. Am I on the right track with this code? Thanks!!
Code:
Dim recvDoc As New Xml.XmlDocument
recvDoc.LoadXml... more >>
|