Trying to connect to QuickBooks via Web Connect in asp.net
- by ile
I don't know if any of you have had experience with QuickBooks integration, but I have to try :)
I downloaded QuickBooks Free Simple Start, Quickbooks Web Connector and Web Service sample code ... I've read Web Connector manual and followed instructions but, when using authenticate function, I always get error "nvu", meaning that username or password are not valid.
Following instructions, I added this QWC file to QBWC:
<?xml version="1.0"?>
<QBWCXML>
<AppName>My application</AppName>
<AppID></AppID>
<AppURL>http://localhost/QBWC/Service1.asmx</AppURL>
<AppDescription>My application web service</AppDescription>
<AppSupport>http://localhost/QBWC/Service1.asmx?wsdl</AppSupport>
<OwnerID>{87EDAAF8-637E-4203-867F-4BA79C2F8998}</OwnerID>
<FileID>{CA1C3EB8-1B61-4747-A743-8D5B438B83AC}</FileID>
<UserName>test</UserName>
<QBType>QBFS</QBType>
<Style>Document</Style>
<AuthFlags>0xF</AuthFlags>
</QBWCXML>
After adding this this file to QBWC, I also added password "1234". After that, I opened my web service: http://localhost/WCWebService/WCWebService.asmx?op=authenticate and in field "strUserName" entered "test", in field "strPassword" entered: "1234". But "nvu" is always returned as a result.
If someone is familiar with this I would appreciate for help!