all groups > asp.net webservices > march 2005 > threads for march 8 - 14, 2005
Filter by week: 1 2 3 4 5
How to Repoint without Recompiling
Posted by David Schornack at 3/14/2005 4:28:32 PM
I sure I am just missing something simple, but how can I repoint my
webservice client application from my development server to my test or
production server without recompiling. Currently I have included all three
web services into my client application and I just comment out the ones I am
... more >>
web setup project
Posted by Fred Herring at 3/14/2005 1:55:05 PM
I am new to deploying web services and would like to understand the web setup
project capability. If I understand correctly, I add the web setup project
to my web service applicatoin and build it. I then copy the msi file to my
hosting machine and run it to configure my web service on the ne... more >>
Share a common webconfig file.
Posted by Tomer Ben via DotNetMonster.com at 3/14/2005 10:04:41 AM
Hi, i have several webservices, i want them all tho refer to the same
webconfig file, how can i do it?
--
Message posted via http://www.dotnetmonster.com... more >>
HTML Consuming ASPX Sevice
Posted by Thom Little at 3/14/2005 12:57:24 AM
I would like to access an ASPX service that returns a simple character
string and have that character string appear on the page that called the
ASPX service. The calling page will be either HTML or ASP 3.
Can you point me at an example available that will set me in the right
direction?
... more >>
.NET Client / Java Web Service Problem
Posted by Jasmeet Sangari via .NET 247 at 3/13/2005 12:29:38 PM
Hi,
I am writting a =2ENET Client for a Java Web Service=2EI have created=
a =2Ecs file from the WSDL and the XSD's Given=2E
I am trying to query a Web Service which has the description:::
// Service Description:::::::
[System=2EWeb=2EServices=2EProtocols=2ESoapDocumentMethodAttribute("urn... more >>
Deployment Q
Posted by Vai2000 at 3/11/2005 8:24:19 PM
If you have an ASPX app which calls a WebSvc do you need to deploy the
WebReference folder or not?
bin\foo.dll
foo.aspx
webREference? needed or not?
TIA
... more >>
d:\inetpub\wwwroot\
Posted by Fred Herring at 3/11/2005 2:51:03 PM
When creating a web service using .net the folders inetput\wwwroot is
created. If you need to move an existing web service on another machine
running IIS, can the inetput\wwwroot\etc just be copied to the hosting
machine
Thanks,\
Fred... more >>
supply final static value
Posted by Dan at 3/11/2005 2:23:42 PM
hi ng,
is it possible in dotnet to restrict a value for a variable.
i remember that there is something like that in delphi.
my problem:
i have a bussiness object that has a string variable which can only be
set to some well defined values.
Like:
string color="red" (or "white" or "black... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
web service proxy authentication
Posted by Saira at 3/11/2005 10:06:46 AM
Hi all
I have an application that seems to be having an ongoing battle with my
firewall.
I am using a webservice to send back data to a SQL server database. Betwen
the two machines is an ISA 2004 firewall.
The firewall is set up so that it only allows authenticated traffic (i.e.
Windows use... more >>
Web service call timeout
Posted by JD at 3/11/2005 8:09:30 AM
We have two web service machines. Call one WS1 and the other WS2. They are
seperated by a firewall. WS1 handles web service calls and also calls web
services provided by WS2. Both machines do not get updated or restarted very
often. The problem is after some period of time, the web service call f... more >>
Web Service Redirection
Posted by Thom Little at 3/11/2005 1:49:55 AM
I have an ASP.NET web sercice that processes a form. At the completion of
processing I want to redirect to a page that contains the response (the
location of this response page is passed to the web service in the form).
How can I invoke redirection the web service?
--
-- Thom Little -... more >>
Return more than one item with an ASMX page
Posted by USCG at 3/10/2005 1:30:59 PM
My ASMX page currently returns one item in the XML
document when I click the invoke button. Can anyone tell
me how to return two or more items on the same XML
document?
I just need a simple example-I have included my current
code for reference. Thank you.
Imports System.Web.Ser... more >>
ref parameter in web service
Posted by John Lee at 3/10/2005 11:29:39 AM
Hi,
Is there any performance hits by using ref in web service call?
method 1: void foo(ref DataSet ds, string key)
method 2: DataSet foo(DataSet ds, string key)
which one will have better performance for a web method?
Thanks!
John
... more >>
DEPLOYEMNT!!!
Posted by Vai2000 at 3/10/2005 9:37:13 AM
Hi All, I have a doubt on WS. Initial deployment of an asp.net app which
calls a websvc includes copying all the webreferences and proxy files
(including the .cs files of the proxy)
If I build a new version of the asp.net app and don't change anything in the
underlying WS or the way it calls it,... more >>
Secure the code of a published WS?
Posted by MikeL at 3/10/2005 6:41:54 AM
Hello.
When I initially published a WS that I developed using VS there was a bug in
the code. In a client app that I wrote to test the WS I added a web
reference to the WS and ran a test, calling the published function, and it
bombed because of the coding error. To my surprise the source of... more >>
Getting 403: error attempting to access a webservice
Posted by JerryK at 3/9/2005 3:35:33 PM
Hi,
I have an app that needs to access a java webservice to validate a piece of
data. This webservice is found on a server that requires a SSL certificate
to authorize use.
I created a webreference with the provided WSDL file. However, when I call
the function I get a 403: Forbidden er... more >>
Webservice Error
Posted by Don Carter at 3/9/2005 3:04:14 PM
Hi Prior to sitting MCSD exam 310 I am going back over my Developing
Web services course book. (MOC 2524C). When I compile the first lab
(Lab03) - Woodgroove bank onsole app, The request part of the exercise
works fine, then I get an error message:
"An unhandled exception of type 'System.Net... more >>
performance
Posted by Fred Herring at 3/9/2005 1:25:04 PM
A few questions about internet bandewith if I may. Web services allows data
to be uploaded as well as downloaded. Why is upload speed substantailly
lower then dlownload speed? If a web service application is required to
push a lot of data what are the options for greater performance. I g... more >>
Posting XML as string to a webservice
Posted by Chris at 3/9/2005 1:25:01 PM
I'm trying so send an XML string to a ASP.NET web service with a simple
signature:
[WebMethod]
public string Save(string xmlString)
{
// do something with xmlString...
}
Whenever I try to call the webservice, either the xml string gets stripped
out (xmlString is empty) or a SoapExcep... more >>
HTTP POST fails on 4 megabyte body
Posted by Phil Davidson at 3/9/2005 12:47:46 PM
My ASP.NET 1.1 web service written in Visual C+ 1.1 (2003) fails with an
error 400 if the body of the HTTP post exceeds about 4 megabytes. (I
don't know the actual threshold of failure; it works correctly at 2
megabytes and at smaller sizes). The service does nothing except create
a log file on ... more >>
Problem generating c# proxy class from IBM websphere (AXIS) webservice WSDL.
Posted by ffhansix NO[at]SPAM hotmail.com at 3/9/2005 10:16:27 AM
Hi,
I am having problems with generating a c# proxy class from a IBM
websphere WSDL file, when running the wsdl.exe to create the c# proxy
file command i recieve an error:
Warning: one or more operations were skipped.
Warnings were encountered. Review generated source comments for more
det... more >>
right way to do publish-subscribe pattern in SOA
Posted by jbp123gg NO[at]SPAM yahoo.com at 3/9/2005 10:11:14 AM
Hi,
What is the best practices way to handle a publish-subscribe pattern
with SOA?
Say we have a application which is publishing messages that some event
occurs. Now there are multiple consumers of these messages, and we want
to be able to easily add or remove consumers. What is the right w... more >>
Machine Name Application calls
Posted by kevgibbo NO[at]SPAM hotmail.com at 3/9/2005 4:25:22 AM
Hi,
I have setup a .NET Chat Program using Web Services (concatenating new
messages to an Application call) and am currently trying to extend
this so that a user can send private messages. I believe there is a
Machine Name function in Web Services if so can I use this or do I
need to store th... more >>
web service isn't called properly
Posted by katherineyunzhou NO[at]SPAM gmail.com at 3/9/2005 4:09:20 AM
Newbie question.
I have a VB.Net windows application which talks to database through a
web service. This solution as a whole, works on my machine, works on
the server (if I go to the server machine and run the exe from bin
folder), however, it doesn't work if remotely calling the exe app on
t... more >>
Retrieve result from SqlCommand
Posted by Wong CS at 3/9/2005 2:14:17 AM
Dear developer,
I'm developing a web service with VS .NET and using C#. And part of the
webservice is to get data from database (by using SELECT), however, the
result from the sql query i cannot parse it to string, how can i get the
result from the SqlCommand..? dataset or datareader..?.
pl... more >>
Temporatry File Name
Posted by Thom Little at 3/9/2005 12:04:24 AM
I have just finished an ASP.NET application that needs one (the last)
remaining tweak. It writes two temporary files and then appends them to an
SMTP message.
ASP 3 had a function ...
GetTempName
.... to generate unique temporary filenames. Is there an easy standard way
to generate... more >>
WebMethod works fine until it hits the closing braces - throws System.StackOverflowException
Posted by niama at 3/8/2005 5:19:53 PM
Hi,
I am getting System.StackOverflowException when calling a web method.
The web method executes fine until it hits the closing braces that is
when the following StackOverflowException is thrown.
"An unhandled exception of type 'System.StackOverflowException'
occurred in mscorlib.dll".
Ca... more >>
How to consume a web service method from standalone vbscript...??
Posted by Bcurious via DotNetMonster.com at 3/8/2005 3:47:45 PM
Hi,
I am trying to access a webservice method from a vbscript.
I have a .cs file generated for my webservice.
I am not sure how to proceed from this point onwards....
I have tried generating .dll from .cs file using csc /t:library....
But I don't actuallly know how to call the method from ... more >>
When to use a singleton class?
Posted by Ben Ong at 3/8/2005 12:31:44 PM
Hi,
I created a singleton class in my .NET app to solely handle opening and
closing a connection to my database. I was wondering if this is a
good design or not. And can someone confirm with me: that a singleton
class has only one instance of itself correct? So if i have multiple
users us... more >>
Exception in configuration section handler.
Posted by Ollie Riches at 3/8/2005 11:19:46 AM
I am trying to configure trace listeners in my web config file for an
asp.net web service , but I seem
to be having a problem. I'm hoping someone will be able to spot what I'm
doing wrong...
It comes up with an error 'Exception in configuration section handler'
Line 38: </businessStream>
... more >>
What makes Integrated Security = true, when config file = false?
Posted by mrkbrndck NO[at]SPAM newsgroup.nospam at 3/8/2005 10:41:01 AM
The web service I created is using the new EL Data App Block to handle
connection to SQL Server (on separate machine). The dataconfiguration.config
file specifies the user, password, Integrated Security = false, etc.
When I run the web page that consumes the web service, I get the error
"Lo... more >>
Reducing XML output
Posted by Wagner at 3/8/2005 9:50:07 AM
Hi,
I'm a newbie in web services programing so I have a few questions:
Is it possible to reduce size of xml output produced by .NET web service?
I'm using SQLDataAdapter.Fill(DataSet, "Name") statement to fill dataset
which is returned then by service. Web service type is DataSet.
It works ... more >>
Web Service with Admin rights
Posted by sun_hcl NO[at]SPAM rediffmail.com at 3/8/2005 8:27:59 AM
I want to create a web service that can create the users in the
Windows Domain. I am using ADSI for that. Using ADSI i am able to
create the users eaisly.
But when i incorporated the code in the web service i get the
unauthorized error.
How should i confiure the web service so that it can c... more >>
|