I'm working on a project where I need to create a WSRP portlet webservice with ASP.net.
My first question is what exactly is WSRP, and are there any good examples of it available? So far I have determined that it is a SOAP xml standard that defines how to create a portlet that can be embedded in an other portal. Is that correct?
Also I...
Hello,
I need to create a .net client which consumes a webservice from a SAP CRM application. I just got the wsdl file. But when i try to create a proxy class with wsdl.exe i get a warning that no classes are generated. What am I doing wrong?
There is the header of the wsdl file.
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definition...
I have a problem with creating an report in my Webservice with ASP. Lokally everything works fine, connecting to SqlServers or MySQL Servers is no problem at all.
But now !'m trying to connect to a SqlServer 2005 and i get an error, somthing about a database vendor code 17 (it's a german version, so i won't directly post the whole error...
hi there,
i'm using eclipse to develop over android, i'm trying to connect to a .net webservice...
when i'm calling a webmethod with no parameters it works fine... but when i come to pass a parameter to the webmethod things turn upside down... the parameter is passed as null (while debugging the webservice i discovered that) and i get a ...
I want to invoke a web service in my C# client application.
I want to be able to bind to this web service dynamically.
I am using the following code for dynamically calling a web service:
class Program
{
interface IInterface
static void Main(string[] args)
{
BasicHttpBinding bin = new BasicHttpBinding();
E...
I there a way to know if a request is a soap request on AuthenticateRequest event for HttpApplication? Checking ServerVariables["HTTP_SOAPACTION"] seems to not be working all the time.
public void Init(HttpApplication context) {
context.AuthenticateRequest += new EventHandler(AuthenticateRequest);
}
protected void AuthenticateRequ...
Hi,
I've created proxy classes using svcutil with a given "sap crm" wsdl file. It worked great and it generated a output.cs.
So added this output.cs in my visual studio project und created a simple test application. The test application can be compiled and even run, but I dont know why. I didn't enter any service url.
How can this be ...
im new to webservices.i ran a sample webservice(Jboss5.0.1,jdk 6) from java client. i got this warning. but application runs properly.when i searched about this warning i came to know that we dont need to worry about this. but is there any way to hide this from log?
[StatelessBeanContext] EJBTHREE-1337: do not get WebServiceContext pro...
Hello I need to generate a Java Client.
I tried wsdl2java from Apache CXF Project, it returns "a Null pointer exception" when I give it an http link to a wsdl file.
I also tried the Axis2 Codegen plugin for eclipse. It cannot generate a client stub and prints an error that it cannot resolve a relative path to an .xsd file. The provider ...
I have created a website to enable webservices interact with my desktop application using soap. Now the problem is Webservices run fine when i run the website on my Local IIS. but they stopped when I published and uploaded the website by creating virtual directory. Now the problem is when I am requesting my webservice it is displaying a ...
I have a webservice running on tomcat (and working). I would like to extract the endpoint URL into a file outside the war, so that it can be changed without needing to redeploy the war. I am running locally with Tomcat 6 standalone on Windows XP.
My thought was to have it in the Context, either as a context param or as an Environment va...
Hello
Recently a colleague had to call a .NET 2.0 web service from script. We noticed that we'd have to put the [ScriptService] attribute, either via AJAX extensions or upgrading to 3.5.
That's all I've been able to find out - no-one explains what it's doing under the hood!
Can anyone enlighten me?
Thanks
Duncan
...
This really should not be difficult but damned if I can figure it out...
Using Usergroup.asmx I need to get a list of all the groups in a given site collection so I can loop through them and update the group owner depending on certain settings.
My problem seems to be (besides the fact that I cannot find any decent documentation or exam...
Is there a good way to check if a web service is available that does not involve simply calling a served method?
That is, I was looking for something like a .TryConnect() or .IsAvailable() method I could call before calling my .TransferData(data) method.
I've tried reading the State variable of the service, but it even while the servic...
I am currently researching .NET RIA Services however I am having trouble finding a definitive list of the benefits of RIA services compared to plain WCF to Silverlight, or event a list of the key components that make up RIA Services. I also find it hard to see where RIA services sits in the development model and exactly what it provides ...
I have a C# ASP.NET 3.5 web application which uses forms authentication. Users log in with their username and password on login.aspx, are authenicated using a custom authentication logic and are then directed to input.aspx, where they enter some parameters and get response on output.aspx. If they try to access input.aspx without authenti...
I am interested in impersonating well-known Web Services and Wcf Services for integration test purposes. To this end, I would like to capture service metadata, auto-generate service stubs, and host service stubs in a self-hosted environment.
Following this article here, I am able to obtain remote Wcf Service metadata and generate contra...
Is it possible to directly access third party web services using Ajax? Mostly I've seen that the website I'm visiting handles it on its server and then transfers the processed/unprocessed data to client browser. Is this always the case?
...
Can I have a webservice method that returns List<List<MyObject>> in .net?
...
Hi there, I'm trying to develop an iPhone application to consume a Web Service written in C#. I want to be able to access the web page through the localhost on my PC (http://localhost:54053/Service1.asmx) so I don't have to push the Web Service live just yet. Any recommendations on how to do this?
Thank you very much.
...