dynamic

How to connect openvpn point-to-point with both dynamic ips?

How i can connect openvpn point-to-point link with both dynamic IP? Yes, i know about dyndns, but i do not want to use it. Maybe by STUN server? ...

XStream short dynamic aliases

I want to have short names for classes, now i can do it with aliases XStream x = new XStream(); x.alias("dic", Dic.class); but i have to define alias manually for every class, is there any way to configure xstream to do it automatically? ...

"rela.dyn", is it a must in linker directives?

Is rela.dyn section required in all linker directives even if you just want a static library to be linked? I do not want dynamic relocation of libraries(dynamic linker or run-time loader)? Should I still have a rela.dyn part in my linker directive? ...

resizing a iframe when opening a pdf

I have a iframe that i want to open pdf's into from a list on the side bar. I have everything working but the pdf shows up in a little 500 by 200 box on the and wont "resize" to so the user can read the entire page. the live site is located here http://www.markonsolutions.com/opportunities.php and the code behind it is <!DOCTYPE htm...

Page object problem

Hi, I have a class which generate a dynamic page. Panel myPanel = new Panel(); TextBox myTextBox = new TextBox(); myPanel.Controls.Add(myTextBox); Page thePage = new Page(); thePage.Form.Controls.Add(myPanel); return thePage; my class basically do this. I call my class and I get thePage object from code-behind. Now, How can I r...

Dynamically attaching a method to an existing Python object generated with swig?

I am working with a Python class, and I don't have write access to its declaration. How can I attach a custom method (such as __str__) to the objects created from that class without modifying the class declaration? EDIT: Thank you for all your answers. I tried them all but they haven't resolved my problem. Here is a minimal example tha...

System.Linq.Dynamic and DateTime

I am using System.Linq.Dynamic to do custom where clauses from an ajax call in .Net MVC 1.0. It works fine for strings, int etc but not for DateTime, I get the exception cannot compare String to DateTime. The very simple test code is items = items.Where(string.Format(@" {0} > {1}{2}{1} ", searchField, delimiter, searchString)); Where...

Hotfixing Code running inside Web Container with Groovy

I have a webapp running that has a bug. I know how to fix it in the sources. However I cannot redeploy the app as I would have to take it offline to do so. (At least not right now). I now want to fix the code "at runtime". Surgery on the living object, so to speak. The app is implemented in Java and is build on top of Seam. I have add...

Attaching properties and methods at runtime in C# 4.0?

What are the performance implications of attaching methods and properties at run time using dynamic features, as described in this blog post? What are the practical uses of ExpandoObject? ...

how to generate web service client dynamically

i got a problem. suppose on the other side, the WSDL will be always changed, for example, the web service on the otherside which descriped in the WSDL file has only method, but the name of the method might always change, today call methodABC(), tomorrow will be change to methodDEFO().. suppose in JAVA, is there anyway, i can dynamica...

Getting runtime class information from the web? Something like javap but at runtime on class loaded in memory

I am working with Websphere and complicated classloading issues. I want to be able to download or print information that would normally get printed by javap (the methods, etc). I may also need to get the raw binary class data, to perform a binary diff. How would you do this? ...

Django how to save a custom formset

I've written the following custom formset, but for the life of me I don't know how to save the form. I've searched the Django docs and done extensive searches, but no one solution works. Lots of rabbit holes, but no meat ;-) Can someone point me in the right direction? // views.py partial // @login_required def add_stats(request, grou...

WPF -- Displaying Image in RadGridView dynamically and through code

I have a radgridview which is bound to an object that I created, foo. Object foo has a property 'status' that is populated from an enum. I have many foo objects stored in a collection, which I use to bind to my radgridview. Upon binding I get records and the grid displays fine. I'd like to not display the 'status' enum value from my ...

Advice for Building a dynamic "Advanced Search" Control in ASP.NET

I'm building an "Advanced Search" interface in an ASP.NET application. I don't need SO to write this thing for me, but I'm stuck on a specific problem regarding dynamic controls and ViewState. I would like some direction for how to approach this. Here's my situation: Ingredients: A serviceable set of API objects representing ent...

Django Admin: Making mandatory fields non-mandatory dynamically

How can I make mandatory fields non-mandatory when another [associated] field has a certain value? Let's assume I have the following models: class foo(models.Model): bar = models.CharField(max_length=200) foo_date = models.DateTimeField() When I save, and bar contains a certain value, i'd like foo_date to become non-mandatory...

C# dynamic classes at run-time?

First, I am not talking about the new 'dynamic' keyword n C# 4.0. :) I believe I need to go the other way... I want a class, at code/design-time, that is generated from a set of XML files, or files/folder combinations, etc. Anything I can do with a change to the extern source. Is this possible with C#? I know it is possible with ...

How to write Dynamic VB.net code?

For example i got a class and its got its own properties and i am passing the name of the class and the name of the property to be called to a function Say for example exp is the variable which i am passing which contains a value = "ClassA,Property1" Function Property2BCalled(byval exp as String) dim classname ...

Is PHP dynamic enough?

As far as I know, PHP is a dynamic type language. We don't need to declare variable and don't need to define data type of variables and function return. I found an article on sitepoint and one commenter said PHP is not dynamic enough because... PHP does to many things at compile-time (like the whole “static” “self::” stuff) inst...

ASP.NET Dynamic gaming forum signatures

How could I create a dynamic forum signature generator using ASP.NET MVC. I currently have a Stats fetcher that retrieves the user info to be used in the Forum Signature. I'm trying to create a forum signature generator where a user can enter their user name and generate an image that they can put in their forum signature that will show...

ASP.NET: dynamicly generating HTML, how to?

I've been doing ASP.NET a little bit (on and off) over the last year, but I've never come upon this challenge: I'm building a website right now which is quite simple, mostly based in HTML and Javascript. However, on one page, I need to read an XML file off the server, parse it, create HTML from values contained in the XML file, and outpu...