all groups > dotnet web services > april 2006 > threads for april 8 - 14, 2006
Filter by week: 1 2 3 4 5
WebSerice Call from Application to https://
Posted by Aikido at 4/14/2006 8:52:01 PM
Hi,
I'm having an issue calling my WebService from an application.
I published the WebService successfully on our DMZ box using https://, and
in a Windows Application I made a WebReference to the Service without an
issue, passing the correct user/password to the site. However when I execu... more >>
web reference in a .net class library
Posted by russell.lane at 4/14/2006 6:04:18 PM
I have a web service that exposes database contents as disconnected
datasets. I would to use that web service from within a class library.
I have included a web reference to the service in my class library project.
If I bring up the reference in the object browser, I see the web service
n... more >>
Webservices and Access 2000.
Posted by UJ at 4/13/2006 1:08:34 PM
Can you make calls to web services with Access 2000?
... more >>
WebService proxy not generated classes
Posted by vincent at 4/12/2006 11:13:16 PM
Hello,
I'm webreferecing some webservice.
I have one WebMethod returning "List<SomeClass>"
I don't want "SomeClass" to be proxy generated on client side But i want
to use the same "SomeClass" that i have on server side.
I have seen one day an attribute to put on the WebMethod to specify ... more >>
DIME
Posted by Matt B at 4/12/2006 6:20:23 PM
Does anyone know if DIME is available for Visual Studio.NET 2005?
I have Visual Studio.NET 2003 and I installed the Web Services
Extension pack 2.0 in order that I could use DIME. Seems to work well.
I'll probably getting VS.NET 2005 soon, which uses Extension pack 3.0.
I know this extension... more >>
Help - How to forward an asmx?wsdl request to an alternate WSDL URL?
Posted by jjouett at 4/12/2006 3:33:28 PM
I'm setting up a manually created WSDL file that defines the specifics
of the required elements, default values, etc. instead of using the
generated WSDL from the asmx?wsdl mechanism. Everything works with my
web service, but I would like to have some mechanism that forwards any
asmx?wsdl reque... more >>
Problem with DIME attachments
Posted by Matt B at 4/11/2006 6:34:56 PM
Hi all,
This problem is close to driving me insane.
Basically, I'm trying to use DIME to add an attachment to a SOAP
message and send it to the web server. The WSE 2.0 toolkit is
installed, which allows for DIME to be used and everything is set up
correctly as far as I know.
My code is:
... more >>
Web service parameters
Posted by Matt B at 4/10/2006 10:15:44 PM
Hi all,
I am creating a web service which takes in a bulk of training text for
each of two authors, along with a third bulk of anonymous text, and
predicts which author is most likely to have written the anonymous
text.
I have no experience with web services and I am confused about the
bes... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Some basic questions
Posted by Peter Morris [Droopy eyes software] at 4/10/2006 7:17:00 PM
Hi all, I have some basic WebService questions
#1
Let's say I have a business class named "Customer". The customer would be
able to log in and update their personal information like so
void UpdateCustomerInformation(Customer customer)
changing information such as their telephone number ... more >>
Passing an enum to a web method
Posted by Tony at 4/10/2006 1:49:01 PM
Does anyone know how to pass an enum to a web method?
public enum RptSetStatus
{
PendingApproval,
Active,
}
[WebMethod]
public void SetRptSetLoadComplete(Guid oUserInstance, int nRptSetId,
RptSetStatus eRptSetStatus)
{
}
Tony
... more >>
Session State
Posted by Victor Paraschiv at 4/10/2006 12:00:00 AM
I have created a simple webservice using C#. Now I want to consume it
from a windows application.The problem is that the information saved in
Session object do not persist across calls of different methods from the
same instance of application.All of them have the
[WebMethod(EnabledSession ... more >>
Java client to C# web service
Posted by maleone41 NO[at]SPAM gmail.com at 4/8/2006 11:50:20 AM
I have a C# web service running on a machine that I would like to
connect to with a Java client.
To verify the web service is working properly, i quickly made a C#
client, added a web reference, and connected to the web service no
problem.
My problem is developing the Java client. I'm crea... more >>
|