all groups > asp.net webservices > november 2003 > threads for november 22 - 28, 2003
Filter by week: 1 2 3 4 5
How to return image URL via web service
Posted by deja NO[at]SPAM radicalthinking.net at 11/28/2003 8:26:34 PM
I am looking to write a webservice that responds with a image URL and
target url
the two results will be seperatly requested.
Basically I want people to be able to put this services link in the
IMG tag and the href tag and get a database returned IMG path and href
path. Does anyone have an... more >>
Problems with web service access
Posted by Sky Fly at 11/28/2003 8:01:54 PM
Hello,
I have a web service on a server which handles requests
over the internet from a VB.NET client application
running on a Windows XP Professional machine. I am
having a problem getting the client machine to
connect to the web service. It is simply unable to
connect, as though there is n... more >>
Problems with asp.net and jws
Posted by robert NO[at]SPAM disicom.com at 11/27/2003 3:24:26 PM
Hi Forum, there is a web service with a jws extension. I want to
create an application in ASP.NET that call the web service, i have the
documentation, url and user and password for that. The problem is that
when i create a web form and want to add a web reference to the
project, i put the url an... more >>
Web References
Posted by report_1979 NO[at]SPAM yahoo.com at 11/27/2003 2:57:44 PM
hi,
There are 10 machines which run the same webservice. I have 10
webreferences in my client. Only during runtime, will i decide which
webservice to call.
I dont want to have a swich case statement and handle the 10
situations separately. Is it possible to create objects of the
webref... more >>
structures vs classes
Posted by Gian U. Uy at 11/27/2003 10:55:33 AM
Hi!
I'd like to know is what are the prons and cons of using structures (data
types declared as struct [in c#] or structure [in vb.net]) as against
classes when passing data from and to a web service?
... more >>
howto deploy new versions of "up and running" web services ???
Posted by Antonio Lopez Arredondo at 11/26/2003 8:11:06 PM
I have some web services running in a production server.
meanwhile I develop new versions in a dev environment.
what should I do to deploy the new versions of "up and running" web service
?
I cannot simply overwrite the existing DLL because is locked by ASP.NET.
I tried to stop IIS and even s... more >>
web service creation/ consumption
Posted by max at 11/26/2003 1:03:37 PM
Hi there all,
Big time newbie question, but do any of you know of good web sites and/ or
books that cover the basics of creating and consuming web services in
VB.NET?
I am performing a final year degree project and all the books i have jump in
at the deep end. i found MS's very basic help, whic... more >>
creating dll on server
Posted by aramisq NO[at]SPAM o2.pl at 11/26/2003 10:38:07 AM
I have written a simple webservice in VS.Net and it works, code is
compiled and placed in /bin directory, but if I compile file manually:
csc /t:library Service1.asmx.cs
and replace oryginal dll, it fails.
My .dll has smaller size than original, so I think that I missed
something.
thanks i... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
virtual directories and IIS
Posted by kousaria NO[at]SPAM yahoo.com at 11/25/2003 8:06:19 PM
I created a new directory on my hard drive C:\test. I mapped a virtual
directory called MyWeb to this directory. Now when I try to create an
ASP.NET project (WebService1) in http://localhost/MyWeb/WebService1 I
get the error message:
Unable to create Web Project 'MyWeb/WebService1'. The UNC shar... more >>
VS.net Walkthroughs / Data access in Distributed App?
Posted by Steve Nihan at 11/25/2003 9:54:57 AM
I've been following a solution in the VS.net walkthroughs, and have come up
on a wall.
I have a solution with three projects in it. One is a web service, with
perameterized SQL Adapters, Another is a asp.net web app, and the other is
the windows form client app. The problem I'm having is tryin... more >>
Web Service Deployment
Posted by meena at 11/25/2003 8:20:34 AM
Hi ,
SCENARIO:
I have developed an ASP.NET Web Service. It has the
following files
a)Service1.asmx and associated Service1.asmx.cs file'
b)XMLSchema1.xsd and associated XMLSchema1.cs file
c)Web.config file.
My clients are developers of a front end ASP.NEt Web
application which wi... more >>
How I get my WebService to handle url encoded parameters
Posted by Bob the coder at 11/24/2003 6:56:26 PM
I have a webservice like so:
[WebMethod]
public string EnterTheNumber(int number)
{ return "Incorrect! Try again!"; }
'Accessing XML Web Services from a Browser' in the .NET
Framework Developer's Guide describes how
'http://servername/vdir/webservicename.asmx/Methodname?
parameter=value'... more >>
WebService Performance...
Posted by Mirco Kaffsach at 11/24/2003 6:21:54 PM
Hi @all,
I've got some problems with my WebService...
The WebService runs more than 30 seconds an the site is frequently visited
( nearly 1200 times a minute )
The problem is, that the server works fine if the requestlimit is about 10
requests, but if it grew up to more than a specific nu... more >>
SecurityException on EventLog.CreateEventSource
Posted by Bragadiru at 11/24/2003 3:15:04 PM
Hi All,
Can anybody tell me how to write to the application event log with a new
source. I'm running the .Net example code
but can't get it to work unless the source is set to application. This is
driving me nuts. I have created a new WebApplication1 so as everything is
set to default... more >>
Process.Start() - Works on DevBox but not on Server...
Posted by Kautzky at 11/24/2003 1:21:04 PM
Situation
On a Windows 2000 workstation a web service using System.Diagnostics.Process. Successfully executes .exe and returns.
On Windows 2000 Server creates process, but does not execute.
I have given as many permission to the server (breaking every security policy I know of) trying to get... more >>
True push mechanism for Web Services on mobile devices
Posted by Vincent at 11/24/2003 2:33:39 AM
Hi,
Could anybody tell me whether a true push mechanism does
exist for Web Services on mobile devices.
An example of such a use, is a telephony application
running on a mobile device that has to be informed when a
call comes in.
Thanks in advance,
Vincent... more >>
Perameterized Query on webservice?
Posted by Steve Nihan at 11/23/2003 6:13:03 PM
I've created the following distributed application:
Solution
EDSQLWSVC EDEmployerWinClient Project3
Web Service winform app asp.net web app
My web services are fine....and I can get data in, out etc. My problem is
this:
I want to use the data adaptors in the web services for the window... more >>
|