webservice configuration
hi everyone, I have installed Aras 11 SP5 when I try to create a webservice configuration I get the following error message Event handler failed with message: TypeError: window.parent.frames.tearoff_menu is undefined [function onformpopulated$user$handler(e) { try { if (onformpopulated1(e) === false) return false; } catch (exp) { aras.AlertError(aras.getResource('', 'ui_methods_ex.event_handler_failed'), aras.getResource('', 'ui_methods_ex.event_handler_failure_msg', exp.description ? exp.description : (exp + ' [' +arguments.callee.toString()+ ']')), aras.getResource('','common.client_side_err')); return false; } }] Any idea ? thanks in advance! Luigi3.6KViews0likes4CommentsLoad Balancer & Selecting Webserver
Good day all. We have two webservers (v11 SP10) that are connected to a load balancer. I need to make updates to Adobe since the Collaboration can't recognize pdf documents. I want to push all of the users to a single webserver while I make the update to the other one. I need to be able to test the updated server before allowing users back on it. Is there a way to directly open the connection with the server I am on? I tried double clicking in the InnovatorServerConfig.xml file, but it just opened a page showing the information in the file. Thank you for your help.Solved3.5KViews0likes2Commentsinnovator service and Javascript Methods
I would like to know if it's possible to run a javascript method from Innovator Service. I would like to be able to use javascript to make async http calls over the network. I can currently use C# for this but the methods will not be asynchronous as far as I am aware since Aras currently doesn't support async C# Server Methods.2.9KViews0likes1CommentHow to reuse Active Directory / LDAP Credentials in Webservice connection?
Hi, we handle Aras logins via Active directory. A second software shall be connected via Webservice/HttpWebRequest. This software share the same Active Directory Accounts. Regular connection strings in Aras may look somehow like this: string username= "myuser"; string password="mypw"; string encoded = System.Convert.ToBase64String(System.Text.Encoding.GetEncoding("ISO-8859-1").GetBytes(username+":"+password)); HttpWebRequest request = (HttpWebRequest) WebRequest.Create("http://xyz"); request.Headers.Add("Authorization","Basic "+encoded); On local machines, it´s possible to use this line of code for using Windows access data: request.Credentials = CredentialCache.DefaultNetworkCredentials; But as Aras is running on a server, this Method will not return the credentials of the current user. Are there samples available, that show how to forward the user credentials? I have seen, that the Aras Sharepoint integration does something similar, especially the Method SPDocument_onGet . But I am not sure, if this code is reusable, as it links to some Sharepoint specific files in the codetree. Maybe there are some other samples available, which are easier to use? Thanks for your help! Angela2.3KViews0likes0Comments