all groups > dotnet web services > october 2006 > threads for october 15 - 21, 2006
Filter by week: 1 2 3 4 5
Dataset and Nested Class???
Posted by LW at 10/21/2006 9:34:02 PM
Hi!
I have a DataSet and a class in my Web Service.
My output for example is:
<OrderInfo>
<CustomerID>VINET</CustomerID>
<OrderID>10248</OrderID>
<OrderDate>07/07/1996</OrderDate>
<ShippedDate>08/08/1996</ShippedDate>
</OrderInfo>
I would like it to be:
<OrderInfo>
... more >>
I want to Dynamically Discover Web Services
Posted by John Paul. A at 10/21/2006 6:59:02 PM
Hi,
I have a 3rd party web service running in a Web Server within our network.
The web service sends "Hello" message when joins the network and also sends
"Bye" message when leaves the network.
I want to write a client code to receive the "Hello" message as well as the
"Bye" message sent b... more >>
System.Guid
Posted by Michael Primeaux at 10/19/2006 11:13:56 PM
I have a simple .NET 2.0 web service created with VS.NET 2005 with a single
web method with the following signature:
[WebMethod]
void HelloWorld(Guid parameter1);
When calling this method I receive the following error:
System.IndexOutOfRangeException: Index was outside the bounds of the ar... more >>
Weird Soap Extension Problem
Posted by Frederik Vanderhaegen at 10/19/2006 9:01:41 PM
Hi,
I'm writing a simple soap extension for a webservice I developed (without
the use of an extension the webservice works perfect).
The extension is registered through the web.config files of my webservice
and my application.
In my extension I override the Chainstream method and implement ... more >>
Global class in a DLL
Posted by paulo at 10/19/2006 5:50:25 PM
Hello,
I have a DLL library containing some web services which are declared in
each .asmx file in the following way:
<%@ WebService Language="C#" Class="LibraryName.WebService" %>
I would like to log every unhandled exception that occurs on any web
service declared in the library to a f... more >>
Production requirements to host ASP.NET web service which uses VB 6.0 COM Components
Posted by ravichandranmuthu NO[at]SPAM gmail.com at 10/19/2006 5:16:26 AM
Hello,
I have developed a asp.net web service which uses com interoperability
and is working fine in my machine. How do I move this to Production
server which just has IIS5.0 and has no dotnet framework.
What are the basic requirements for the Production Server to host my
web service and wi... more >>
Web service will not run
Posted by GSwan at 10/18/2006 8:08:02 AM
Hi,
I've been trying to implement a web service which will run under a specified
account. The reason for this is so that i can call an SSIS integration
package from a remote PC application. The SSIS package has to access file
system shares and hence needs more rights than just the ASPNET lo... more >>
web service logging
Posted by gabedog NO[at]SPAM gmail.com at 10/17/2006 9:43:34 AM
Is it an acceptable practice to log data to log files on a web server?
I've heard that some developers don't like to do it. I've been using
Log4Net to do some trace information on some web services, especially
when it's initially deployed. It cleans up after itself, so I don't see
disk storage a... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Best way to fetch dynamic XML data
Posted by Ben Ellis at 10/17/2006 4:16:01 AM
Hello all,
I'm wanting to know which method I should use to fetch dynamic XML data.
Is it better to use web services or to fetch the data from a dynamic XML file?
Either, use a webMethod to return a byte array of the XML data,
or use an ASP page that generates the XML data.
... more >>
ASP and web service ?
Posted by KaNos at 10/16/2006 8:29:43 PM
Hello service world;
My question is really simple?
How to consume a .Net web service in an asp page (not .net old asp) in
server side (not in client side like ajax) ?
Thanks for responses.... more >>
Advice on Web Service modelling
Posted by Anders K. Olsen at 10/16/2006 5:14:44 PM
Hello group
I would like some advice on how to model my webservices.
Our application is made up of a number of independent modules that handle
different parts of the application logic. It is a client-server application,
where the server exposes some web services that the clients can use.
... more >>
Multiple client connections advise
Posted by D. Yates at 10/16/2006 12:22:35 PM
Hi,
I'm about to embark on a project that will both send and receive information
to/from our client computers in the field.
The area that I still need to finalize is the method of communication and
the technology to use.
The following will be true:
1. Communications will... more >>
Is there any way to use comunications with web services skiping the antivirus/firewall alerts?
Posted by jb at 10/16/2006 12:05:39 PM
Hi,
I've a software in winforms who needs to read data from a webservice in
Internet, but the mcafee antivirus or others, are asking for permissions to
the user to allow the connection to internet. This is a problem, because the
users of the software aren't computer engineers, they doesn't ... more >>
Specifying namespace prefix?
Posted by Adam Eccleshall at 10/16/2006 4:46:01 AM
Hi,
I'm trying to write a routine to extract results from a web service written
in VS 2005 using XPath, however VS doesn't put a prefix on result namespaces
by default, so in the output from a service such as
<soap:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://w... more >>
Using multiple web services through proxy giving error
Posted by Ankur Goenka at 10/16/2006 1:07:02 AM
Hi,
I am trying to include two proxy classes (from two different web services
say Namespace.Service1 and Namespace.Service2) in a project (C# Class lib).
These webservice internally use (as input or return) custom classes' objects
e.g. userinfo, customerinfo etc. When i generate the proxy ... more >>
Processing an aspx xml-variable in xsl
Posted by djamilabouzid NO[at]SPAM gmail.com at 10/15/2006 12:22:13 PM
Hi,
I want to build an aspx page with three combo box. Each combo
represents data from the database. I have three xml variables that I
build dynamically, let's say: var1, var2 and var3. I pass these
variables from my aspx program to my xsl program. If I put each
variable in a file: for examp... more >>
|