C# - WebService Request Type Casting / Cannot Convert The BOLibrary.Flight.DTContract To DTContract
Mar 31, 2011
I have a scenario where i have to pass the array list to the WebService.
WebService:
[WebMethod]
public void GetCommission(List<BOLibrary.Flight.DTContract> Loc)
{
CommissionManager test = new CommissionManager();
}
Client:
List<BOLibrary.Flight.DTContract> BoList = new List<BOLibrary.Flight.DTContract>();
BOLibrary.Flight.DTContract dtConboj = new BOLibrary.Flight.DTContract();
dtConboj.ValidatingCarrier = "AA";
DTContract[] loc1 = BoList .ToArray();
service.GetCommission(loc1);
when i am trying to do this i am getting the exception that cannot convert the BOLibrary.Flight.DTContract to DTContract This is because when webservice create proxey consider Type(DTContract) not namespace(BOLibrary.Flight.DTContract)and i have to pass the list or arraylist of BOLibrary.Flight.DTContract Type.
View 1 Replies
Similar Messages:
Aug 5, 2010
In Visual Studio 2008 I have a Class Library project (called Media) to which I added a Web Reference (not a Service Reference) to a third-party web service (wsdl). In the Class Library project a proxy class is created for using the service along with several classes for the types used in that service.
I also have a second Class Library (called Sync) that references the first one. And then I have a Web Site project that references the second class library. All of this is .NET 3.5
So Web Site > Class Library (Sync) > Class Library with web service reference (Media)
I want to step into the generated code, so I fire up the web site in IIS 7.5 and trigger the call to a method in the second class library (Sync) that in turn should call the web service proxy. I was fully expecting to hit the breakpoint, but instead got an exception:
Unable to generate a temporary class(result=1). error CS0029: Cannotimplicitly convert type Media.WebService.multiValuedAttribute to Media.WebService.multiValuedAttribute[]
Why is ASP.NET trying to generate a temporary class? Don't I already have the generated class from the first Class Library (Media)?
View 1 Replies
Mar 29, 2010
I'm calling a method like this:
DataTable dtModifiedData = detailsGrid.GenerateRowColumnDataTable(Request.Form)
The GenerateRowColumnDataTable method retrieves all form variables with <input> tags. My problem is that my columns are named in a strange format like this:
#X#_G1_NAME_1 so when I look at what's being rendered I see %23X%23_G1_NAME_1 so I thought I could use Server.URLEncode() around Request.Form but I'm getting an errot that it can't be converted to a string. What would you do in this case?
View 7 Replies
Oct 15, 2010
Im dynamically generating an HTML Select Box, lets call it myselect. Im creating this select box based on some database values Im generating an HTML Select Box.. almost like a string that Im just spitting out to the page. So it's never a control in the codebehind, just part of a string thats rendered as HTML by the browser. If I submit my form, and in my codebehind I perform:
Dim myVal as String = Request.Form("myselect")
That code will give me the VALUE of the myselect select box. How can I refer to this control to cast it as a System.Web.UI.HtmlControls.HtmlSelect control? Request.Form seems to give me the value, but I want to reference the object itself..
View 3 Replies
Apr 21, 2010
i have a xml file and i am retrieving its value using Linq to xml and assigning it to ViewData.
[code]...
but foreach (var item in ViewData["Persons"] is giving type casting error..what should be the exact type csting so that i can retrive values in the format item.Fname.
View 3 Replies
Jun 2, 2010
I want to enable/disable controls of a asp.net page against a logged in user's permission. say 'admin' & 'hr' can change user's birth date text-box in a page but others will see the text-box as disabled.
so i wrote a function like this
[code]....
View 3 Replies
Jun 25, 2010
I am using the following code to convert any valid object, to a date time:
[Code]....
When i call this mehod from my web pages, using a blank("") value in TextBox.Text property as a parameter, the method is throwing an FormatException exception.
[Code]....
Ironically, the same method does not throw any exception with the same input when tried in a different machine.
Are there any regional setting that need to be modified in .NET 2.0 for this to work ?
P.S:
The method also works when called using a string variable, like
[Code]....
[Code]....
View 4 Replies
Aug 19, 2010
As I've found here, I can change the webconfig to allow/disallow methods on webservices.
I need only one method to be a GET and for the others it should be a POST, is there a way to configure just one method (or maybe webservice if there is no other way) to accept GET requests? I am on IIS7.
View 2 Replies
Aug 10, 2010
I have a Asp.net webservice. This webservice uses a dll ( the purpose of the dll is to listen at a port say 3305 and accept the request from one of its client (say client is some name PG and this client is different from webservice client) and the dll keeps communicating to the PG client to get some data.)
The webservice works like this.
When a request comes from my test program to Webservice, the webmethod calls the dll api ( to establish the connection between the dll and PG client). and after the connection is established between dll and PG client, the webmethod uses the data from my test program and implements some business logic and then returns some values to the test program.
After the first request from my test program is processed, the connection between DLL and PG will still be existing so as to serve the subsequent request from the test program.
The problem is after the first request is finished, the second request is not being processed by webservice, the request doesnot come to the webmethod or even to the class constructor.
is the connection between the DLL and PG , hanging up the webservice?
View 3 Replies
Jun 12, 2010
I get this error: "Cannot convert lambda expression to type 'string' because it is not a delegate type" - keyword select become underlined in blue.
[code]....
Above code should displays drop list of employees first name and last name in a combo box
View 2 Replies
Feb 17, 2010
I am getting data from xml webservice. The data is coming in:
<![CDATA]> like <![CDATA[Semi-Detached, Didcot]]>.
I have used HtmlEncode to convert or get data from above tag but unable to get data. I wanna get data from <![CDATA]> tag and display in a grid.
View 1 Replies
Mar 3, 2011
[Code]....
convert a webservice application in to wcf?
View 1 Replies
May 16, 2010
how this is achievable, not so much in the "build the whole project" as to how the reservation website gets quotes for all the flights from all the flight companies. I assume that in the website's code you have to use a webservice which will quote say website A, and get its ticket prices.
View 2 Replies
Mar 9, 2011
I'm getting an exception when trying to access an .asmx webservice within a MVC site. I've tried numerous things like updating the web reference within the console application and building another quick app to test, but can't get passed this issue. If I pull the URL out of the svc variable, I can browse to it directly.
Exception Details
System.Web.Services.Protocols.SoapException
occurred Message=Server was unable
to process request. ---> Value cannot
be null. Parameter name: uriString
Source=System.Web.Services Actor=""
Lang="" Node="" Role=""
StackTrace:
at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage
message, WebResponse response, Stream
responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String
methodName, Object[] parameters)
at ClarityIntegration.SendTrackerDataToClarity()
in [REDACTED].Reference.cs:line 78
at [REDACTED].Program.Main(String[] args)
in [REDACTED].Program.cs:line 33
InnerException:
CONSOLE APP CODE
var svc = new TrackerClarityService.ClarityIntegration()
{
Url = url,
Credentials =
new System.Net.NetworkCredential("user", "pass", "domain")
};
svc.SendTrackerDataToClarity();
svc.Dispose();
The exception was coming out of the Web Service itself. There were some global variables not being initialized directly through the .asmx call that were being initialized by the application itself.
Some simple checks on variables within the Web Service and setting what needs to be set have fixed up the issue.
View 2 Replies
Apr 27, 2010
have a working ASP.NET 3.5 webservice that accepts standard POST requests using an encoding type of application/x-www-form-urlencoded. I then added a method which needs to accept an uploaded file. We change the encoding type of the request to multipart/form-data so that we can get the file data and now we receive the following error:System.InvalidOperationException: Request format is invalid: multipart/form-data
View 3 Replies
Oct 7, 2010
I have an online flight reservation system that users can reserve flight ticket,my problem is in concurrency,i have a 'remaincapacity' field in my flight table(keep flight properties) and when a user want to get a ticket i first check this field an if the value is greater than number of ticket that user requested i subtract 'remaincapacity' and after that i allow user to reserve that ,how do in control concurrency?
View 2 Replies
Sep 17, 2012
I am developing traveling site, in this i have to integrate flight booking,cars booking,hotel booking and vacation booking API in my website.
How can i integrate the above API's in my website.
View 1 Replies
May 10, 2010
convert webservice xml response to object dynamically using JSON
View 1 Replies
Jan 11, 2011
I have a web service hosted on a web server, I invoke the web service using jquery ajax.
The service returns results successfully when invoked locally from the server, but it fails when invoked from a remote client machine (not in the same domain).
I see the request fail in the firebug returning error (401 UnAuthorized) and the response has the following error (Request format is unrecognized for URL unexpectedly ending in '/List').
View 3 Replies
May 7, 2015
I have deployed my webservice in server it shows the error like "Parser Error Message: Could not create type 'WebServiceFB'" ....
View 1 Replies
Jul 19, 2010
I am using this method since a year to build my project, but I am really tried of it now. I have to find some good solution on it.
The issue is, in my solution I have some c# library projects(BO, BAL, DAL) and 1 web project which also contains a webservice.
My Webservice accesses BusinessObject classes to transfter data from webservice to Window Application programm.
Now when I am adding a webservice reference to this web application, I got some error like following
Error 34 Argument 1: cannot convert from 'TestSolution.Business_Objects.Synchro' to 'KeySoftlock.KeyWebService.Synchro' D:websTestSolutionKeySoftlockBusiness LogicWebServiceCaller.cs 296 62 KeySoftlock
so , for this what I am always doing is , I go into the Reference.cs of KeySoftlock project - auto created by VS when I add web reference- and delete the classes that are automatically generated there., and adds a namespace Business_Objects, so that both classes will be the same.
Now my project-solution builds properly! But now its really overhead of always doing this when I change the webservice reference from local to remote and vice versa.
View 6 Replies
Mar 30, 2010
I have a new virtual server, subsite. but I get the feeling I may be still be inherting from the root config! Even though I have included <clear/> within both the <connectionString> and <httpModules>.
The main website works (web1) along with one of the subsites (web2) however the 3rd subsite (web3) gives the below error.
e.g.
http://web1
http://web1/web2
http://web1/web3
Gives the following error :
No http handler was found for request type 'GET'
Description:An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: No http handler was found for request type 'GET'
Source Error:
[Code]....
Stack Trace:
[Code]....
Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3082
View 1 Replies
Feb 11, 2010
string 'dd/mm/yyyy' convert to 'yyyy-mm-dd'
View 10 Replies
Apr 2, 2010
objCompanyRequirement.Salary = Convert.ToInt32 (txtCRF_Salary.Text);
cannot implicitly convert type 'int' to 'string'
objCompanyRequirement.InterviewDate = Convert.ToDateTime(txtCRF_InterviewDate.Text);
cannot implicitly convert type 'System.DateTime' to 'string'
View 2 Replies
Apr 23, 2010
Example: I create a custom type in my domain model (say a "Country" class with Id and Text fields)
A "Person" object have a property of the above type.
The Service class return a list of Countries (IEnumerable<Country> GetCountries();)
Now the ViewModel, derive from the "Person" object and have a member "Countries" which is IEnumerable<SelectListItem> Countries (It convert the Country collection from the service to a collection of SelectListItems.
I use the SelectLIst collection to populate my dropdown.
However when I submit the form, validation fail, obviously because the "Country" dropdown give a string value, while a Country object is expected.
So I need to cast this value from a string (using the "id" of the SelectListItem) to a Country object.
Where and how would be the right way to do this? (Another late night with me bing brain dead and probably overlooking the obvious).
View 4 Replies