Search Result

Collapse
25 results in 0.0044 seconds.
Keywords
Members
Tags
webservice
  •  

  • Using WebClient to download string from ASP.NET Web Service Error

    I have a simple ASP.NET Web Service:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Web;
    using System.Web.Services;
    using System.Web.Script.Services;
    using System.Web.Script.Serialization;
    using System.Web.UI.WebControls;
    using System.Web.UI;
    
    namespace WebService1
    {
        /// <summary>
        /// Summary description for Service1
    ...
    See more | Go to post

  • rytlaw
    started a topic ASMX web service function reads incomplete XML
    in XML

    ASMX web service function reads incomplete XML

    I wrote a simple web service function using ASMX:

    Code:
    	Public Function processMessage(ByVal Messages as XMLElement) As String	 	
            Dim strS as string
            strS = Messages.outerXML
            Return strS
        End Function
    This should is used to handle SOAP request like the following:
    Code:
    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
    ...
    See more | Go to post

  • Gopichandran
    started a topic data updated twice in web service

    data updated twice in web service

    data updated twice in web service


    [WebMethod]
    public string updateMQuantity Sales(string ProductCode, int Quantity)
    {
    con.Open();
    cmd=new SqlCommand ("update tblInventory set Quantity = (Quantity + @Quantity) where ProductCode = @ProductCode",c on);
    cmd.Parameters. AddWithValue("@ ProductCode", ProductCode);
    ...
    See more | Go to post

  • javascript + soapclient call webservice , why it is too slow when return a result?

    I use javascript + soapclient to call webservice(WSDL ), I just call a GetTime() function. It needs 5 seconds to return the result. I think it is too slow. I do not why.

    But if I use PHP + nusoap to call webservice(WSDL ), it is very quick , in less than one second, it return the result.
    See more | Go to post

  • aman katoch
    started a topic Webservice does not fetch when published on IIS
    in IIS

    Webservice does not fetch when published on IIS

    Hi,
    I have a webservice connecting to access db using DSN. Its .asmx page working fine on .net development server. But when i publish it on IIS, run .asmx page and call web method, it does not get the data. Also there is no error. What can be the problem.

    plz reply asap.

    Thanks,
    Aman Katoch.
    See more | Go to post

  • Car Jakis
    started a topic Where WebService stores its variables data?
    in .NET

    Where WebService stores its variables data?

    Hi!
    I've got a WebService that stores names of logged users. It is a simple C# List<string> that is private and static and I add some strings to it and read values, using WebService's functions in my WindowsForms client application.

    And my first question is - is it save to keep data in variable? And where that data are stored? Cache, session? I made some tests and it occures to me that one day data where deleted from WebService's...
    See more | Go to post

  • Sfreak
    started a topic Problem converting types of Webservices
    in .NET

    Problem converting types of Webservices

    Hello guys,

    Im developing an architecture which uses c# Winforms, Webservices and Remoting. Im stuck in a issue about Types and namespaces. Ill try to explain the scenario to you to help me if you can...

    its a MVC template and i have my View using Winforms technology. My Control is encapsulated in a Webservice as an Application server. My Model is represented by a Windows Service using Remoting as the communication protocol...
    See more | Go to post

  • Serialization adds some wierd characters "d3p1:" to return string

    A third party web service method returns an object which we try to serialize into a string. When I use the following method to serialize the object, I see some text "d3p1:", "d4p1" prefixed with each tag and attribute. What is this and why does it add these characters?

    Code:
    public static string SerializeObject(Object pObject)
    {
      MemoryStream memoryStream = new MemoryStream();
      XmlSerializer xs
    ...
    See more | Go to post

  • How to test and simulate up to 1000 or more connections in FTP and WebService

    Hi,

    Client: XP,Vista, Windows 7 Pro
    - C# Express 2008
    Server: Windows Server 2008 R2

    Please give me suggestions and solutions how can I test my server/client setup.

    Currently my client program connects to FTP and Server(Webservi ce)

    Is there a way that I can test my server and FTP if they can support thousand or more users?

    What I have now is that, I...
    See more | Go to post

  • Brosert
    started a topic Webservices and DLL's (in third party software)

    Webservices and DLL's (in third party software)

    I realise that many people have asked very similar questions, however none of the solutions outlined seem to quite fit my problem.

    I should point out that I am new to both c# and the very idea of WebServices ....

    I have a Webservice that calls a managed (?) DLL from a third party. This DLL in turn requires another DLL (not managed), which appears to me to be C or C++ based.
    When I try to run the WebService, I...
    See more | Go to post

  • Sfreak
    started a topic How to use WebService session in C# Windows Forms?
    in .NET

    How to use WebService session in C# Windows Forms?

    Hi,

    Im running a test of performance between WCF and WEBSERVICES and im trying to setup the same things in both technologies. My WCF server works fine (except Circular Reference issues working with Entity Framework and stuffs like that but its not the case here) and now im trying to setup a WebService to learn how Session works in Windows Forms. Ive seen examples for ASP.NET using the class COOKIECONTAINER but i cant figure out...
    See more | Go to post

  • Is there a way to force web service request to use HTTPS.

    I have an asp.net web service which has SSL enabled via IIS. It works fine if the user uses https, however I have a user that insists on using http on the url.
    What I'd like to do is have the web service (asmx) do the equivalent of the response.redire ct to change http to https automatically.
    I don't believe that I can do this from a web service so does anyone know a of a similar solution for web services.
    See more | Go to post

  • AndrewK
    started a topic How to use port number on url. SSL port 443.

    How to use port number on url. SSL port 443.

    Hi, I'm using asp.net on IIS 6 but I guess this issue might not be specific to this environment.
    I've created a web service on a public facing web server uitilising ssl.
    When I use it using https://domain.com/webservices/sendfile.asmx it works fine. However, one of my clients wants to use the port number instead of https i.e. http://domain.com:443/webservices/sendfile.asmx. This, second, url does not work.
    I've looked at the...
    See more | Go to post

  • mailbill
    started a topic call xml-rpc api using php
    in PHP

    call xml-rpc api using php

    I saw a http://foxrate.org/
    They gave me a refference to use their api but I am newbie. How do I call this?
    See more | Go to post

  • SwapnilD
    started a topic Webservice not working
    in .NET

    Webservice not working

    I have created a web service on my local machine (C:\Inetpub\www root\Converter) using vb.net version 1.1.

    Purpose of webservice: this webservice will be invoked by a third party website (say abc.com). User will add a message in a webpage of abc.com this message will be sent to the Webservice.

    Below mentioned is the code that I have written for a web service to store the parameters/message sent by third party application....
    See more | Go to post
Working...