Re: [rules-users] drools-guvnor, problem when creating test scenarios based on referenced domain model

2010-03-25 Thread david_nabble
Hi ! kicho wrote: > > As you can see, i get a blank screen with no info at all, which points me > to conclusion that something (not good) happend. > > In server log i found this: > > 2010-03-25 09:27:17,684 INFO [STDOUT] ERROR 25-03 09:27:17,684 > (ServiceImplementation.java:runScenario:1942

Re: [rules-users] Question About Programmatically Creating Drools Rules Remotely

2010-03-18 Thread david_nabble
nanic23 wrote: > > Then build the package in guvnor. You'll see this option by clicking in > the package you have your ruleflow. > Is there any possibility to do this with java? Or do i have to login to Guvnor by Hand? David -- View this message in context: http://n3.nabble.com/Question-Abou

Re: [rules-users] Question About Programmatically Creating Drools Rules Remotely

2010-03-18 Thread david_nabble
S. McKee wrote: > > > 1) Create a brl file > 2) Using one of the webdav solutions listed, upload the brl file to the > correct package > > Guvnor should be able to pick up the additional rules? Additionally, is > there anything specific I would have to do for creating an entirely new > pack

Re: [rules-users] Question About Programmatically Creating Drools Rules Remotely

2010-03-17 Thread david_nabble
I do it this way: Create a brl or drl file in your application and load it up with webdav. For webdav with java i'd use http://code.google.com/p/sardine/ or http://sourceforge.net/projects/webdavclient4j/ cu David -- View this message in context: http://n3.nabble.com/Question-About-Programmatic

Re: [rules-users] KnowledgeAgent

2010-03-02 Thread david_nabble
Hi! I had the same problem: My solution was: 1) Generate a ChangSet (XML Document) with the URL(s) 2) write it to a temporary File (java.io.File.createTempFile). 3) Create a UrlResource out of this File Alternative: 2) write it to a Stream 3) Create a InputStreamResource As far as i know, t