all groups > dotnet web services > august 2006 > threads for august 15 - 21, 2006
Filter by week: 1 2 3 4 5
SOAP exception
Posted by Yossi at 8/21/2006 1:00:45 PM
VS2005
I have a web service that runs just fine. On the server side I always
return a string that either indicates failure or returns the requested data.
I want to raise SOAPExceptions instead of returning a string with the value
set to "method failed".
So I modified my code, but I am u... more >>
Object reference not set to an instance of an object.
Posted by syed at 8/21/2006 7:45:01 AM
Hi all,
I am trying to invoke xml web service from dot net assembly . it is fails
to create the proxy object and throw the below exception.
Pls any suggestions.
Error Desc:
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the exec... more >>
Problems with response from webservice.
Posted by Jannicke at 8/21/2006 1:55:01 AM
Hi. I have a project that contains a webservice. To test my webservice I have
another class in the same project. In the project I have added a webreference
to my webservice. In my class file i call the webservice which should return
a string value in the response. The problem is that the respo... more >>
How to create a WebService with Document/Literal
Posted by Rodrigo C. Souza at 8/20/2006 6:08:02 PM
Hello all,
I´m trying to create a simple web service to be called by a J2ME
application, but when I call the tool to create the stub classes it give me
following error:
java.lang.Exception: Soap binding uses wrong encoding SOAP style (rpc).
Document/literal is the only supported SOAP style.... more >>
Is Microsoft.com Web Services 1.0 available ?
Posted by Tony Girgenti at 8/20/2006 12:51:24 PM
Does anybody know if the Microsoft.com Web Services 1.0 is available ? In
reading the article at this web site:
http://msdn.microsoft.com/webservices/webservices/building/livewebservices/otherwebservices/default.aspx?pull=/msdnmag/issues/03/12/xmlfiles/default.aspx
It gives all of the links t... more >>
FULL URL from VIRTUAL path
Posted by tommaso.gastaldi NO[at]SPAM uniroma1.it at 8/18/2006 4:42:53 AM
Hi friends
I was in the need to find a sort of "definitive" :) solution to
transform a
virtual path such as "~/MyDir/MyFile into a full web address. In
particular I needed
it * within web services *.
I would like to be informed that the framework provides a function to
do that, but for no... more >>
Proxy Authentication Required using VS2005
Posted by rcp at 8/18/2006 4:25:14 AM
Hi all,
I've read all posts from all existing threads and none of them worked
to solve my problem, although its exactly the same. I'll try to
explain my case and see if a kind soul could help me out:
I've a win32 service in C# on a client machine A, which accesses a WS
(C#) on a server machi... more >>
Webserice Client exception message
Posted by VBTECH at 8/17/2006 12:47:03 PM
I have a client app consuming a web service.
Web service has reference to a com dll.
Right now client app is diaplying error in the following format.
"Server was unable to process request. --> Error - order number does not
exist"
I dont want to display "Server was unable to process request... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
No Ports and Methods were found on this page
Posted by Mongkon at 8/17/2006 2:23:01 AM
I use Visual studio.net 2003 for develop a web application by communicate
with Web service (it has been developed by Java) and I has added web
reference but It can’t to and show error message bellow
“No Ports and Methods were found on this pageâ€
Please help me, to find solution and r... more >>
Pass by reference to a WebService
Posted by David++ at 8/16/2006 11:20:01 PM
Hi folks,
I would be interested to hear peoples views on whether or not 'pass by
reference' is allowed when using a Web Service method.
The thing that troubles me about pass-by-reference into a WebService is that
essentially we are passing an address of an object which resides on the
'lo... more >>
Parameterized Constructor
Posted by Peter at 8/16/2006 11:00:01 PM
Hi,
When I update/add a new web reference to a web service class with a
parameterized constructor, what is preventing the generated proxy from
including a definition for the parameterized constructor as well as the
parameterless one?
Regards,
Peter
... more >>
Inner exception: Could not load file or assembly ...or one of its dependencies. The system cannot find the file specified.
Posted by Yusuff at 8/16/2006 10:35:39 AM
Hi,
I Have created an external assembly to generate a GUID. The class is
static.
I am trying to access it in the Message Assignment shape in the
orchestration. It seems that I can access the assembly at design time.
Since I can see the method when I add a dot next to the class. But
after I... more >>
Sending text to my webmethod returns exception
Posted by NO[at]SPAM rturo at 8/16/2006 8:41:01 AM
I have a webservice running and I have a method with a string parameter.
The method is quering an xml file but i need to enter the exact letter case
in the string to get the right reult otherwise is returning me and Exception.
for example this xml...
<location id="123">Finance</location>
<... more >>
web services with Binary format
Posted by Ripal at 8/16/2006 3:06:01 AM
Hi
How can I create web service with Binary format instead of Soap format?
Thanks,
Ripal... more >>
BindingFailure was detected
Posted by nickname at 8/15/2006 11:44:01 PM
I have a simple web service with a method that returns a Boolean:
using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class Serv... more >>
.NET Soap calls fighting each other in Excel XLA's -- URGENT HELP NEEDED!!!
Posted by Fish at 8/15/2006 3:16:21 PM
Basically the problem is with two separate XLA's loaded in excel that
both use .NET to send and receive soap calls.
The issue seems to be when both xla's are loaded and one of them tries
to send a soap message with a header attached. We checked the raw soap
messages during this instance and th... more >>
Error consuming web service "Remote Server returned an error: (500
Posted by Haxan at 8/15/2006 9:27:01 AM
Hi,
Im testing a web service from my windows app in C#. I create a soap body and
pass to the HttpWebRequest and then get the response as below.
private void TestService()
{
string quotes = "\"";
// Set the uri to send the request to
string requestUri =
"http://localhost/Te... more >>
Can I insert a Response.Write with JavaScript inside of Web Servic
Posted by Tiago Vieira at 8/15/2006 8:06:01 AM
Hi everybody,
I'm trying to insert a piece of javascript inside of a web service method
but It's not working. Have somebody already tryed to do it?
Folow a piece of my code below.
---------
Private Sub InsertReportTable(ByVal path As String, ByVal exp As String,
ByVal app As Boolean, By... more >>
.NET 2.0 C# Web Service File Upload Via HTML Form Post
Posted by John Wolff at 8/15/2006 7:50:02 AM
I’m trying to upload a file to a Web Service. I have to submit the file
using a standard HTML form with the <input type=“file†/> tag. Ultimately,
we are submitting the file from a Flash 8 application that uses Macromedia’s
flash.net.FileReference class. The FileReference class beha... more >>
Repost: Our web service design for a process flow needs to be mor
Posted by D-Someone at 8/15/2006 5:28:01 AM
I am re-posting this message as originially it did not get a single
response.. Any ideas?
--------------
I am trying to come up with a good design for a web service that has some
user logic and business processes involved. Here a small sample of the
process flow:
---
Client Get's ... more >>
|