all groups > asp.net webservices > october 2007
WebService changed the name of my class
Posted by DAXU NO[at]SPAM HOTMAIL.COM at 10/30/2007 6:11:43 AM
Hi,
I am new to web service and I have a class called Pair like this:
[Serializable]
public class Pair<A, B>
{
public Pair()
{
First = default(A);
Second = default(B);
}
......
}
I created a web method to return a Pair cla... more >>
WSE client in pure C++
Posted by Johni at 10/29/2007 10:03:31 AM
Hi,
How can I use WSE 3.0 from a pure C++ client ?
Is it possible ?
I want to use wse security policies.
thanks.
J.
... more >>
Call a webservice via URL dynamically
Posted by Norbert_P=FCrringer at 10/29/2007 5:39:21 AM
Hello there,
is it possible in .NET to call a webservice passing the webservice URL
at runtime instead of creating a web reference with a static URL. I
know that the URL is saved in the reference.cs, but it appears several
times in an attribute, which cannot be easily changed.
Regards,
Nor... more >>
how to pass query string value(help me)
Posted by sathya at 10/29/2007 4:25:01 AM
hai,
i have use 2005 platform in asp.net
i used hyperlink column in datalist;when i click any one of the hyperlink
result shoult display in the next page;i used query string for this format;
now i want that query string value to next page,how to pass query string value
my code attach below... more >>
How to handle webservice Java ArrayList in Dotnet client
Posted by Nicolas at 10/28/2007 10:01:49 PM
Very urgent need help on how to handle the ArrayList return by the Java
webservice into my DotNet Console application
Actually the bug came within the return has not understanding the return XML
document
Additional information: There is an error in XML document (1, 573).
my code is like thi... more >>
IIS configuration
Posted by Chris M at 10/24/2007 5:26:34 PM
I am always recreating my IIS virtual directories on to other servers. Is
there an automated way I can recreate entire IIS virtual directory structure
using export and import features of IIS? Any samples/articles would be
great!
... more >>
AuthenticationException: User not authenticated
Posted by mohanaranga at 10/23/2007 11:57:09 PM
Hi all,
I got the exception "AuthenticationException: User not
authenticated" , when i call the web service method. Before I call the
method I have set the credentials also.here is the sample code.
Web_Service.CustomerManagerService custManger = new
Web_Service.CustomerManagerServi... more >>
how to expose structure of a structure
Posted by jake at 10/22/2007 11:17:01 PM
Have a structure a: public struct a{ string st1, int int1} and public struct
b {a[] stra, string str2}
A method returning structure b and taking structure b as a param: public b
method1(b arg1)
When method1 exposed as webmethod, only struct b is visible. Am I doing
something wrong? Than... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Generic Webservice methods
Posted by Robby Valles at 10/20/2007 9:37:28 PM
Hello,
I have a webservice with a static signature, that we have a custom
request and result class to handle different webmethods/services.
[WebMethod]
public MyResult Process( MyRequest r )
Currently, we have one proxy class generated and all webservice calls
point to this Process metho... more >>
.net supported SOAP protocols
Posted by wardy at 10/19/2007 1:24:18 PM
Hi all,
I'm in the process of developing some .NET Web services that will be
required to be invoked from Oracle Financials and Java. Due to this I
am worried about compatibility between the systems and their SOAP
implementations. Is anyone able to tell me what versions of .NET
support what ... more >>
unable to redirect page using form authentication while accessing from different domain
Posted by Ketan Shah at 10/19/2007 12:00:00 AM
Hello All,
unable to redirect page using form authentication while accessing from
different domain.
... more >>
Problem in calling unmanaged win32 dll in webservice code
Posted by tomar at 10/17/2007 6:13:54 AM
Hi All,
I Made a win32 dll named with Test.dll in VC++6.0 using following code
/
******************************************************************************
** FUNCTION: ASum
*******************************************************************************/
extern "C" __declspec(dllexport... more >>
How to view the incoming SOAP message
Posted by Plamen at 10/15/2007 1:57:02 PM
I have a simple web service that has just one method:
[WebMethod]
public string CreateAppToken(string appKey, string cargo)
I'm trying to access that from Java (JBoss). When I run in debug mode and
stop inside this method all input parameters are null. This means that I'm
miss... more >>
Problems with web service configuration
Posted by Juan Manuel AlegrÃa B. at 10/10/2007 3:10:33 PM
Hi group!!
I've been getting troubles with the web service configuration. The error
that send me is
Parser Error Message: Could not load type 'Aranxel.Global'.
Source Error:
Line 1: <%@ Application Inherits="Aranxel.Global" Language="VB" %>
Source File: /global.asax Line: 1... more >>
Request web server excaption
Posted by SushiSean at 10/10/2007 10:40:00 AM
Hello. I have problem when I call web service.
Code looks like this
try
{
PayCaptureResponse resp = cc.requestServiceRequest(pc);
}
catch (Exception ex)
{
Response.Write("Exception " + ex.Message);
return;
... more >>
tags in web.config
Posted by jake at 10/10/2007 5:39:00 AM
newbie question. what is the common tool to edit the tags in web.config,
other than, notepad, xmlnotepad, or vs 2005? Can this be managed from
asp.net mmc? thanks.... more >>
Keep object across web service calls?
Posted by John Granade at 10/9/2007 11:01:39 AM
I have a 3rd party .dll that makes and keeps a connection to their server.
They offer a web service but for high volume transactions they offer this
..dll where you initially open the connection and then just keep using that
connection for all subsequent calls. I'm trying to leverage that in ... more >>
How to receive/send XML file through HTTP Post?
Posted by John Dow at 10/9/2007 12:13:59 AM
I am trying to receive/send xml files with predefined schema from/to another
server using http post, and a success message back to the sender
Would someone give me a start point where I can start to design the piece?
Is webservice the best practise to use? Could someone give a code sample or
... more >>
How to Receive/Send XML file through HTTP Post
Posted by Xin Dong at 10/9/2007 12:06:32 AM
I am trying to receive/send xml files with predefined schema from/to
another server using http post, and a success message back to the
sender
Would someone give me a start point where I can start to design the
piece?
Is webservice the best practise to use? Could someone give a code
sample... more >>
What is the relation between UDDI, WSDL and Disco files.
Posted by Bhuwan Bhaskar at 10/9/2007 12:00:00 AM
Hi,
I am new for web services. What is the relation between UDDI, WSDL and Disco
files.
Thanks and Regards
Bhuwan
... more >>
|