[JBoss-dev] [JBossWS] - Re: cannot rename web.xml to web.xml.org?
The file web.xml in the deployment unit is going to modified at deployment time. The old file is renamed and a new modified one is created to bring web.xml in sync with webservices. If the two files already fit the app will also work although the renaming nd replacing of web.xml fails, like in your case. The cause for the rename problem itself is a missing right on the file web.xml for the user running the jboss instance. I saw this, when I deployed a web-app as a war directory structure instead of putting it all together in one war-file. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850564#3850564 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3850564 --- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl ___ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
[JBoss-dev] [JBossWS] - Re: TypeMapping problem
I guess your typemapping is not correct. To get sure, I would have to see the wsdl-file. I guess ArrayOf... is not an array, it conatins an array of types. The only way we found to get this working was, to create a class for that ArrayOf.. type. For ArrayOf... you need the BeanSerializer/BeanDeserializer then. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3848622#3848622 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3848622 --- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini FREE for your judgement on who ports your project to Linux PPC the best. Sponsored by IBM. Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php ___ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
[JBoss-dev] [JBossWS] - Re: how to get multiple webservices running
Done ! Bug #1027433. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3848217#3848217 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3848217 --- This SF.Net email is sponsored by: thawte's Crypto Challenge Vl Crack the code and win a Sony DCRHC40 MiniDV Digital Handycam Camcorder. More prizes in the weekly Lunch Hour Challenge. Sign up NOW http://ad.doubleclick.net/clk;10740251;10262165;m ___ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
[JBoss-dev] [JBossWS] - how to get multiple webservices running
I deployed two similar ear-files on JBoss 4.0.0RC2. Those ear have the following content: test1.ear: common.jar entity.jar session.jar webservice1.war test2.ear: common.jar entity.jar session.jar webservice2.war common contains some utility classes, entity.jar all entity-bean stuff, session.jar the SLSBs and webservice?.war the webservice-classes,-interfaces and -config-files. The webservices are deployed es servlets with different context-roots. I want to use the structure above to deploy a prod- and test-version of our application on one jboss-server. When the deployment process has finished, the webservices are accessible over the different URL's, but only the latest deployed JSE is called. So if test is deployed last and I can call the prod-WS via prod-URL, the test-WS is executed and data access and modification is done in the test database. I've already created an jboss-app.xml with a unique loader-repository entry to get the ears loaded in different classloaders. But it didn't solve my problem. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846594#3846594 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3846594 --- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click ___ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
[JBoss-dev] [JBossWS] - config webservice URL
The URL of my webservices is now http://localhost:8080/ejb-session-sales/CustomerOrder and http://localhost:8080/ejb-session-production/ProductionOrder. ejb-session-sales and ejb-session-production are the basenames of my ejb-jar-files conatining the webservices. Is the a way to replace the part of the url or do I have do rename my jar-files to get another URL ? I would like to have http://server:port///, e.g. http://localhost:8080/mbi-ws/prod/CustomerOrder. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844847#3844847 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3844847 --- SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ___ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
[JBoss-dev] [JBossWS] - Re: first experiences with JBossWS: no serializer found
Thanks for your help. Two small remarks: 1. a typeMapping for CustomerOrder is already in the generated wsdd file in the work dir. So there is no need to specify it again. 2. I had to fill the encoding style like this: View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844827#3844827 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3844827 --- SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ___ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
[JBoss-dev] [JBossWS] - first experiences with JBossWS: no serializer found
I modified our test WS to get deployed on JBoss 4.0 using ws4ee coming from JBoss-3.2 with jboss-net. The deployment works now, but I get a runtime exception when the response contains an array of a custom class. I've put the java-xml-type-mapping to an jaxrpc-mapping.xml but no success. The at deployment time generated wsdd-file only contains the type mapping for the returned class, not for the custom classes used within this. example class for the return type: CustomerOrder - orderId - customerId - CustomerOrderPosition[] positions If positions is null I get a correct response, but if positions is not null, then I get an Exception: java.io.IOException: No serializer found for class biz.mbisoftware.fn.wstypes.sales.CustomerOrderPosition in registry [EMAIL PROTECTED] Generating the java-xml-type-mapping with JWSDP 1.4 from wsdl file didn't help either. JBoss is current checkout of jboss-head from cvs. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844606#3844606 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3844606 --- SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 ___ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development