all groups > asp.net webservices > september 2005
Filter by week: 1 2 3 4 5
Error connecting to Server
Posted by Miles at 9/30/2005 1:37:13 PM
Hi, I am trying to build an web based database with Access as my back-end,
but get the following error when I try to run it.
"Error while trying to run project: Unable to start debugging on the web
server. You do not have permissions to debug the server. Verify that you
are a member of th... more >>
Again: The underlying connection was closed: Could not establish secure channel for SSL/TLS
Posted by jsanjosem NO[at]SPAM gmail.com at 9/29/2005 4:53:30 AM
I am trying to consume a Web service from ASP.NET that requires a
certificate. The code I am using is:
WSClass obj = new WSClass();
// Load the client certificate from a file.
X509Certificate x509 =
X509Certificate.CreateFromCertFile(@"micert.cer");
// Add the client certificate to the C... more >>
How to Trap and Track SOAP messages ??
Posted by Vijay Nagarajan at 9/29/2005 4:25:09 AM
Hi,
I am writing a asp.net web service. I now need to analyse every
incoming SOAP message and also be able to track if they reached
effectively.
How can u trap the SOAP messages in C# and is there any way of knowing
which node the message is passsing through currently ???
Thks a mi... more >>
How to automatically start an ASP.NET Web Service
Posted by Svante at 9/29/2005 1:39:19 AM
A Web Service, or any ASP.NET application for that matter, is typically first
started on the first request to it.
I have a need for a Web Service to be automatically started, without
receiving a request first. I'd like to avoid having yet another application
as a service kick-starting the W... more >>
Webservices vs Stored Procedures
Posted by Tim Greenwood at 9/28/2005 3:14:10 PM
Can anyone give me a GOOD reason for opting to use webservices on an
internal network for processing that will never be exposed directly to the
public? I'm rather adamantly against going this route and would rather
continue using Stored procedures and let the web/application developers
crea... more >>
Deploying a web service
Posted by Jerry Camel at 9/28/2005 11:04:56 AM
I created a web service and a consumer - both work just happily on my local
machine. I now want to move the web service to a corporate development
server ( and eventually into production)...
Do I just copy the stuff from my local inetpub to the new server? And do I
have to recompile the cons... more >>
reading header info
Posted by Mark at 9/28/2005 8:39:10 AM
i have a very simple web service. this is called from a .net app
in this webservice if i wanted to capture the cookies in the header coming
from the calling app, how would i do this?
thanks.
Imports System.Web.Services
<System.Web.Services.WebService(Namespace:="urn:Example1")> _
Pu... more >>
Sending email from within a web service
Posted by Joe at 9/27/2005 3:51:09 PM
I have a method which sends email to & from a specific account. All was
working fine until the server was upgraded to an AD/DNS server. Now the
email never goes through.
I can run the same code from an exe and it works fine.
MailMessage mail = new MailMessage();
mail.Body = msg;
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Web App can't find web service
Posted by WhiskyRomeo at 9/27/2005 2:15:04 PM
When my web service and web application are on the same server (Windows 2003
Standare), everything work fine. When the web application is on a different
server (Windows 2003 Web Server), the application fails giving the error
message I have posted below the code. Any help is appreciated.
... more >>
Web service client question
Posted by Sebitti at 9/27/2005 5:01:06 AM
How can I use webservice without adding web reference to my winforms
application at design time. I need to be able to change server url at
runtime. What is the simplest way to achieve this? Also any vb code samples
would be appreciated.
Thanks :-)
Johanna
... more >>
Need help trapping an exceptions
Posted by rviray at 9/26/2005 5:57:28 PM
I hope that someone has experienced this problem before so they can hel
shed some light to this problem. This is a long thread, but I want t
make sure that I don't miss anything.
Ok, I have developed a Data Search Web Service. The point of the We
Service is to give me back information based o... more >>
ASP timer? How?
Posted by Walter Klein at 9/26/2005 12:00:00 AM
Hello NG!
is it possible to programm something like that:
Client-Browser Server
request site
-------------------------------------->
send site
<-------------------------------------
...................
after delta t (3 seconds)
send sit... more >>
Server Application Unavailable - VS 2005 Web Service
Posted by Michael C# at 9/25/2005 5:28:27 PM
Hi all, I've installed VS 2005 Beta 2 on a Windows XP Virtual PC. I can
create Windows apps and they work just fine. In IE I get this error when
try to run a .NET 2.0 Web Service on the local IIS installation (I'm trying
to call it from IE using a line like the following -
http://localhost... more >>
VS 2005 Delete a Website
Posted by milkyway at 9/25/2005 5:09:29 AM
Hello,
I have created many sample web sites for testing and now I would like
to do some cleanup.
When doing searches, it seemed that there were a good number of
approaches to removing a web site / application from Visual Studio -
some mentioning the use of IIS.
Is there an official sugge... more >>
List of web services?
Posted by vermyndax NO[at]SPAM gmail.com at 9/24/2005 10:57:27 PM
Does anyone know of a website that maintains a list of web services
that can be freely consumed?
I'm thinking of a project that would benefit from a web service and I'm
sure there's one out there, but can't seem to locate it.
... more >>
WS Security Header (WSE 2)
Posted by nsyforce NO[at]SPAM aol.com at 9/24/2005 6:26:09 AM
I am writing a web service that is taking advantage of WSE. I'm
starting out by just sending a userNameToken with a plain text
password. The class I'm using to implement the userNameTokenManager
works as expected with the authenticateToken method. I've debugged it
and can see where the userNam... more >>
Web Service HTTP 401: Access Denied Problems
Posted by David Palau at 9/23/2005 2:14:26 PM
We have an internal company WinForms application that makes some calls
out to a intranet web service (once at application start-up for some
configuration info and then periodically during the life of the
application for specific functional requests).
We are getting System.Net.WebException wi... more >>
Detecting webservices progmatically...
Posted by Ric Paton at 9/23/2005 10:22:55 AM
Guys,
Let me explain what I want to do, then hopefully you can tell me how I
should go about it.
__[context]
I have an XMLHTTP component as part of a project (ASP.NET), it's
contained on the toolbar and has properties that can be completed in the
properties tab.
Now the XMLHTTP com... more >>
Calling a web service from ASP
Posted by Igor at 9/23/2005 8:14:04 AM
Hello y'all.
I've been hitting my head against the monitor for the last two days
trying to figure out the following.
I have a perfectly good web service that I can call from VB.Net and it
works like a charm.
Now I am trying to transfer this call to classic ASP and run into
problems.
I am atte... more >>
Web service slow on first call? In memory or cache option for web service?
Posted by RJ at 9/21/2005 2:03:18 PM
I'm fairly new to web services, but I think I understand that they operate
in a stateless manner by design. It seems that there is a delay the first
time you call the web service methods, or call them after some period of
inactivity. I'm guessing there is creation of some proxy which takes ti... more >>
Local Drive File Permissions
Posted by Brandon at 9/20/2005 2:00:06 PM
Sorry for the cross post. I posted this in web services general, but after
thinking about it, I think it will get more hits here in asp.net web
services. I'm on Windows XP Pro running a web service on my local pc (which
will eventually be moved up to a server). I need to access several files o... more >>
Calling .Net web service with HTTP/1.0 protocol
Posted by jberg NO[at]SPAM waveseeker.com at 9/20/2005 1:58:14 PM
All,
We are using Oracle 9i R2.xx PL/SQL function to call a VB .Net
(version 1.1) web service residing on an IIS server. The web service
appears to be executing, but we can not get the return value from the
Web Service. When we do the get_response we get a Response of 100, and
Reason of "Cont... more >>
Knowing which browser is accessing
Posted by Irepan at 9/20/2005 10:26:04 AM
I'm building a windows service to use with my installation project, this
installation will get some values from the webservice, is there a way in the
webservice to only let my program to use this webservice, i mean i don't want
IE or some other program to access this webservice but this progra... more >>
ASP.NET Webservice Account
Posted by Sachin at 9/19/2005 8:21:43 PM
Hi All,
I uderstand that the web service runs under the ASPNET service account.
Is it possible to change this and make web service run under some other
account, say domain\user?
If yes, how?
Thanks in advance
Sachin
... more >>
I'm new, is this correct???
Posted by David Lozzi at 9/19/2005 5:39:04 PM
I'm new at web services and XML, however I need to create a web service that
connects to universe (IBM) and returns XML. Here's what i've done so far. Is
it correct? I guess if it returns what I want, its correct... but is there a
better way to do this?
Here's my code:
<WebMethod()> Publ... more >>
Web service setup project
Posted by RJ at 9/19/2005 1:27:23 PM
How can I specify creation of a new web site, for a web service, instead of
a new virtual directory under default web site, within a web setup project?
I need to run the setup MSI in unattended ( silent) mode, with no user
input, so the setup project must have the new web site name included.
I... more >>
IIS.msc "Web Service Extensions" ... where is it ?
Posted by John Grandy at 9/19/2005 10:44:37 AM
In KB article 817267 , it states :
1. Click Start, point to Programs, and then click Control Panel.
2. Double-click Administrative Tools, and then double-click Internet
Information Services (IIS).
3. Click Web Service Extensions.
4. In the details pane, click ASP.NET v1.1.4322 in the Web Ser... more >>
New to web services AND XML, But this should be easy....
Posted by David Lozzi at 9/19/2005 12:00:00 AM
Howdy,
I got the debug working great on a web service I'm writing. Currently, a
order number is requested, and it returns a vlaue from the order. Works
great! However, now that I got the connection down, how on earth do I format
the output of the web service into XML? I realize the output i... more >>
Can I use SoapExtensionAttribute at the client proxy side?
Posted by A.M-SG at 9/13/2005 7:04:17 PM
Hi,
Can I use SoapExtensionAttribute at the client proxy side?
Thank you,
Alan
... more >>
Web Service Identity
Posted by Marshall at 9/13/2005 4:02:49 PM
Hi All,
I have a web service [1] that runs under its own IIS Application Pool with
the identity of a specific domain account. The web service [1] is setup for
windows authentication only.
Within my web method I require the caller to be a member of a specific
domain group using the Prici... more >>
Web Service Security: impersonate="true"
Posted by Marshall at 9/13/2005 3:28:06 PM
I've created a web service in c# that configures IIS using Directory
Services. In order create and configure IIS sites the web service needs to
run with admin privileges so in my web service web.cofig file I impersonate a
system account with the appropriate privileges.
<identity impersonat... more >>
The request failed with the error message:Object moved to here
Posted by Linh Phan at 9/13/2005 7:22:21 AM
Hi,
I ran a Microsoft SQL report (Reporting Services), but I sometimes get the
following error. I've searched in Google and MSDN, and they tell many
symptoms of this error, therefore, I am not sure what going on.
Please tell me the best way to fix this error.
Thanks!
Linh
System.Net... more >>
The remote name could not be resolved
Posted by reda at 9/13/2005 6:50:08 AM
Hi All
I develop a web application over local area network. I host a web service on
a local web server and I am trying to consume it from another web application
hosted on a another web server inside the same LAN. in development
environment every thing is ok but in the production I receive ... more >>
silly question...
Posted by Wendell Buckner at 9/13/2005 12:00:00 AM
Can I type something like this in my browser:
http://localhost/SQNWebService/SQNGetAccount.asmx?Branch=0&Bank=0&Acno=1&UserID=1&TerminalID=1&User=wendell&Password=wendell
and get back the xmal data from the webservice instead of the
test/description page from Microsoft?
[Apparently this ... more >>
C# Interview job problem
Posted by programmerforknowledge at 9/11/2005 7:40:49 AM
Hi All
I am fresh college graduate who has done C and C++ during college
times.After that i had done a C# course from one of our local computer
institute.The course is BCM which ran for 1 year.But now when i am
looking for job the questions asked in interview are really very very
weird and does... more >>
Soap Header
Posted by mmorrison93 NO[at]SPAM yahoo.com at 9/9/2005 12:01:03 PM
I have a question about adding a soap header to a soap request. I'm
currently trying to consume a web service that requires that I place
authorization information in the header. The proxy class that I am
working with inherits the
System.Web.Services.Protocols.SoapHttpClientProtocol class. Is the... more >>
Beginner Web Service error: Object reference not setHello,
Posted by Derek Correia at 9/8/2005 2:37:27 PM
Hello,
I'm just getting started with web services. I've written one that takes
an integer and searches an Oracle database for that customer ID. I want
it to return all records with that customer ID. Below is the code of
the ASMX page:
---------------
<%@ WebService Language="VB" Class="... more >>
An existing connection was forcibly closed by the remote host
Posted by Artur at 9/8/2005 4:43:04 AM
Dear colleagues,
I've got a problem that I cannot fix for 3 days.
I have to use remote methods, defined by WSDL at remote host, in my aspx
pages.
The methods work through SOAP protocol.
The communication works well under http protocol. However, the problem is
make it work through https... more >>
SOAP and DIME
Posted by Sarmatia NO[at]SPAM gmail.com at 9/7/2005 10:48:41 AM
I'm trying upload a file with related data to a WebService.
DIME samples I've found show how to upload a file.
SOAP samples I've found show how to submit data.
But, I have yet to find how to do both.
If the DIME attachment is packaged external to the SOAP envelope, how
are the two put tog... more >>
WEB Service help needed
Posted by . . at 9/6/2005 3:13:20 PM
Hi
I would like to have some help with web service . I have a ASPX page
with four buttons . Each of the button will pull some data from SQL
Server database and show on the web page . When a user will click on the
button they the button will puu the data and show on the web page . I
have ... more >>
Windows Authentication and web services with WSE 2.0
Posted by Ryan Taylor at 9/6/2005 9:11:18 AM
Hello.
I haven't received a response in the general microsoft.public.webservices
forum so I thought I would try this here. Does anyone have a solution to the
following issue?
I am trying to develop a secure web service with VB.NET and WSE 2.0. I am
running the ASP.NET client and the ASP.... more >>
ASP.NET web service
Posted by . . at 9/3/2005 6:59:34 PM
Hi
I have a quick question about asp.net web service . I am developing a
web system using Visual studio.net ASP.NET and VB .net . I have been
told to make some aspx pages . I have got the project specification
which gave me some web method outlines . My question is howcome I will
use web m... more >>
403 1 Forbidden: Execute Access Forbidden
Posted by Layne L via DotNetMonster.com at 9/2/2005 9:35:10 PM
Trying to install a .NET application on a Windows 2003 Server and for any .
aspx file get the following error:
403.1 Forbidden: Execute Access Forbidden
The application has worked fine on XP systems and multiple Windows 2000
servers. This is what I have tried so far:
-Verified Execut... more >>
Closing TCP Connection
Posted by Mike King at 9/2/2005 5:14:58 PM
How do I close the TCP/IP connection to a web server/web service? I have
noticed when I make a SOAP request, a connection is create with the server
and it never closes until the calling application is close. I know this
because I am watching the IIS performace counter called "Current
Conne... more >>
storing error dumps for later persual
Posted by apandapion NO[at]SPAM gmail.com at 9/2/2005 7:49:01 AM
I have an asp web client I have written that talks to a number of web
services. Currently, I have customErrors set to 'Off', so the detailed
stack dump pops up and I can find the part of my code that is borking.
The client is about to go live. In the event an exception does come up
in a live... more >>
IXmlSerializable: return type & difference IE / webservice
Posted by Thomas D. at 9/1/2005 2:20:02 AM
Hello all,
I'm using the IXmlSerializable interface for a project and encounter some
problems when testing my webservice in a client application. I know this
interface is undocumented and not intended for use, but I think this is the
only solution for my situation. I searched the web, in th... more >>
Exposing a webserivce (Biztalk)
Posted by doron at 9/1/2005 1:23:45 AM
Hi all,
I'm exposing an orchestration as a web service which simply replies
the same object it receives by calling an internal ws I wrote which
does the same thing. (getting the object and returning it)
While I was using a simple string the circle worked fine, but after I
switched the o... more >>
calling Java WS method returning array
Posted by Mrozik at 9/1/2005 12:00:00 AM
after parsing WSDL definition of java
WebService, C# proxy class contains data strutures
(I'm using RPC\encoded):
[System.Xml.Serialization.SoapTypeAttribute("DateString", "http:/
/xxx.com.pl")]
public class DateString {
/// <remarks/>
public string value;
... more >>
|