Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > using sqlxmlbulkload in web service

Reply
Thread Tools

using sqlxmlbulkload in web service

 
 
Scanner2001
Guest
Posts: n/a
 
      07-26-2004
I am trying to use the sqlxmlbulkload in an asp web service. I have a
console application that can use bulk load fine, I can create a dll, then
use that in the console app, and that runs just fine, but can not get this
to work with a web service. I can not take a console app, or windows app,
and use the web service that does the bulk loading. I have the line using
SQLXMLBULKLOADLib; in the web service.
I receive the following error:
QueryInterface for interface SQLXMLBULKLOADLib.ISQLXMLBulkLoad failed
I am very new to this, so I am not sure what information that I should
post to help follow up. There must be something I need to do or set to use
this as a web service, but I can not find the answer.

Thanks,
Jeff


The basic code is as below:
Console App:
localhost.testing11 ws;
ws = new localhost.testing1();
string retValue = ws.BulkLoadXML();
Web Service:
Inside of the web service -
SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class objBL = new
SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class();
objBL.ConnectionString = "................."
objBL.Execute (@"...........xsd",@".......................xml" );


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Does timer in Web Service Global.asax block my Web Service from processing web-site requests? Leo Violette ASP .Net Web Services 0 04-17-2009 12:39 AM
'web service call failed: 500' using ajax hovermenu and web service Not Me ASP .Net 1 06-05-2007 03:09 PM
InvocationTargetException when calling "new Service()" in Axis web service to call another web service Michael Averstegge Java 0 01-10-2006 11:05 PM
Calling a Web Service using Axis, from within an Axis Web Service running under Tomcat hocho888 Java 1 04-29-2005 08:26 PM
Web Service that calls an external Web Service Isaias Formacio Serna ASP .Net Security 5 02-02-2004 07:38 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57