Re: [rules-users] how to provide a relative path using file: in change-set and FileResource

2010-01-18 Thread Pritam

classpath works only if the files are under WEB-INF/classes. In my case, the
files are directly under the WebRoot.

Any suggestions?


SteveR685 wrote:
 
 Pritam,
 
 Try using classpath: instead of file:.  I've only used this when 
 specifying the entire relative path to the file, I'm not sure about 
 referencing a directory.
 
 change-set xmlns='http://drools.org/drools-5.0/change-set'
  xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'
  xs:schemaLocation='http://drools.org/drools-5.0/change-set.xsd'
add
resource source='classpath:rules/...' type='DRL' /
/add
 /change-set
 
 Steve Ronderos
 
 rules-users-boun...@lists.jboss.org wrote on 01/15/2010 09:27:05 AM:
 
 [image removed] 
 
 [rules-users] how to provide a relative path using file: in change-
 set and FileResource
 
 Pritam 
 
 to:
 
 rules-users
 
 01/15/2010 09:35 AM
 
 Sent by:
 
 rules-users-boun...@lists.jboss.org
 
 Please respond to Rules Users List
 
 
 Consider a change-set.xml,
 
 change-set xmlns='http://drools.org/drools-5.0/change-set'
  xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'
 xs:schemaLocation='http://drools.org/drools-5.0/change-set.xsd'
 
add
resource source='file:rules/' type='DRL' /
/add
 /change-set
 
 I have a rules folder under WebRoot in my web application but the above
 source url doesn't work as I get a 
  java.net.UnknownHostException: rules
 
 The same is true while providing a file path resource using
 ResourceFactory.newFileResource(path);
 
 In Spring, one can provide ant-path style regular expressions and it 
 looks
 on a relative path. Is there something similar for drools?
 -- 
 View this message in context: http://n3.nabble.com/how-to-provide-a-
 
 relative-path-using-file-in-change-set-and-FileResource-tp122036p122036.html
 Sent from the Drools - User mailing list archive at Nabble.com.
 ___
 rules-users mailing list
 rules-users@lists.jboss.org
 https://lists.jboss.org/mailman/listinfo/rules-users
 
 ___
 rules-users mailing list
 rules-users@lists.jboss.org
 https://lists.jboss.org/mailman/listinfo/rules-users
 
 

-- 
View this message in context: 
http://n3.nabble.com/how-to-provide-a-relative-path-using-file-in-change-set-and-FileResource-tp122036p126125.html
Sent from the Drools - User mailing list archive at Nabble.com.
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


Re: [rules-users] how to provide a relative path using file: in change-set and FileResource

2010-01-18 Thread Esteban Aliverti
HTTP access is an option?

On Mon, Jan 18, 2010 at 1:21 PM, Pritam infinity2hea...@gmail.com wrote:


 classpath works only if the files are under WEB-INF/classes. In my case,
 the
 files are directly under the WebRoot.

 Any suggestions?


 SteveR685 wrote:
 
  Pritam,
 
  Try using classpath: instead of file:.  I've only used this when
  specifying the entire relative path to the file, I'm not sure about
  referencing a directory.
 
  change-set xmlns='http://drools.org/drools-5.0/change-set'
   xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'
   xs:schemaLocation='http://drools.org/drools-5.0/change-set.xsd'
 add
 resource source='classpath:rules/...' type='DRL' /
 /add
  /change-set
 
  Steve Ronderos
 
  rules-users-boun...@lists.jboss.org wrote on 01/15/2010 09:27:05 AM:
 
  [image removed]
 
  [rules-users] how to provide a relative path using file: in change-
  set and FileResource
 
  Pritam
 
  to:
 
  rules-users
 
  01/15/2010 09:35 AM
 
  Sent by:
 
  rules-users-boun...@lists.jboss.org
 
  Please respond to Rules Users List
 
 
  Consider a change-set.xml,
 
  change-set xmlns='http://drools.org/drools-5.0/change-set'
   xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'
  xs:schemaLocation='http://drools.org/drools-5.0/change-set.xsd'
  
 add
 resource source='file:rules/' type='DRL' /
 /add
  /change-set
 
  I have a rules folder under WebRoot in my web application but the above
  source url doesn't work as I get a
   java.net.UnknownHostException: rules
 
  The same is true while providing a file path resource using
  ResourceFactory.newFileResource(path);
 
  In Spring, one can provide ant-path style regular expressions and it
  looks
  on a relative path. Is there something similar for drools?
  --
  View this message in context: http://n3.nabble.com/how-to-provide-a-
 
 
 relative-path-using-file-in-change-set-and-FileResource-tp122036p122036.html
  Sent from the Drools - User mailing list archive at Nabble.com.
  ___
  rules-users mailing list
  rules-users@lists.jboss.org
  https://lists.jboss.org/mailman/listinfo/rules-users
 
  ___
  rules-users mailing list
  rules-users@lists.jboss.org
  https://lists.jboss.org/mailman/listinfo/rules-users
 
 

 --
 View this message in context:
 http://n3.nabble.com/how-to-provide-a-relative-path-using-file-in-change-set-and-FileResource-tp122036p126125.html
 Sent from the Drools - User mailing list archive at Nabble.com.
 ___
 rules-users mailing list
 rules-users@lists.jboss.org
 https://lists.jboss.org/mailman/listinfo/rules-users




-- 


Esteban Aliverti
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


Re: [rules-users] how to provide a relative path using file: in change-set and FileResource

2010-01-18 Thread Pritam

I'm aware of the http access but in my case I'd like to use local access
under WebRoot/


Esteban wrote:
 
 HTTP access is an option?
 
 On Mon, Jan 18, 2010 at 1:21 PM, Pritam infinity2hea...@gmail.com wrote:
 

 classpath works only if the files are under WEB-INF/classes. In my case,
 the
 files are directly under the WebRoot.

 Any suggestions?


 SteveR685 wrote:
 
  Pritam,
 
  Try using classpath: instead of file:.  I've only used this when
  specifying the entire relative path to the file, I'm not sure about
  referencing a directory.
 
  change-set xmlns='http://drools.org/drools-5.0/change-set'
   xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'
   xs:schemaLocation='http://drools.org/drools-5.0/change-set.xsd'
 add
 resource source='classpath:rules/...' type='DRL' /
 /add
  /change-set
 
  Steve Ronderos
 
  rules-users-boun...@lists.jboss.org wrote on 01/15/2010 09:27:05 AM:
 
  [image removed]
 
  [rules-users] how to provide a relative path using file: in change-
  set and FileResource
 
  Pritam
 
  to:
 
  rules-users
 
  01/15/2010 09:35 AM
 
  Sent by:
 
  rules-users-boun...@lists.jboss.org
 
  Please respond to Rules Users List
 
 
  Consider a change-set.xml,
 
  change-set xmlns='http://drools.org/drools-5.0/change-set'
   xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'
  xs:schemaLocation='http://drools.org/drools-5.0/change-set.xsd'
  
 add
 resource source='file:rules/' type='DRL' /
 /add
  /change-set
 
  I have a rules folder under WebRoot in my web application but the
 above
  source url doesn't work as I get a
   java.net.UnknownHostException: rules
 
  The same is true while providing a file path resource using
  ResourceFactory.newFileResource(path);
 
  In Spring, one can provide ant-path style regular expressions and it
  looks
  on a relative path. Is there something similar for drools?
  --
  View this message in context: http://n3.nabble.com/how-to-provide-a-
 
 
 relative-path-using-file-in-change-set-and-FileResource-tp122036p122036.html
  Sent from the Drools - User mailing list archive at Nabble.com.
  ___
  rules-users mailing list
  rules-users@lists.jboss.org
  https://lists.jboss.org/mailman/listinfo/rules-users
 
  ___
  rules-users mailing list
  rules-users@lists.jboss.org
  https://lists.jboss.org/mailman/listinfo/rules-users
 
 

 --
 View this message in context:
 http://n3.nabble.com/how-to-provide-a-relative-path-using-file-in-change-set-and-FileResource-tp122036p126125.html
 Sent from the Drools - User mailing list archive at Nabble.com.
 ___
 rules-users mailing list
 rules-users@lists.jboss.org
 https://lists.jboss.org/mailman/listinfo/rules-users

 
 
 
 -- 
 
 
 Esteban Aliverti
 
 ___
 rules-users mailing list
 rules-users@lists.jboss.org
 https://lists.jboss.org/mailman/listinfo/rules-users
 
 

-- 
View this message in context: 
http://n3.nabble.com/how-to-provide-a-relative-path-using-file-in-change-set-and-FileResource-tp122036p126284.html
Sent from the Drools - User mailing list archive at Nabble.com.
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


Re: [rules-users] how to provide a relative path using file: in change-set and FileResource

2010-01-18 Thread Steve Ronderos
If the files are not in your classpath and you do not want to use http: 
access then I believe that leaves you with file: using an absolute path.

I'm not 100% sure of this, but that is my understanding of the options 
that the Drools ChangeSet provides.

Steve 

rules-users-boun...@lists.jboss.org wrote on 01/18/2010 12:23:03 PM:

 [image removed] 
 
 Re: [rules-users] how to provide a relative path using file: in 
 change-set and FileResource
 
 Pritam 
 
 to:
 
 rules-users
 
 01/18/2010 12:30 PM
 
 Sent by:
 
 rules-users-boun...@lists.jboss.org
 
 Please respond to Rules Users List
 
 
 I'm aware of the http access but in my case I'd like to use local access
 under WebRoot/
 
 
 Esteban wrote:
  
  HTTP access is an option?
  
  On Mon, Jan 18, 2010 at 1:21 PM, Pritam infinity2hea...@gmail.com 
wrote:
  
 
  classpath works only if the files are under WEB-INF/classes. In my 
case,
  the
  files are directly under the WebRoot.
 
  Any suggestions?
 
 
  SteveR685 wrote:
  
   Pritam,
  
   Try using classpath: instead of file:.  I've only used this 
when
   specifying the entire relative path to the file, I'm not sure about
   referencing a directory.
  
   change-set xmlns='http://drools.org/drools-5.0/change-set'
xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'
xs:schemaLocation='http://drools.org/drools-5.0/change-set.xsd'
  add
  resource source='classpath:rules/...' type='DRL' /
  /add
   /change-set
  
   Steve Ronderos
  
   rules-users-boun...@lists.jboss.org wrote on 01/15/2010 09:27:05 
AM:
  
   [image removed]
  
   [rules-users] how to provide a relative path using file: in 
change-
   set and FileResource
  
   Pritam
  
   to:
  
   rules-users
  
   01/15/2010 09:35 AM
  
   Sent by:
  
   rules-users-boun...@lists.jboss.org
  
   Please respond to Rules Users List
  
  
   Consider a change-set.xml,
  
   change-set xmlns='http://drools.org/drools-5.0/change-set'
xmlns:xs='http://www.w3.org/2001/XMLSchema-instance'
   xs:schemaLocation='http://drools.org/drools-5.0/change-set.xsd'
   
  add
  resource source='file:rules/' type='DRL' /
  /add
   /change-set
  
   I have a rules folder under WebRoot in my web application but the
  above
   source url doesn't work as I get a
java.net.UnknownHostException: rules
  
   The same is true while providing a file path resource using
   ResourceFactory.newFileResource(path);
  
   In Spring, one can provide ant-path style regular expressions and 
it
   looks
   on a relative path. Is there something similar for drools?
   --
   View this message in context: 
http://n3.nabble.com/how-to-provide-a-
  
  
  relative-path-using-file-in-change-set-and-FileResource-
 tp122036p122036.html
   Sent from the Drools - User mailing list archive at Nabble.com.
   ___
   rules-users mailing list
   rules-users@lists.jboss.org
   https://lists.jboss.org/mailman/listinfo/rules-users
  
   ___
   rules-users mailing list
   rules-users@lists.jboss.org
   https://lists.jboss.org/mailman/listinfo/rules-users
  
  
 
  --
  View this message in context:
  http://n3.nabble.com/how-to-provide-a-relative-path-using-file-
 in-change-set-and-FileResource-tp122036p126125.html
  Sent from the Drools - User mailing list archive at Nabble.com.
  ___
  rules-users mailing list
  rules-users@lists.jboss.org
  https://lists.jboss.org/mailman/listinfo/rules-users
 
  
  
  
  -- 
  
  
  Esteban Aliverti
  
  ___
  rules-users mailing list
  rules-users@lists.jboss.org
  https://lists.jboss.org/mailman/listinfo/rules-users
  
  
 
 -- 
 View this message in context: http://n3.nabble.com/how-to-provide-a-
 
relative-path-using-file-in-change-set-and-FileResource-tp122036p126284.html
 Sent from the Drools - User mailing list archive at Nabble.com.
 ___
 rules-users mailing list
 rules-users@lists.jboss.org
 https://lists.jboss.org/mailman/listinfo/rules-users
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users