connector

What is the Simplest Tomcat/Apache Connector (Windows)?

I have apache 2.2 and tomcat 5.5 running on a Windows XP machine. Which tomcat/apache connector is the easiest to set up and is well documented? ...

What are the benefits of JCA?

Our application often connects to different king of back-ends over web services, MQ, JDBC, proprietary (direct over socket) and other kids of transport. We already have a number of implementations that let us connect from our application to these back-ends and while all of these implementations implement the common java interface, they d...

What is the JBoss equivalent of Tomcat's server.xml?

I am running an application which was deployed on JBoss. There is only documentation for Tomcat, none for JBoss. I need to change some connector tag attributes to look like so: <Connector className="org.apache.coyote.tomcat4.CoyoteConnector" port="8443" minProcessors="5" maxProcessors="75" enableLookups="true" acceptCount="100" debu...

Calling Python from JavaScript

Is there a simple way to call Python libraries from JavaScript? Especially from the inside of a Firefox extension. A good option to compile a pure Python library would also be great. I looked at Pyjamas, but it seems to offer only partial support for Python. ...

Microsoft and SAP

For many years I have used the old "SAP DCOM Connector" to communicate between Microsoft based applications and SAP. Unfortunately this old but good and performant technology is no longer supported by SAP since years. Therefore I want and must migrate to another newer technology. First there is the "SAP Connector for .NET 2.0". At first...

.NET portal web clipping/web connector/portlet bridge/web capture analogs

Greetings, We are seeking .Net analogs or ports of what they refer to as "Web Connector" in Vignette, "Web Clipping" in WebSphere, "Web Capture Web Part" in Sharepoint (could not evaluate myself) or PortletBridge http://www.portletbridge.org/features.html. The implementation itself does not seem to be extremely sophisticated thus porti...

Flex: drawing a connector line between shapes

Hi! I am building a diagramming tool using Adobe Flex 3. I am about to implement connector lines and I have a question. Imagine I have 2 squares at random positions on the canvas. I need to draw an arrowed connector line between them. I need it to tend to the target square's center but end on its border. How do I find out the exact p...

ArgumentOutOfRangeException at MySql execution. (MySqlConnector .NET)

I am getting this exception from a MySqlCommand.ExecuteNonQuery(): Index and length must refer to a location within the string. Parameter name: length The command text is as follows: INSERT INTO accounts (username, password, salt, pin, banned, staff, logged_in, points_a, points_b, points_c, birthday) VALUES ('admi...

How to draw connecting lines between two controls on a grid WPF

Hi, I am creating controls (say button) on a grid. I want to create a connecting line between controls. Say you you do mousedown on one button and release mouse over another button. This should draw a line between these two buttons. Can some one help me or give me some ideas on how to do this? Thanks in advance! ...

Future of the "SAP Java Connector"

Is the SAP Java Connector still a good way to connect a Java Application with SAP ? Will there be a support and maintenance of the connector in the future (especially in ECC 6.0) or is the one and only good way the usage of the "Enterprise Services" in ECC 6.0 ? ...

Can I integrate Solr with Sharepoint with out using Lucene Connector Framework.

Can I integrate Solr with Sharepoint with out using Lucene Connector Framework. if so should I make Solr Index the Sharepoint's underlying database ? Will this produce successful search results ? ...

I'm trying to install the MySQL connector on a windows 7 systembut it doesn't show up in the ODBC add window!

This is under Windows 7 64 bit. I downloaded the 64 bit drivers and as a matter of fact I tried all the windows drivers(uninstalling the previous ones first though). But when I try to configure a new ODBC connection the MySQL driver doesn't show up. Do I need to install some other package before I can get the connector to work? Like MDA...

MySql LongText unselectable with value > 32kb

I use MySql Server 5.1. I have a MySql table with a longtext column. I'm writing a program in C# 2010 using MySql Connector 6.3.1 and I want to select that column in my program using regular linq. I have inserted some text using MySql Workbench. As long as the text is <32kb, I can select it in my program. As soon as this text is > 32kb,...

Dynamics AX 2009 .NET Business connector

HI, I want to know how to create a new item record using a template in Dynamics AX 2009 .NET Business connector. I know how to do this using Dynamics AX 2009. Is there a static method that i can call? I also want to show the new item information to the user before saving it. Is this possible? Please help Thanks ...

MS Access connect to mysql backend automatically

Hi I have an MS Access 2003 frontend and mySQL backend. I would like to automatically connect to MySQL when the MDB is opened for the first time, eg when the Main Menu form of Access is displayed. However I have no idea and I keep getting the "annoying" MySQL "Connector ODBC" pop up box. This happens when I go into a form in Access whi...

Which odbc connector to use?

I am getting this error from the following code: $result = odbc_connect("DRIVER={MySQL ODBC 3.51 Driver};Server=localhost;Database=$database_name",$database_username, $database_password); Warning: odbc_connect(): SQL error: [unixODBC][Driver Manager]Data source name not found, and no default driver specified, SQL state IM002 i...

MySQL ExecuteNonQuery hanging in mono

I am in the process of moving from Visual Studio to Mono. I have a query which dumps about 190000 rows of a select statement into a a text file which I process from c#. Normally the whole thing goes well and is done in less than 7 seconds. On mono however, it gets to the ExecuteNonQuery, and the OUTFILE is created successfully of exac...

Using other HTTP connectors with JBoss 5.1

I'm trying to use a "better" HTTP connector than JBoss' default HTTP/1.1 connector. Following BalusC's recommendations, I changed the connector in server.xml to: <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="8080" address="${jboss.bind.address}" connectionTimeout="20000" ...

Access SAP R/3 data directly from VB.NET

We have an assignment to create some XML outputs from data in SAP R/3. We are using SAP .NET Connector, for doing this. The problem we are facing is that there are some fields which are not exposed by any standard BAPI. Unfortunately we cannot create customized BAPI on this particular system. We are therefore restricted to whatever stan...

C# Lib to query MySQL DB

Hi Guys, Is there any good nice library to query MySQL DB? I have mysql connector .net installed, and it basically gives me ado.net replaced, like MySQLCommand, MySQLAdapter etc MySqlCommand command = connection.CreateCommand (); command.CommandText = "select * from samples"; but you have to write a lot of code anyway, is there any l...