all groups > asp.net webservices > september 2004 > threads for september 15 - 21, 2004
Filter by week: 1 2 3 4 5
what's wrong with my code ?
Posted by pronto at 9/21/2004 2:50:09 PM
Hi guys.
I have follow C# code in my WebService.
---------------------------------------
WebMethod (Description="Return current stock price")]
public decimal GetQuote(string Symbol)
{
if(Symbol.ToLower() == "msft")
return 55.0m;
else if(Symbol.ToLower() == "intc")
return 32.0m;
... more >>
How to modify the URL in a WSDL file for accessing a remote webservice ?
Posted by microcode2004 NO[at]SPAM hotmail.com at 9/21/2004 4:55:15 AM
Hi.
I have coded the following :
- A Webservice hosted on a Websphere application server
- A client that was developped under Visual Studio .NET C++ 7.0
Here's the challenge :
I want to ask the user to enter a URL and then modify the URL in the
client WSDL file, for the client to be able... more >>
Cannot serialize object of type System.Object[,]. Multidimensional arrays are not supported
Posted by jjhnospam NO[at]SPAM yahoo.co.uk at 9/21/2004 12:57:30 AM
Hi,
I get this on server when trying to retun a 2 dim array.
I apprecaite that they are not supported as per
http://support.microsoft.com/default.aspx?scid=kb;en-us;316273
however i'm looking for as a work around as my web service is a layer
in front of an existing com object which cannot be... more >>
SOAP Message from WSE
Posted by Patrick at 9/20/2004 3:23:25 PM
I have played around a bit with the Signing/Encrypting example with the Web
Service Enhancement examples at
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwse/html/wssecdrill.asp
I have the following queries
1) How could I read the actual SOAP request sent by the client?
2... more >>
Webservice - start and stop
Posted by MA at 9/20/2004 10:09:16 AM
Hi all!
I have developed a webservice that writeing and reading files in different
folders.
Question 1: I need to be able to start and stop this service by using a web
interface
(start and stop button). But I can´t find any way to this. Any ideas?
Question 2: Where can I see if this ser... more >>
system.net.webexception The underlying connection was closed: An unexpected error occurred on a send.
Posted by rob NO[at]SPAM robandjackie.com at 9/20/2004 8:02:26 AM
Let me begin by saying that per Q821156, I have updated my web
server/development machine with .NET Framework 1.1 SP1. I don't know
if I still need to but I have also overridden GetWebRequest to set the
KeepAlive false as directed in Q819450. I am still receiving the
above-mentioned error when... more >>
Web Services and Protecting Code
Posted by Daniel Friend at 9/20/2004 6:17:39 AM
I am new to web services. I have am running a sample web service for
testing. It seems that if I type the URL in the web browser, it displays
all active web method functions. How do I turn that off, I don't want a
person to stumple across my web service on the net and be able to use the
funct... more >>
Can't find WSDL file
Posted by pronto at 9/17/2004 10:54:33 AM
Hi all.
I created simple web service with C# and run it on Win2000 XP sp2.
Service has two simple [WebMethods]. I test it with my C# client and IE.
Now I want to create VC++ 6 application and talk to web service with SOAP
SDK lib.
It's good so far, but SOAP SDK samples are using link to ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Page redirection in webservices ?
Posted by Raghu Raman at 9/16/2004 10:01:11 PM
Hi ,
i have a webservice which has some methods and a login page.I 've
connected the client to my webservice.now i want to redirect the user to
use the webservice's login page.
How can i redirect the client to go to the webservice's login page.
appriciating u r help.
With thanks
R... more >>
Urgent plz help me
Posted by sri p via .NET 247 at 9/16/2004 2:38:54 PM
(Type your message here)
--------------------------------
From: sri p
Hi Guys,
I am trying to setup aproject on my localhost.Everything gone cool but webservices methods are not accessble.It's showing http 404 not found.The webservices developed by some thirdparty.
What i do here, it's ve... more >>
Using SMPTMail, MailAttachment corrupts the attachment when called from a web service
Posted by jeremyhalbert NO[at]SPAM gmail.com at 9/16/2004 12:23:03 PM
I creating a very simple email, and attaching an excel file and trying
to send it.
When I do this with a standalone executable, everything works fine.
When I include it as part of a web service, where we're impersonating
a domain account, it corrupts the attachment. The xls file is 270Kb
on... more >>
how to setup a trace
Posted by Jake at 9/16/2004 7:04:21 AM
Hello,
I am wondering if there is a way to setup a trace on a webserivce that
is called in the middle of the night and be able to review the data the next
morning. Thanks in advance.
Jake
... more >>
Real-time notification in ASP.NET
Posted by mistercrabs NO[at]SPAM mail.ru at 9/15/2004 5:15:01 PM
Hello!
I wonder, if there could be a way for a client of ASP.NET application
to recieve a message from a server. For example, let's consider we
have a job assignment application. The dispatcher assigns a job for a
particular executer. How to notify executor that he or she has a new
job assign... more >>
xml payload to webservice
Posted by Old Man at 9/15/2004 7:26:57 AM
i am tasked to write a webservice that catches an xml string and passes
it on to Websphere MQ.
All i want to do is put in a simple test that i got a wellformed XML
string.
I am embarassed and frustrated, because in asp it is a trivial thing,
but evidently not in dotnet. I have spent that la... more >>
|