[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - JBMessaging-53

2005-04-16 Thread rajdeep_dua
Implement support for JMSType according JMS 1.1 specs paragraph 3.4.8. Provide 
corresponding test cases (similar to 
org.jboss.test.messaging.jms.message.JMSTimestampHeaderTest)


I have implemented this and done the corresponding unit tests also.
Code submittied to Ovidiu



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: JBMessaging-53

2005-04-16 Thread rajdeep_dua
Test passed but i could see some errors in message acknowledgement and 



  | 
  | [junit] org.jboss.remoting.HandleCallbackException: Error dispatching 
callback to handler.
  | [junit] at 
org.jboss.remoting.ServerInvokerCallbackHandler.handleCallback(ServerInvokerCallbackHandler.java:387)
  | 
  | [junit] at 
org.jboss.jms.server.endpoint.Consumer.handle(Consumer.java:86)
  | [junit] at 
org.jboss.messaging.core.local.PointToPointRouter.handle(PointToPointRouter.java:59)
  | [junit] at 
org.jboss.messaging.core.local.LocalPipe.handle(LocalPipe.java:98)
  | 
  | 

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-04-15 Thread rajdeep_dua
The distributed test case framework for JMS using jgroups has been 
implemented(Based on remoting  DTF source base)

Scenario covered
1.One producer
2.One synchronous consumer

Its based on the distributed test framework developed by Tom for remoting 
org/jboss/dtf/**
I copied it into jboss-head/jms/tests directory.

Result

Testsuite: 
org.jboss.test.messaging.jms.dist.DistributedProducerSynchConsumerTestCase
Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 35.441 sec
- Standard Output ---

---
GMS: address is localhost:1821
---
-  ---

Testcase: testInvokers took 30.113 sec
FAILED
expected: but was:ID:3j001-4n2l02-e7k0983a-1-e7k09gkq-3
junit.framework.ComparisonFailure: expected: but 
was:ID:3j001-4n2l02-e7k0983a-1-e7k09gkq-3
at 
org.jboss.test.messaging.jms.dist.DistributedProducerSynchConsumerTestCase.testInvokers(DistributedProducerSynchConsumerTestCase.java:125)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at org.jboss.dtf.DistributedTestCase.run(DistributedTestCase.java:509)

The Test Fails, producer is setting the msg id to null,
(similar scenario in a local call passes)
With last weeks' CVS co this was passing, when i did the update yesterday the 
test started failing.

Issues faced

1.Had to change the {}/jboss-head/jms/src/resources/jgroups-core.jar with the 
one from thirdparty module
Problem with RPCDispatcher of jgroups-core, not able to make remote calls to 
methods of super class if they are not overridden in the sub class.

2.Added following property to jgroups props in 
org.jboss.dtf.DistributedTestCase to make jgroups work on my m/c
bind_addr=127.0.0.1;
please remove this if tests give an error.
Design

The test case has the following java files

 org.jboss.test.messaging.jms.dist.DistributedProducerSynchConsumerTestCase
  |  org.jboss.test.messaging.jms.dist.ProducerClientTest
  |  org.jboss.test.messaging.jms.dist.SynchConsumerClientTest
  | 
DistributedProducerSynchConsumerTestCase is the main TestCase (extends 
org.jboss.dtf.DistributedTestCase).
It configures the Topics/Queues using ServerManagement utility.
It launches Producers and Consumers in their own VMs (each producer and 
consumer extend  org.jboss.dtf.DistributedTestCase.)
during setUp.

All the VMs wait for each other to come up and then the actual execution of the 
test cases happen.(each VM must know what are the total number of parties 
coming up)

In this test case producer and consumers update 
DistributedProducerSynchConsumerTestCase for the messageID sent and received , 
the assert call happens in DistributedProducerSynchConsumerTestCase.

New Features added to org.jboss.dtf.DistributedTestCase
Call back method  : 
  public void sendMessage(String type,String message)
  |{
  | MethodCall call = new MethodCall(receiveMessage,
  |   new Object[]{type,message}, 
new Class[]{String.class,String.class});
  |  disp.callRemoteMethods(null, call, GroupRequest.GET_NONE, 0);
  | log.debug(sent Message : + call);
  |}
  | 
  |public void receiveMessage(String type,String message)
  |{
  |log.debug(Received Msg: + type + :: + message);
  |} 
  |  
for sending receiving the messageIDs between VMs.

Logging initializer : 
public Logger setLogging(String level, String fileName, Class classObj) 
  | {
  | ...
  | }
  | 
Each VM has its own log file named named after fully qualified class name and 
an ID given as a command line agreement.


Changes to build.xml in jboss-head/jms/tests

Added the following lines in

  | path id=library.classpath
  | 
  |   !--pathelement 
path=${module.root}/../src/resources/jgroups-core.jar/--
  |   pathelement path=${module.root}/../src/resources/jgroups.jar/
  |   pathelement 
path=${module.root}/../../j2ee/output/lib/jboss-j2ee.jar/
  | 
  | Added new component
  |  path id=jms.classes
  | pathelement path=./../output/etc/
  | pathelement path=./../output/classes/
  | pathelement 
path=${module.root}/../../aspects/output/lib/jboss-aspect-library.jar/
  | pathelement 
path=${module.root}/../../common/output/lib/jboss-common.jar/
  | pathelement 
path=${module.root}/../../remoting/output/lib/jboss-remoting.jar/
  | pathelement 
path=${module.root}/../../j2se/output/lib/jboss-j2se.jar/
  | pathelement 
path=${module.root}/../../naming/output/lib/jnp-client.jar/
  | pathelement 
path=${module.root}/../../thirdparty/javassist/lib/javassist.jar/
  | 

[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-04-08 Thread rajdeep_dua
Ovidiu,
Spent last week on analysis of jgroups and the distributed testing framework 
developed by Tom.

i developed the test clients with producer/consumers in separate VMs and 
notifications through jgroups.
With 3 VMs its very slow and its not so predictable(may be i am doing somethign 
wrong).I was wondering what will happen when its more that 3 VMs?

so i am thinking of using RMI for the synchronization instead.
Will update on that in a day or two.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss internal QA (Test Suite)] - Re: distributed test framework

2005-04-03 Thread rajdeep_dua
In JMS the requirements are

1.Synchrnize the send receive in different JVMs
2.Message sent by the Producer has to be compared to the one consumed by the 
consumer

The current DTF, provides mechanism only for remoteAssertions,our reuirements 
are for passing objects back and forth between different 
producers/consumers.Assertions can be done by the controller(which spawns the 
producer and consumer)

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-31 Thread rajdeep_dua
sure, give me sometime to clear jgroup concepts.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-31 Thread rajdeep_dua
It will be a combination of the two

1. exec will spawn the processes
2. jgroups will choreagraph the events between these processes and the results

this mechanism i am planning to use for the performance tests also.
(remoting does the similar things!) and they have the infrastructure in place.

Only glitch is all the classes like DistributedTestCase,MultipleTestCase are in 
org.jboss.remoting :

Should i keep using them or should i make a replica for jms/or somebody at 
jboss abstracts them to a common module, where multiple modules can use them?




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

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


---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/info/Sentarus/hamr30
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-27 Thread rajdeep_dua
Hi Ovidiu,
Started working on the test suite last week end.
(Had some issues with compiling the jmx module,hence the delay)

Here is the brief of the test suite structure
Location
 ${jboss-head}/jms/tests
Package : 
org.jboss.test.messaging.jmsapi
org.jboss.test.messaging.jmsapi.connection
org.jboss.test.messaging.jmsapi.flow
org.jboss.test.messaging.jmsapi.message
...

Actors

All TestCases extend org.jboss.test.messaging.MessagingTestCase
  | Provider specfic Subclasses of Abstract class 
org.jboss.test.messaging.util.AdminUtility : responsible for getting the 
initial context, binding /unbinding of the administered objects.
  | 
  | Property file decides which subclass of this AdminUtility gets picked 
up.Sub class instantiated using reflection to keep the code independent of teh 
actual impl
  | 
  | e.g 
  | org.jboss.test.messaging.util.provider.JBossMessAdminUtility extends
  | org.jboss.test.messaging.util.AdminUtility
  | 
  | JBossMessAdminUtility uses ServerWrapper internally(for the time being)
  | 
  | org.jboss.test.messaging.util.provider.JBossMQAdminUtility : for JBossMQ..
  | 
  | 
  | 
  | Let me know if this is ok,.
  | {Will come out with the design proposal for the perofrmance test framework 
in the other thread.}

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-23 Thread rajdeep_dua
Adrian,

My sourceforge id is: rajdeep_dua

My mail id is [EMAIL PROTECTED]



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-21 Thread rajdeep_dua
As a first step towards compliance with 1.1, i have integrated the latest 
testsuite from Joram which is for 1.1 compliance

This i tested with JBoss 4.0 release code since the latest jms server is still 
not ready.

There are total of 186 tests in this test suite, 2 failed and there were errors 
in 2.

I had to modify org.objectweb.jtests.providers.admin.JBossMQAdmin 

Added te following methods

  | public void createConnectionFactory(String name) {
  |createQueueConnectionFactory(name);
  | }
  | 
  | public void deleteConnectionFactory(String name) {
  |deleteQueueConnectionFactory(name);
  | }
  | 
Here is the test summary report
commands, ant  tests-objectweb-jms followed by ant tests-report-text in the 
testsuite module(note : i replaced the org.objectweb.* with the newer version 
from their CVS)

JBoss daily test results

SUMMARY

Number of tests run:   186



Successful tests:  180

Errors:2

Failures:  4



[time of test: 2005-03-21.08-16 GMT]
[java.version: 1.4.2]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2-b28]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- http://jboss.sourceforge.net/junit-results/32/2005-03-21.08-16 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!


DETAILS OF ERRORS

Suite:   
org.objectweb.jtests.jms.conform.message.properties.JMSXPropertyTest
Test:testSupportsJMSXDeliveryCount
Type:failure
Exception:   junit.framework.AssertionFailedError
Message: JMSXDeliveryCount property is not supported
-
Suite:   
org.objectweb.jtests.jms.conform.message.properties.JMSXPropertyTest
Test:testJMSXDeliveryCount
Type:failure
Exception:   junit.framework.AssertionFailedError
Message: Message property 'JMSXDeliveryCount' not set.
-
Suite:   org.objectweb.jtests.jms.conform.selector.SelectorSyntaxTest
Test:testInvalidIdentifiersStart
Type:error
Exception:   org.jboss.mq.selectors.TokenMgrError
Message: Lexical error at line 1, column 1.  Encountered: % (37), after : 

-
Suite:   org.objectweb.jtests.jms.conform.selector.SelectorTest
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-
Suite:   org.objectweb.jtests.jms.conform.session.QueueSessionTest
Test:testRollbackRececeivedMessage
Type:failure
Exception:   junit.framework.ComparisonFailure
Message: expected:...RollbackRececeivedMessage but 
was:...JMSDeliveryModeInSelector:1
-
Suite:   org.objectweb.jtests.jms.conform.session.UnifiedSessionTest
Test:testCreateDurableConnectionConsumerOnQueueConnection
Type:failure
Exception:   junit.framework.AssertionFailedError
Message: Should throw a javax.jms.IllegalStateException
-

Please let me know how this can be checked in.

I think we might have to modify JBossMQAdmin if the MBean APIs etc are changing 
for the serverless impl.

Guys let me know your thoughts on this.


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Testcase :failure

2005-03-19 Thread rajdeep_dua
Waiting for the announcement! and the document

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Testcase :failure

2005-03-18 Thread rajdeep_dua
a. got the reason--  

org.jboss.messaging.jms.server.container.ServerConnectionInterceptor.invoke()

 functionality still has to be imlpemented.

b.Would appreciate if the timelines  when the  JMSFacade would be in place,for 
my testcases to run and do their job.

c.i am using the following way of getting the connectionfactory

  | Properties props = new Properties();
  | 
props.put(java.naming.factory.initial,org.jboss.messaging.util.StandaloneInitialContextFactory);
  | ctx = new InitialContext(props);

Is this the right approach

For desintations i am using the following approach- 
javax.jms.Destination destination = new 
org.jboss.messaging.jms.destination.JBossDestination(destName);

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Performance Harnesses for JMS

2005-03-18 Thread rajdeep_dua
First one is from sonic,not sure about the licensing issues.

http://www.sonicsoftware.com/products/sonicmq/performance_benchmarking/index.ssp

Second one is an open source performance testing framework for J2EE called 
Grinder developed by folks at BEA

http://grinder.sourceforge.net/

I have heard ECPerf has some scenarios for testing MDBs.

Any comments, to me sonic seems the easiest one because its very simple.Will 
have to look into grinder to comment about it.


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Can we start writing jms test clients to check compliance wi

2005-03-17 Thread rajdeep_dua
Hi
Is the development in a state where jms api client can be written.i thought of 
start contribution by writing jms 1.1 compliance tests.

saw a JMSClient in org.jboss.messaging.jms.tools, but not sure where is it 
going to pick up the initial context properties from(there is  p2p.properties 
in resources).any pointers will be helpful

IS there anything else where i can start contributing before diving into the 
core development.



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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-17 Thread rajdeep_dua
i was able to run a simple jms api test client with this

Properties props = new Properties();
  | 
props.put(java.naming.factory.initial,org.jboss.messaging.util.StandaloneInitialContextFactory);
  | ctx = new InitialContext(props);

please let me know if my writing test cases for jms compliance is ok
i am using test package -- 
org.jboss.test.messaging.jmsapi

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-17 Thread rajdeep_dua
Adrian objectwebs test cases you are talking about - are they same as the joram 
test suite.
i had intergrated it with pramat's jms server 3 years back.

i think they have upgraded the test suite for 1.1 version also.

we can integrated those test cases.

My first test client failed yesterday

 connection.getClientID() 
ClientID is always the tricky part

throws OperationNotsupportedException. will post the exact stact trace.

For performance test there is a grinder framework available
Sonic also has a test harness which is downloadable.
It covers many permutations/combinations outlined above.I can start looking 
into that also.

please let me know where should i start posting testcases?


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Can we start writing jms test clients to check complianc

2005-03-17 Thread rajdeep_dua
For check on compliance i am following the specification itself.
 each api call has various senarios where things can bomb or atleast there is a 
risk!

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Testcase :failure

2005-03-17 Thread rajdeep_dua
This is the simple test case i was talking about in the previous 
topic,connection.getClientID fails,
Is it a bug or a functionality to be implemented?

public void testClientID() {
  | //log.info(inside testQueueConection);
  | try {
  | connection = connFactory.createConnection();
  | String defaultClientID = connection.getClientID();
  | String testID = TestClientID;
  | log.debug(defaultclient id : + defaultClientID);
  | connection.setClientID(testID);
  | assertEquals(testID, connection.getClientID());
  | } catch (JMSException jms) {
  | log.error(jms);
  | fail(Exception raised  + jms);
  | }catch(Exception e){
  | log.error(e);
  | fail(Exception raised  + e);
  | }
  | }

And here is the junit output

   [junit] Running 
org.jboss.test.messaging.jmsapi.connection.QueueConnectionTest
  | [junit] 05:01:19,255 INFO  [LogInterceptor] invoke: method=getClientID 
params=[]
  | [junit] 05:01:19,265 INFO  [LogInterceptor] error in invoke: 
method=getClientID params=[]
  | [junit] java.lang.UnsupportedOperationException: public abstract 
java.lang.String org.jboss.messaging.jms.client.Con
  | nectionDelegate.getClientID() throws javax.jms.JMSException
  | [junit] at 
org.jboss.messaging.jms.server.container.ServerConnectionInterceptor.invoke(ServerConnectionIntercept
  | or.java:53)
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.messaging.jms.server.container.ServerFactoryInterceptor.invoke(ServerFactoryInterceptor.jav
  | a:51)
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.messaging.jms.container.ObjectOverrideInterceptor.invoke(ObjectOverrideInterceptor.java:62)
  | 
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.aop.joinpoint.InvocationBase.invokeNext(InvocationBase.java:125)
  | [junit] at 
org.jboss.messaging.jms.container.Container.invoke(Container.java:161)
  | [junit] at 
org.jboss.messaging.jms.container.ForwardInterceptor.invoke(ForwardInterceptor.java:53)
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.messaging.jms.client.container.FactoryInterceptor.invoke(FactoryInterceptor.java:52)
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.messaging.jms.client.container.ClosedInterceptor.invoke(ClosedInterceptor.java:99)
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.messaging.jms.container.LogInterceptor.invoke(LogInterceptor.java:54)
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.messaging.jms.client.container.JMSExceptionInterceptor.invoke(JMSExceptionInterceptor.java:
  | 47)
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.messaging.jms.container.ObjectOverrideInterceptor.invoke(ObjectOverrideInterceptor.java:62)
  | 
  | [junit] at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:66)
  | [junit] at 
org.jboss.messaging.jms.container.Container.invoke(Container.java:179)
  | [junit] at $Proxy0.getClientID(Unknown Source)
  | [junit] at 
org.jboss.messaging.jms.client.facade.JBossConnection.getClientID(JBossConnection.java:121)
  | [junit] at 
org.jboss.test.messaging.jmsapi.connection.QueueConnectionTest.testClientID(QueueConnectionTest.java:
  | 50)
  | [junit] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native 
Method)
  | [junit] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | [junit] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | [junit] at java.lang.reflect.Method.invoke(Method.java:324)
  | [junit] at junit.framework.TestCase.runTest(TestCase.java:154)
  | [junit] at junit.framework.TestCase.runBare(TestCase.java:127)
  | [junit] at junit.framework.TestResult$1.protect(TestResult.java:106)
  | [junit] at 
junit.framework.TestResult.runProtected(TestResult.java:124)
  | [junit] at junit.framework.TestResult.run(TestResult.java:109)
  | [junit] at junit.framework.TestCase.run(TestCase.java:118)
  | [junit] at junit.framework.TestSuite.runTest(TestSuite.java:208)
  

[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: TEST-org.jboss.test.ws.attachment.AttachmentDIITestCase

2005-03-06 Thread rajdeep_dua
thanks, it worked

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - TEST-org.jboss.test.ws.attachment.AttachmentDIITestCase all

2005-03-02 Thread rajdeep_dua
My intention is to get familiarised with jboss webservice module,not sure why 
this is happening

Why are the calls going to axis impl? still
Any idea why this might be happening

Client side Exception :

Testsuite: org.jboss.test.ws.attachment.AttachmentDIITestCase
  | Tests run: 5, Failures: 0, Errors: 5, Time elapsed: 2.864 sec
  | - Standard Output ---
  | 
URL:file:/E:/rajdeep/jboss/jboss-head/webservice/test/output/libs/jbossws-attachment.war
  | 
URL:file:/E:/rajdeep/jboss/jboss-head/webservice/test/output/libs/jbossws-attachment.war
  | -  ---
  | 
  | Testcase: testSendMimeImageJPEG took 0.851 sec
  | Caused an ERROR
  | Client invocation failed
  | javax.xml.rpc.JAXRPCException: Client invocation failed
  | at org.jboss.ws.jaxrpc.CallImpl.invokeInternal(CallImpl.java:476)
  | at org.jboss.ws.jaxrpc.CallImpl.invoke(CallImpl.java:283)
  | at 
org.jboss.test.ws.attachment.AttachmentDIITestCase.sendAndValidateMimeMessage(AttachmentDIITestCase.java:195)
  | at 
org.jboss.test.ws.attachment.AttachmentDIITestCase.testSendMimeImageJPEG(AttachmentDIITestCase.java:99)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
  | at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
  | at junit.extensions.TestSetup.run(TestSetup.java:23)
  | Caused by: javax.xml.soap.SOAPException: Could not transmit message
  | at 
org.jboss.ws.soap.SOAPConnectionImpl.call(SOAPConnectionImpl.java:100)
  | at org.jboss.ws.jaxrpc.CallImpl.invokeInternal(CallImpl.java:451)
  | ... 22 more
  | Caused by: org.jboss.remoting.CannotConnectException: Can not connect http 
client invoker.
  | at 
org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:149)
  | at 
org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:69)
  | at 
org.jboss.remoting.RemoteClientInvoker.invoke(RemoteClientInvoker.java:117)
  | at org.jboss.remoting.Client.invoke(Client.java:201)
  | at org.jboss.ws.soap.SOAPConnectionImpl.call(SOAPConnectionImpl.java:96)
  | ... 23 more
  | Caused by: java.io.IOException: Server returned HTTP response code: 500 for 
URL: http://localhost:8080/jbossws-attachment
  | at 
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:789)
  | at 
org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:134)
  | ... 27 more

Server side Exception

005-03-02 12:53:49,716 ERROR [org.jboss.webservice.server.ServerEngine] Server 
error
  | javax.xml.soap.SOAPException: org.apache.axis.AxisFault: Invalid encoding 
name UTF-8; START=[EMAIL PROTECTED];
BOUNDARY==_PART_0_25865024.1109768029626.
  | at org.apache.axis.MessagePart.getEnvelope(MessagePart.java:1080)
  | at org.jboss.webservice.server.ServerEngine.invoke(ServerEngine.java:62)
  | at 
org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:975)
  | at 
org.jboss.webservice.server.ServiceEndpointServlet.doPost(ServiceEndpointServlet.java:84)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
  | at 
org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:370)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:147)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:53)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 

[JBoss-dev] [Design of JBoss's Web Services Implementation] - Root tag of WSDL 2.0 document definition/ or description/

2005-02-28 Thread rajdeep_dua
Hi all
WSDL schema says that root element of a WSDL 2.0
document should be definition/Even the document published by Anil for mapping 
from 1.1 to 2.0 shows the same.
http://www.w3.org/2004/08/wsdl

but WSDL 2.0 primer examples show it as description/

Would appreciate if any body could clarify?
http://www.w3.org/TR/2004/WD-wsdl20-primer-20041221

rgds
Rajdeep

p.s Some body from Axis mailing list has stated that the change from definition 
to description tag is pretty recent.


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Query on Standards supported by JBossWS J2EE style services

2005-02-21 Thread rajdeep_dua
WSDL : 1.1
SOAP : 1.1
JAX- RPC : 1.0
SAAJ (for SOAP 1.1)
WS-I Basic profile 1.0(or 1.1)


Has any formal compliance testing been done on interoperatability and WS-I 
compliance?


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: Query on Standards supported by JBossWS J2EE style servi

2005-02-21 Thread rajdeep_dua
Thomas,

There are tools available on ws-i.org for checking compliance, have those been 
used?

http://ws-i.org/deliverables/index.aspx

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - performance bench mark for SOAP

2005-02-09 Thread rajdeep_dua
Found this on axis mailing lists
http://www.extreme.indiana.edu/xgws/soap_bench/

have we tried testing jboss's web service impl and how it compares to others

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss's Web Services Implementation] - Re: Web Services Specifications Index Page

2004-12-27 Thread rajdeep_dua
i have been following this field for some time , it looks to me as if web 
services is in a mess in terms of number of specs and duplication of 
standards--e.g (i found jax rpc as a spec much more cryptic than any of the 
main line j2ee specs because of cross references to so many other specs: 
soap/wsdl/saaj/jaxm/jaxr/jaxb/ and the list goes on)

In this scenario this link from msdn does provide some clarity on where we are 
going-- but isnt it only MS perspective

Consider this : following consortiums communities are driving the specs
1.w3c
2.oasis
3.JCP through java communicty
4.microsoft /ibm/bea with  others
//i am sure there are more 

Would n't it be a better idea to first filter out competing specs...and then 
come out with a road map.


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [EJB on JBoss] - Wanted to see JBoss Implementation source for EJBs

2004-11-29 Thread rajdeep_dua
Is is possible to generate the java source file for the implementation of the 
abstract ejb class files that we define at design time.

It will be really helpful to know what happens behind the scenes.And is it 
possible to get hold of the final SQL query generated from the EJB QL?

i had posted a question on validation of the EJB QL , is there any way to do it 
at design time.

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - JAXM support

2004-11-28 Thread rajdeep_dua
Wanted to know the roadmap for supporting SOAP over JMS(JAXM).

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [XDoclet on JBoss (XDoclet/JBoss)] - Re: XDoclet Configuration

2004-11-23 Thread rajdeep_dua
you dont need to configure xdoclet explicitly , it gets configured when you 
install jboss ide plugins

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss IDE (dev)] - Re: XDoclet CMP2 Exception

2004-11-23 Thread rajdeep_dua
Ya i also go this error when i tried to use jboss version no as 4.0,when i 
mobed to 3.0 it worked fine


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Build System] - Compilation Errors in WebServices module

2004-08-04 Thread rajdeep_dua
org.apache.axis.message.SoapElementDirtyImpl class not found
Its not there is axis.jar 



:\rajdeep\jboss\NewCheckOut\jboss-head\webservice\src\main\org\jboss\webservice\handler\HandlerChainBaseImpl.java:11:
 cannot resolve symbol
  | symbol  : class SOAPElementDirtyImpl 
  | location: package message
  | import org.apache.axis.message.SOAPElementDirtyImpl;
  |^
  | 
E:\rajdeep\jboss\NewCheckOut\jboss-head\webservice\src\main\org\jboss\webservice\server\InvokerProvider.java:13:
 cannot resolve symbol
  | symbol  : class SOAPEnvelopeDirtyImpl 
  | location: package message
  | import org.apache.axis.message.SOAPEnvelopeDirtyImpl;

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

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


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Build System] - jboss-head build compilation errors

2004-07-03 Thread rajdeep_dua
Getting th following compilation errors in jboss-head/varia,i didnot get this 
org\jboss\jmx\adaptor\snmp\config package in co or update 

I have embedded some of the errors.

E:\rajdeep on 
hydhtc26844\jboss\NewCheckOut\jboss-head\varia\src\main\org\jboss\jmx\adaptor\snmp\agent\TrapEmitter.java:44:
 package org.jboss.jmx.adaptor.snmp.config.manager does not exist
  | import org.jboss.jmx.adaptor.snmp.config.manager.Manager;
  |  ^
  | E:\rajdeep on 
hydhtc26844\jboss\NewCheckOut\jboss-head\varia\src\main\org\jboss\jmx\adaptor\snmp\agent\TrapEmitter.java:45:
 package org.jboss.jmx.adaptor.snmp.config.manager does not exist
  | import org.jboss.jmx.adaptor.snmp.config.manager.ManagerList;
  |  ^
  |   ^

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

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


---
This SF.Net email sponsored by Black Hat Briefings  Training.
Attend Black Hat Briefings  Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Build System] - Re: cvs build questions on jboss-head and jms

2004-06-30 Thread rajdeep_dua
i am doing a 

cvs checkout -P jboss-head

still getting the thirdparty module with the following structure


  | E:\rajdeep on hydhtc26844\jboss\NewCO\jboss-head\thirdpartydir /b
  | .cvsignore
  | apache
  | beanshell
  | bouncycastle
  | CVS
  | dom4j
  | dreambean
  | eclipse
  | enhydra
  | exolab
  | gjt
  | gnu
  | hsql
  | hsqldb
  | ibm
  | informa
  | informix
  | jacorb
  | javagroups
  | javassist
  | jboss
  | jdom
  | jflex
  | jfreechart
  | jregex
  | juddi
  | junit
  | junitejb
  | jython
  | mortbay
  | mysql
  | oasis
  | opennms
  | oswego
  | planet57
  | qdox
  | README
  | sourceforge
  | sun
  | trove
  | ws4ee
  | wutka
  | xdoclet
  | xml

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

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


---
This SF.Net email sponsored by Black Hat Briefings  Training.
Attend Black Hat Briefings  Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Build System] - Re: cvs build questions on jboss-head and jms

2004-06-30 Thread rajdeep_dua
Please ignore previous post

Scott u r right,i was using the HEAD tag also.

 cvs co jboss-head 

is the right command
So when is HEAD tag to be used for checking out?

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

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


---
This SF.Net email sponsored by Black Hat Briefings  Training.
Attend Black Hat Briefings  Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JMS on JBoss (JMS/JBoss)] - cvs build questions on jboss-head and jms

2004-06-20 Thread rajdeep_dua
Sorry for bugging on this again

I checked out everything using HEAD tag
I have been able to compile some modules
Changes i made 

Since libraries.ent in tools assumes third party jars are in particular 
folder(thirdparty/xdoclet-xdoclet/) but actualt thirdparty module has 
structure(thirdparty/xdoclet/xdoclet)

This is the case for most of the folders(sun, gnu etc)

i have made the changes in local.properties and build.xml file of the repsective 
modules

Am i missing something or this is the right path??

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

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


---
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JMS on JBoss (JMS/JBoss)] - Building JBossMQ from the CVS repository

2004-06-06 Thread rajdeep_dua
Hi I am trying to build the JBossMQ from CVS.
Since the build file assumes the tools module to be in a particular hierarchy but the 
actual module seems to be a different tree.

I am getting the following exceptions

configure:
Caught exception (org.apache.tools.ant.BuildException) while expanding apache.to
mcat41.classpath: E:\rajdeep on hydhtc26844\jboss\thirdparty\apache-tomcat41 not
 found.
Caught exception (org.apache.tools.ant.BuildException) while expanding apache.to
mcat50.classpath: E:\rajdeep on hydhtc26844\jboss\thirdparty\apache-tomcat50 not
 found.
Caught exception (org.apache.tools.ant.BuildException) while expanding beanshell
.beanshell.classpath: E:\rajdeep on hydhtc26844\jboss\thirdparty\beanshell-beans
hell\lib not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding jfreechar
t.jfreechart.classpath: E:\rajdeep on hydhtc26844\jboss\thirdparty\jfreechart\li
b not found.

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

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


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JMS on JBoss (JMS/JBoss)] - CVS access for contribution

2004-06-02 Thread rajdeep_dua
Hi
For getting the latest source code and the build what is the exact path as i want to 
contribute to the JMS features.

Is there any path to the CVS?


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

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



---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development