all groups > dotnet web services > march 2007 > threads for march 22 - 28, 2007
Filter by week: 1 2 3 4 5
Problem with invoking web method
Posted by Marek Suski at 3/28/2007 10:46:44 PM
Hi all,
I am getting following error while a user is trying to execute web method
from proxy class (proxy class inhertis from WebServicesClientProtocol class)
System.Xml.XmlException: There is an unclosed literal string. Line 1,
position 129.
at System.Xml.XmlScanner.ScanLiteral()
... more >>
Removing required credential check for Web Services in VS2005
Posted by adiel_g NO[at]SPAM hotmail.com at 3/28/2007 5:43:35 AM
Does anyone know how to remove the required credential check for a web
service in VS2005?
There should be an option to remove the required credential check
since I will be running the
service in an intranet and will not require authentication. After I
remove the credential check,
I should b... more >>
How can I get debug tracing from deserialization process?
Posted by beachdog at 3/28/2007 5:01:04 AM
I am building a client which accesses a web service (HTTP/SOAP), and I
think the response message is somehow not in agreement with my wsdl/
proxy class. I am able to access SOAP headers ok from the
deserialized response, but not elements in the body of the response.
Is there some way I can get ... more >>
Can't see public method on object returned from web service
Posted by WG at 3/27/2007 5:10:17 PM
Hi,
I have the following ws method...
[WebMethod]
public Class1 GetClass1()
{
return new Class1();
}
Class1 looks like....
public class Class1
{
protected string _prop;
public string Prop
{
get { return _prop; }
set { _prop = value; }
}
public void Test(strin... more >>
System. Web. Services. Protocols. SoapException: Server was unable to process request.---> Object reference not set to an instance of an object.
Posted by Florencio Laso at 3/27/2007 12:42:34 PM
Hola to all:
We have created a service web that works perfectly while is invoked in the
localhost of the machine of development or from the IE of the servant where
we have published it. Nevertheless, if we create an application client who
does a call to the same one, it returns the following ... more >>
Why does my web services client generate SOAP with blank namespace?
Posted by beachdog at 3/27/2007 9:58:34 AM
I'm using Visual Studio 2005/C# to build a web client. The web server
is something I've written in a different framework, which does not
support generating wsdl, so I have hand-built a wsdl file, then
created my proxy class by running wsdl.exe. The problem is that the
SOAP message that the cli... more >>
WebService over FTP
Posted by Peter Morris at 3/27/2007 12:00:00 AM
Hi all
I would like my Pocket PC application (.NET Compact Framwork V2) to talk to
a webservice, but the only port open on the server is 21 where an FTP server
is sitting.
I was wondering if it is possible to stream WS requests to a MemoryStream
which I can then ZIP and put onto the FT... more >>
.NET 2 webservice proxy server detection
Posted by chrisexentra NO[at]SPAM newsgroups.nospam at 3/26/2007 5:05:21 PM
Hi,
We have .NET 1.1 WinForms apps accessing webservices through proxy servers
in various companies using different proxy server setups. Our WinForms app
is currently configurable to either use the default settings from IE, or to
allow an explicit proxy server uri to be specified - using th... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Help with error: "No overload for method 'x' takes 'y' arguments" using web service
Posted by JamesG at 3/26/2007 2:21:01 PM
Hi,
I'm new to C-Sharp (as of today) and i'm struggling to implement a
SOAP client to a PHP5 web service. I have added the Web Reference (do
I also need to use wsdl.exe and compile the .dll, and reference that
as well?) to the wsdl document.
Behind my form, I have the following (snippeted) ... more >>
Casting WebForm TreeNode ( TreeView ) to WinForms TreeNode
Posted by djp at 3/24/2007 3:25:07 PM
Hi
I add web reference to my C# client app and call web method that returns
TreeNode.
I tried to cast WebService TreeNode to Windows Forms TreeNode, but without
any effect.
Any ideas?
Thanks
PK
... more >>
Consuming ColdFusion Web service
Posted by GaryDean at 3/23/2007 10:41:41 AM
(this is a dup posting with the other webservices forum - what's the diff
between these two forums??)
I've been writing Web services and assemblies that consume web services
successfully for some time now. However, I need to consume a web service
from a vendor that was written in Cold Fusi... more >>
SOAP Extension Returning Original Stream
Posted by Datawright at 3/23/2007 3:43:40 AM
This might be a daft post but I am very new to the SOAP Extension
class. Basically I have taken the MSDN example that writes the SOAP
request and response to a log file in C#.
The code works fine and writes the data to the log file. As such I
tweaked the code to change the new stream to remove... more >>
change Web service Url in the config file
Posted by emax at 3/22/2007 12:08:07 PM
Hi everybody,
Our company has identical web services running on different machines and I
tried to switch to another server by changing Url in a config file - it
doesn't work that way. Does anybody have a clue how to do it without adding a
new web reference to a project and recompiling?... more >>
Redirect results in lost soap envelope. Changes method from POST to GET
Posted by pmasclark at 3/22/2007 9:32:49 AM
Hello,
I created a web site, site A, that redirects to another web site, site
B, where a simple web service is hosted. The code to call the web
service is simple.
oWS.AllowAutoRedirect = True
oWS.Credentials = New
System.Net.NetworkCredential("user","pass")
... more >>
WCF question
Posted by EnerPeter at 3/22/2007 2:12:10 AM
Hi all,
what is the propper newsgroup for issues regarding WCF?
Thanks... more >>
|