[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - how to split to 2 transactions in ejb3 method

2006-05-11 Thread amitguz
Hibernate version: 
hibernate 3.1 + ejb3.

Hi.
I have a method in ejb3 stateless bean, which I'm tring to split there the 
initial transaction to two transactions.
meaning:


  | 
  | public @Stateless class XXXBean {
  | 
  | @PersistenceContext(unitName=ImagineDB)
  | private EntityManager manager;
  | 
  | public void someMethod() {
  |Dog dog = new Dog(); //dog is an entity bean;
  |manager.persist(dog);
  |manager.flush();
  |//here I want new transaction
  |manager.getTransaction().commit(); //this commands fails
  |Cat cat = new Cat();
  |manager.persist(cat);
  | 
  | }
  | 
  | }
  | 
  | 

Thanks in advance, amit

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3942965#3942965

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3942965


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - change in run-time the soap:address location of wsdl.

2006-04-18 Thread amitguz
Hi, I'm tring to create a j2ee client which will call to webservice.
Only at run time I know the ip of the machine that runs the web-service.

Do I need to parse the wsdl file and to replace the string 
REPLACE_WITH_ACTUAL_URL by the real ip ? 
Is there another option? I know when using the stub option (which doesn't 
implemented in JBOSS) there is an option to change the end point IP address in 
the stub 

  | _setProperty(ENDPOINT_ADDRESS_PROPERTY, 
http://tulip.imagine-com.local:12124;);
  | 

Currently my code looks as follow

  | URL mappingLocation = this.getClass().getClassLoader
  |  .getResource(META-INF/jaxrpc-mapping.xml);
  | File file = new File(C:/a.wsdl);
  | URL url = new URL(file.toURL().toString());
  | QName serviceName = new QName(http://com.bbb.aa;,
  |   aaService);
  | ServiceFactoryImpl factory = (ServiceFactoryImpl) ServiceFactory
  | .newInstance();
  | Service service = (Service) factory.createService(url, mappingLocation,
  |   null, serviceName, null);
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3937885#3937885

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3937885


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: how to handle application properties(meta data)?

2006-01-23 Thread amitguz
I'm a little confused, how can I reference an xml file (myjboss-service.xml) 
within the EAR descriptor (application.xml)  ?
the module tag can only have childrens tag such as   .



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3919070#3919070

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3919070


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - can we use different hierarchy stargey for each class?

2006-01-23 Thread amitguz
suppose I have a class hierarchy tree and I want the root class to use 
table_per_class stragey.
but from the middle class I want to change the stragey to single table,
can I do it?

i.e - the following class hierarchy 
___person_
__/\
employee___  manager
/___\
___Team leaderproject manager

and I want this hierarchy to be translated to the following tables:

employee_table 
manager_table (this table will contain data for both classes Team Leader   
Project Manager)


  


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3919262#3919262

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3919262


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: how to handle application properties(meta data)?

2006-01-23 Thread amitguz
but now I'm receiving the following error code:
anonymous wrote : File META-INF/jboss-app.xml process error. Line: 9. Error 
message: The content of element type module must match (service|har)

by the way, I'm using JBOSS 4.0.3.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3919264#3919264

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3919264


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - how to handle application properties(meta data)?

2006-01-22 Thread amitguz
Is there a way to keep properties in application level, meaning to use
configurable application meta data (i.e - such the *.properties file)?

currently as far as I know the only choise I have is to use the 
jboss-service.xml in the JBOSS_HOME/default server/conf.
but I want to use the properties only for my application and not for all the 
application deployed in JBOSS.


  | mbean code=org.jboss.varia.property.SystemPropertiesService
  |name=jboss.util:type=Service,name=SystemProperties
  | 
  | !-- Load properties from each of the given comma seperated URLs --
  | attribute name=URLList
  | ./conf/local.properties
  | /attribute
  | 
  | !-- Set properties using the properties file style. --
  | attribute name=Properties
  | property1=This is the value of my property
  | property2=This is the value of my other property
  | /attribute
  | 
  | /mbean
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3918934#3918934

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3918934


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: how to handle application properties(meta data)?

2006-01-22 Thread amitguz
Thanks for your quick answer Dimitris.

but still I don't fully understand your answer, because I tried to add my own 
jboss-services.xml file to the EAR (in the META-INF directory) 
but it doesn't work, I couldn't access the properties, only when I use
the jboss-services in JBOSS_HOME//conf it works.
and as far as I understand jboss-services must be referenced to MBEAN (SAR) not 
to EAR, so how can I do it?

can u give me an example of how to do it?
and what do u mean by referenced by a statement?
anonymous wrote : 
  | e.g. a xx-service.xml descriptor inside your .ear referenced by a statement
  | 

Thanks a lot amit

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3919013#3919013

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3919013


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Does it allowed to call a web service from EJB3 (not through

2006-01-18 Thread amitguz
1.) I prefer to use this method instead of JNDI because as far I understand 
EJB3 doesn't support calling a web-service nor exposing a web-service, am I 
right?
  | 2.) i.e - may I call within EJB3 stateless session bean a web service as 
the following code (not through JNDI)?
  | 3.) the following code works, but I still don't understand in which cases 
Do I need to send the wsdd url?
  | 4.) Is There a way to retrieve the jaxrpc-mapping.xml from the remote web 
service instead of keep it local in the client side?
  | 
  | 
  | Thanks alot.
  |  
  | 
  |   | File file = new File(jaxrpc-mapping.xml);
  |   | URL mappingLocation = file.toURL();
  |   | URL url = new 
URL(http://localhost:8070/GWSimManager/DeviceManagerEndpoint?wsdl;);
  |   | QName serviceName = new QName(http://com.imagine.platformSim;, 
DeviceManagerService);
  |   | 
  |   | ServiceFactoryImpl factory = (ServiceFactoryImpl) 
ServiceFactory.newInstance();
  |   | Service service = (Service)factory.createService(url, 
mappingLocation,null,serviceName,null);
  |   | //this create a dynamic proxy which implement the SEI which return the 
stub.
  |   | DeviceManagerEndpoint devMgr = (DeviceManagerEndpoint) 
service.getPort(DeviceManagerEndpoint.class);
  |   | PlatformPort port = devMgr.getPortDetails();
  |   | System.out.println(port.getName());
  |   | System.out.println(get Port details!!!);
  |   | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3918033#3918033

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3918033


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - ClassCastException while using JWSDP 1.6

2006-01-12 Thread amitguz
I'm tring to write a simple java client  which connect to web-service on JBOSS 
4. (using jdk 1.5.0) and I'm tring to use the static stub client method.
(when I wrote the client as Dynamic proxy client all worked fine).


  | String endPoint = 
http://localhost:8080/listener/DeviceListenerService;;
  | String nameSpace = http://com.imagine.GWListener;;
  | String wsdlPort = DevicelistenerPort;
  | DeviceListenerService_Impl serviceProxy = new 
DeviceListenerService_Impl();
  | Devicelistener_Stub devStub = 
(Devicelistener_Stub)serviceProxy.getDevicelistenerPort();
  | 
devStub._setProperty(javax.xml.rpc.Stub.ENDPOINT_ADDRESS_PROPERTY,endPoint);
  | devStub.modulePullOut(3);
  | System.out.println(call module pull out by Static stubb client 
web-service);
  | 
  | 

and I'm receiving the following error:


  | Exception in thread main java.lang.ClassCastException: 
org.jboss.axis.Message
  | at com.sun.xml.rpc.client.StubBase._postSendingHook(StubBase.java:231)
  | at 
com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:324)
  | at 
com.imagine.GWListenerStubs.Devicelistener_Stub.modulePullOut(Devicelistener_Stub.java:70)
  | at mainTestWebService.callWebService2(mainTestWebService.java:50)
  | at mainTestWebService.main(mainTestWebService.java:24)
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3917086#3917086

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3917086


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: failed to implement a stand alone java client calling to

2006-01-12 Thread amitguz
the JNDI rules are like that:
under JAVA : u can reach JNDI names only from the same VM which JBOSS use, 
meaning if your client is a standalone client (on a separate VM) and your JBOSS 
run on a different VM u cannot fetch the namespaces in this area from the 
client.
under GLOBAL: u can fetch the objects from the JNDI even from different VM.

my problem was that my remote interface wasn't written to the global JDNI due 
to bye mistake I assign both the local and the remote to the same interface.
@local
@remote
public interface Authors {

}




View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3917113#3917113

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3917113


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Does EJB3 doesn't support Web-service both client side and s

2006-01-12 Thread amitguz
meaning it doesn't support exposing ejb3 as web-service and
also it doesn't support calling web-service from an ejb 3.0?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3917134#3917134

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3917134


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Does EJB3 doesn't support calling a web-service?

2006-01-12 Thread amitguz
EJB3 doesn't support exposing ejb3 as web-service and 
also it doesn't support calling web-service from an ejb 3.0, am i right?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3917135#3917135

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3917135


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Do I still need to download EJB3 RC3 although I'm using JBO

2006-01-01 Thread amitguz
Do I still need  to download EJB3 RC3 although I'm using JBOSS 4.0.3 SP1 ?

Thanks, amit

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3915088#3915088

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915088


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - where I can find ejb 3.0 examples (which mention in EJB 3.0

2005-12-31 Thread amitguz
the tutorial are in : 
http://docs.jboss.org/ejb3/app-server/tutorial/index.html

but where are the examples code?

tnx, amit

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3915087#3915087

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915087


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: EJB 3.0 Remote Interface Not Bound

2005-12-29 Thread amitguz
I also encounter the same problem, any ideas?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3914815#3914815

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914815


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - apache in JBOSS?

2005-12-25 Thread amitguz
JBOSS is fully implemented in pure java, 
Apache HTTP server is platform depended (native).

Currently JBOSS contains also tomcat/apache HTTP server together.
Is it still that apache run native (platform dependent)? How come (Does JBOSS 
installation contains platform based code for the apache HTTP server)?


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3914277#3914277

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914277


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - failed to implement a stand alone java client calling to EJB

2005-12-14 Thread amitguz
Hi All,
I'm using JBOSS 4.0.3  and my stand alone client failed to connect to EJB.

I tried to implement it as follow :

in the server side :
I create a stateless AuthorBean class which implements Authors 
Remote interface


in the client side I wrote :

Properties jndiProps = new Properties();
  | 
jndiProps.setProperty(Context.INITIAL_CONTEXT_FACTORY,org.jnp.interfaces.NamingContextFactory);
  | 
jndiProps.setProperty(Context.URL_PKG_PREFIXES,org.jboss.naming:org.jnp.interfaces);
  | jndiProps.setProperty(Context.PROVIDER_URL, 
jnp://localhost:1099);
  | Context c = new InitialContext(jndiProps);
  | Object reference = c.lookup(Authors);
  | 

but I'm receiving the following error:
javax.naming.CommunicationException: Could not obtain connection to any of 
these urls: localhost:1099 and discovery failed with error: 
java.security.AccessControlException: access denied (java.net.SocketPermission 
230.0.0.4 connect,accept,resolve) [Root exception is 
javax.naming.CommunicationException: Failed to connect to server localhost:1099 
[Root exception is java.security.AccessControlException: access denied 
(java.net.SocketPermission 127.0.0.1:1099 connect,resolve)]]
  | at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1399)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:579)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:572)
  | at javax.naming.InitialContext.lookup(InitialContext.java:351)
  | at client.startApplication.main(startApplication.java:29)
  | 

What I'm doing wrong ?
Can someone point me to an example of how to implement such call 
from stand alone client to ejb on JBOSS?

tnx, amit


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912582#3912582

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912582


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: failed to implement a stand alone java client calling to

2005-12-14 Thread amitguz
found the problem. 
I needed set the security. 
add new file to the client side
 policy.all which contain :

  | grant {
  | permission java.security.AllPermission , ;
  | };
  | 
and run the client VC with -Djava.security.policy=policy.all

but now I lookup failed with:

  | javax.naming.NameNotFoundException: authors not bound
  | at org.jnp.server.NamingServer.getBinding(NamingServer.java:514)
  | at org.jnp.server.NamingServer.getBinding(NamingServer.java:522)
  | at org.jnp.server.NamingServer.getObject(NamingServer.java:528)
  | at org.jnp.server.NamingServer.lookup(NamingServer.java:281)
  | at sun.reflect.GeneratedMethodAccessor74.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912597#3912597

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912597


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - To use Application Server or not?

2005-12-14 Thread amitguz
I'm going to develop a network management application. (Similar to H.P open 
view but with specific business logic).

The application will need to have a web interface (in the intranet)  for 
managing network elements and also a client application to more sophisticated 
operations.


The number of concurrent user will be small but probably the system will have 
to deal with medium-large of elements.

Does JBOSS will fit to this requirement? Isn?t it overkill for such 
requirements?

tnx, amit


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912722#3912722

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912722


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - To Use Application Server or not? CORBA OR SOAP for C++ int

2005-12-14 Thread amitguz
I'm going to develop a network management application. (Similar to H.P open 
view but with specific business logic). 

The application will need to have a web interface (required only for intranet 
users) for managing network elements and also a client application to more 
sophisticated operations. 

The number of concurrent user will be small but probably the system will have 
to deal with medium-large of elements. 

1.) Does JBOSS will fit to this requirement? Isn?t it overkill for such 
requirements? 
2.) what is the best method for interacting between C++ process and JAVA 
probess on another machine ? CORBA/SOAP or other method

tnx, amit 


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912819#3912819

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912819


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - missing

2005-12-11 Thread amitguz
Hi,
I downloaded 
 JBOSS 4.0.3 jar file and also
 use the install feaure in eclipse to download the jboss ide from 
   http://download.jboss.org/jbosside/updates/development/;
and I tried to follow the trailblaizer demo but 
I failed in the first step :), in my elicpse IDE I cannot find ejb 3.0 
project 
in create new project dialog, why?

tnx, amit

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3911975#3911975

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3911975


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: missing

2005-12-11 Thread amitguz
 I found the problem.
The Elicpse IDE wasn't installed properly.
so reinstall fix the problem.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3911977#3911977

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3911977


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user