all groups > dotnet web services > april 2006 > threads for april 1 - 7, 2006
Filter by week: 1 2 3 4 5
Calling .NET web service from standard asp
Posted by ecydba at 4/7/2006 4:47:02 PM
When attempting to use a web service that has NTFS permissions to the Domain
Users group and Anonymous access turned off in IIS on a WinXP machine with
the following classic ASP code:
Dim oSoap
Set oSoap = Server.CreateObject("MSSOAP.SoapClient30")
oSoap.ClientProperty("ServerHTTPRequ... more >>
401 Access Denied on web service call
Posted by Robert May at 4/7/2006 4:10:43 PM
Here's the setup:
Windows 2003 running .net 1.1 webservice with Integrated Authentication set.
Client machine running .net 1.1 on xp pro with latest service packs and
updates.
User also has Solomon 6.0, Microsoft Office Basic and Microsoft Office
Profesional, Acrobat reader, Adobe Acrobat... more >>
WebProxy url : web method call intermittently failing
Posted by John A Grandy at 4/7/2006 11:50:13 AM
I am always RAS'd into MS CorpNet VPN under my REDMOND account.
I am always able to ping "itgproxy.redmond.corp.microsoft.com"
I instantiate a System.Net.WebProxy object as follows:
using System.Net;
string proxyUrl = http://itgproxy.redmond.corp.microsoft.com;
WebProxy proxy = new WebPro... more >>
Need to be able to post without soap headers to a web service
Posted by Heena Patel at 4/7/2006 10:29:05 AM
Hi,
I have a implemented a web service interface that has a webmethod accepting
xml, but I need to also have post option available to my webservice. I
understand if a client Posts a SOAP reqyest, it will work with my webservice.
The problem is my client cannot send soap method, they will be... more >>
Refferencing a Webservice proxy class
Posted by Vi at 4/7/2006 7:28:01 AM
Hi,
I'd like to invoke a web service from a Windows Forms client, without
creating a web reference to the web service in the client project (VS.NET
2005).
I created the proxy class using wsdl.exe, added it to the client project and
I'm not sure what to do next in order to reference/invoke ... more >>
Error 500 - 'text/html'...expected 'text/xml' (string overflow?)
Posted by Jon at 4/6/2006 6:11:02 PM
Anyone seen a webservice return this error:
Error: Client found response content type of 'text/html;charset=utf-8', but
expected 'text/xml'.
The request failed with the error message:
--Error 500:--
I'm hitting a web service which retuns XML data in a string. It works fine
for smaller r... more >>
web service behind reverse proxy
Posted by bart at 4/6/2006 5:19:32 PM
Hello,
We have a web service running on IIS (running on port 8080) that is behind
an apache web server (running on port 80) with reverse proxy to the IIS.
Accessing the webservice with the url http://ourhost/webservice.asmx?wsdl
works fine (in browser). However, the urls described by the wsdl ... more >>
Using Enum type as Webservice Parameter
Posted by Martin Engelhardt at 4/6/2006 6:33:02 AM
Hi,
I want to use the following:
Class Test ...
Public Enum TestEnum as integer
Enum1 = 128
Enum2 = 256
End Enum
<Webmethod...> _
Public Sub TestSub( parm as TestEnum)
....
End Sub
....
End Class
The enum we want to use is a enum from oracle .net client (db-datatypes)
wh... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Precompile ASP.NET Web services problems
Posted by Bragadiru at 4/6/2006 12:00:00 AM
Hi,
I have 2 pbs :
1. When I'm using VS2005->Publish Web site => everything is pre-compiled
fine (App_global.asax.dll is generated, too), except that I don't find
Global.asax file in my destination folder and I need to copy it there
manually. What is strange : Global.asax.resx file is co... more >>
Webservice fail when return a DataSet
Posted by Mauricio Pires at 4/5/2006 1:34:02 PM
I create a Webservice that has only 2 methods.
One of then return a string "Hello Word" that works ok.
The other one returns a Dataset that doesn't work. When I calls this method
the error "There is an error in XML document (1, 220)." is thrown. I don't
know what's is wrong.
Could someone hel... more >>
Files are locked after updating web reference
Posted by George at 4/5/2006 1:32:02 PM
I have configured a SchemaImporterExtension in machine.config, which, when I
choose Add/Update Web Reference in Visual Studio 2005, iterate through all
the referenced assemblies by the current project to resolve types defined in
the wsdl. It works beautiful in our development enviorenment, exc... more >>
String length
Posted by Mark at 4/5/2006 11:38:30 AM
Is there a maximum string length aside from the default .NET string data
type maximum length that can be passed into a web service?
Thanks.
Mark
... more >>
WSDL: customize wsdl:port\soap:address\@location
Posted by JT at 4/5/2006 11:03:02 AM
Hi,
We have 2 servers having the same web site running on port 8080. These two
servers are load balanced and have DNS name, e.g. my.server.com. Now on both
of these two servers, we put the same web services, e.g.
MyWebService\WS.asmx, so the URL to the web service looks like:
http://my.se... more >>
Serialize SOAP message
Posted by Rabbit at 4/5/2006 4:44:01 AM
Hello,
I have a web service that receives (accepts) a xml message ("xmlmessage") as
a XMLElement. I need to serialize the xml message in VB.net and then HTTPpost
it to an URL.
What code can I use to serialize the "xmlmessage"?
Thank you in advance.... more >>
Serialization issue
Posted by Rucha at 4/5/2006 4:23:01 AM
We are using ACAServices in our project, and are passing entity classes as
parameters to the ACAServiceMethod. We are using a private variable
entityState to indicate whether the entity is new/updated and so on. At
present we are not using any custom serialization in our project, we just
d... more >>
WS needs reference to custom component
Posted by Mike Lewis at 4/2/2006 9:30:04 PM
I need to add a reference to a custom component in a web service. I created
a new web service using VS2005 but there was no place to add a reference in
the Solution Explorer. I could use Notepad to create the web service but
I'd prefer to create it in VS. What do I need to do? Thanks!
... more >>
Returning large number of results from a WS
Posted by kamran at 4/2/2006 4:47:08 PM
Hi,
I have a web service that may return a very large amount of data. I want
that data to return in chunks, like first return 10% of data than return the
next 10% and so on, until all is finished. How are other people doing this?
I have come up with the following way:
While inside the webmeth... more >>
|