I also tried to set the website and webservice up by copy and pasteing their folders onto to the server and pointing the virtual directories to them but I get the following error:
Event Type: Error
Event Source: WSClient
Event Category: None
Event ID: 0
Date: 11/13/2008
Time: 12:42:23 PM...
I have a website which was originally developed in asp.net 1.0. It consumes webservices written in 2.0. I had to make a change to the 1.0 website and I'm using VS 2005. I understand that ASP.NET 2.0 doesn't create dlls. Is there a way to create the website dll in VS 2005?
I have been asked to install a copy of a client web site and web service on another machine. I have copied the files over and created the virtual directories. My question is: Do I need to change the XML namespace for the webservice? Is there any other things I need to do that I haven't mentioned?
I have a web app that uses a webservice. It has been running fine for a month until today. I'm new to ASP.NET and webservices. I did copy the dll from another site that was working and pasted it into the bin folder of the site thats getting the error. Here is the error I'm getting. I apologize...
I was able to get by the cast error and have been able to delete the rows from the dataset but now I'm getting a DeletedRowInaccessableException error. Below is my code I'm using to delete rows from the datatable.
private void RemoveRowsForPaging (DataTable myDataTable)
{...
Thanks jmeckley. I am now getting an error with the following code: The error states "InvalidCastException - SearchForVehicle
Specified cast is not valid." The error happens at my declaration of the variable "id". Why am I getting this error?
foreach (DataRow row in myDataTable.Rows)...
I need to be able to run the following SQL Statements at the same time from an ASP.NET application. The query is built on the fly and passed to the MYSQL Database. When I execute each individually in MYSQL Query Browser it runs fine but when I try the web app I get an error:
The Error:
Event...
Thats actually a MYSQL query the error I'm getting is below:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Create temporary table tmp_Veh as
SELECT 'OFFENSE' as TblSource
' at line 2
I have found some info and I'm trying the following but getting an error. any help is deeply appreciated:
BEGIN
Create temporary table tmp_Veh as
SELECT 'OFFENSE' as TblSource
, v.Primary as UNIQUEKEY
, v.VIN as VIN
, v.YEAR as VYEAR
, v.MAKE...
Is it possible to create a temp table on the fly as with the following SQL Server TSQL Script?
Select 'Some value' as Col1
into #temp
from myTable
where primkey > 0
ALTER TABLE #temp ADD RowNum IDENTITY(1,1)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.