sreerajav - Thursday, August 11, 2011 4:50 AM:
I tried to create web service using web services Configuration option. but when i'm trying to publish the web service its throwing an error saying Logon failure: unknown user name or bad password. i checked in ARAS installed folder and i can see WebServices folder is created under C:Program FilesArasInnovatorInnovator folder but it doesn't contains any webservice files.
Logon failure: unknown user name or bad password<SOAP-ENV:Envelope xmlns:SOAP-ENV="schemas.xmlsoap.org/.../"><SOAP-ENV:Body><SOAP-ENV:Fault xmlns:af="www.aras.com/.../faultcode><faultstring>Logon failure: unknown user name or bad password</faultstring><detail><af:legacy_detail>Logon failure: unknown user name or bad password</af:legacy_detail><af:exception message="Logon failure: unknown user name or bad password" type="System.ComponentModel.Win32Exception" /></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
sreerajav - Friday, August 12, 2011 3:29 AM:
I fixed the problem..
I went to C:Program FilesArasInnovatorInnovatorServer folder and edited web.config file.. We have a webservicepublishing section in that file, you need to give youe admin account details there (windows system admin role)..
<!--Specify the user credentials on whose behalf will be published web services-->
<webservicepublishing>
<add key="user" value="{user name}"/>
<add key="domain" value="{domain name}"/>
<add key="password" value="{password}"/>
</webservicepublishing>