riftsaw SVN: r1148 - dsp/trunk.
by riftsaw-commits@lists.jboss.org
Author: objectiser
Date: 2010-11-24 11:37:38 -0500 (Wed, 24 Nov 2010)
New Revision: 1148
Added:
dsp/trunk/api/
Log:
14 years, 1 month
riftsaw SVN: r1147 - in dsp/trunk/src/main: java/org/jboss/soa/dsp/deployer and 7 other directories.
by riftsaw-commits@lists.jboss.org
Author: objectiser
Date: 2010-11-24 11:34:20 -0500 (Wed, 24 Nov 2010)
New Revision: 1147
Added:
dsp/trunk/src/main/resources/META-INF/
dsp/trunk/src/main/resources/META-INF/jboss-beans.xml
Removed:
dsp/trunk/src/main/java/org/jboss/soa/dwsp/deployer/
dsp/trunk/src/main/java/org/jboss/soa/dwsp/server/
Modified:
dsp/trunk/src/main/java/org/jboss/soa/dsp/EndpointMetaData.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/InvocationAdapter.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/MessageAdapter.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ServiceEndpointReference.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ServiceProvider.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/ServiceDeployer.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/jboss/JBossServiceDeployer.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/jboss/WebMetaDataFactory.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/server/ServerConfig.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/KernelAwareSPIFactory.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/KernelLocator.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/MBeanServerLocator.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ObjectNameFactory.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ServerConfigFactory.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ServerConfigImpl.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/BaseWebServiceEndpoint.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/BuildProcessor.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/DOMWriter.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/DeploymentBuilder.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/JavaUtils.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/SOAPMessageAdapter.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/TemplateWebServiceEndpoint.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSDLParser.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSDLReference.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSInvocationAdapter.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceDetails.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderFactory.java
dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderGenerator.java
Log:
Changed license to Apache v2, to enable reuse in ODE project. Other minor changes required while building example deployer.
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/EndpointMetaData.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/EndpointMetaData.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/EndpointMetaData.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/InvocationAdapter.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/InvocationAdapter.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/InvocationAdapter.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/MessageAdapter.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/MessageAdapter.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/MessageAdapter.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,19 +1,18 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2009, Red Hat Middleware LLC, and others contributors as indicated
- * by the @authors tag. All rights reserved.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
+ * Copyright 2010 Red Hat, Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ServiceEndpointReference.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ServiceEndpointReference.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ServiceEndpointReference.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp;
@@ -40,7 +35,6 @@
this.serviceUrl = location;
this.deploymentName = deploymentName;
this.archiveLocation = archiveLocation;
-System.out.println("GPB: SER endpointId="+endpointId+" location="+location+" deploymentName="+deploymentName+" arch="+archiveLocation);
}
public String getArchiveLocation()
@@ -48,13 +42,6 @@
return archiveLocation;
}
- /*
- public void setArchiveLocation(String archiveLocation)
- {
- this.archiveLocation = archiveLocation;
- }
- */
-
public String getEndpointId()
{
return endpointId;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ServiceProvider.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ServiceProvider.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ServiceProvider.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,32 +1,23 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2009, Red Hat Middleware LLC, and others contributors as indicated
- * by the @authors tag. All rights reserved.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
+ * Copyright 2010 Red Hat, Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp;
public interface ServiceProvider {
- /**
- * This method initializes the service invoker. This method must
- * be called before using the invoker.
- *
- * @throws Exception Failed to initialize
- */
- public void init() throws Exception;
-
/**
* This method invokes the associated service using the invocation
* adapter supplied.
@@ -36,11 +27,4 @@
*/
public void invoke(InvocationAdapter<?> invocationAdapter) throws Exception;
- /**
- * This method closes the service invoker.
- *
- * @throws Exception Failed to close
- */
- public void close() throws Exception;
-
}
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/ServiceDeployer.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/ServiceDeployer.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/ServiceDeployer.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,19 +1,18 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2009, Red Hat Middleware LLC, and others contributors as indicated
- * by the @authors tag. All rights reserved.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
+ * Copyright 2010 Red Hat, Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.deployer;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/jboss/JBossServiceDeployer.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/jboss/JBossServiceDeployer.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/jboss/JBossServiceDeployer.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,19 +1,18 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2009, Red Hat Middleware LLC, and others contributors as indicated
- * by the @authors tag. All rights reserved.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
+ * Copyright 2010 Red Hat, Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.deployer.jboss;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/jboss/WebMetaDataFactory.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/jboss/WebMetaDataFactory.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/deployer/jboss/WebMetaDataFactory.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.deployer.jboss;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/server/ServerConfig.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/server/ServerConfig.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/server/ServerConfig.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.server;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/KernelAwareSPIFactory.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/KernelAwareSPIFactory.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/KernelAwareSPIFactory.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.server.jboss;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/KernelLocator.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/KernelLocator.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/KernelLocator.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.server.jboss;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/MBeanServerLocator.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/MBeanServerLocator.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/MBeanServerLocator.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.server.jboss;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ObjectNameFactory.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ObjectNameFactory.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ObjectNameFactory.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.server.jboss;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ServerConfigFactory.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ServerConfigFactory.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ServerConfigFactory.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.server.jboss;
@@ -35,7 +30,7 @@
public class ServerConfigFactory
{
/** The default bean name */
- public static String BEAN_NAME = "org.jboss.soa.bpel.runtime.util:service=ServerConfig";
+ public static String BEAN_NAME = "org.jboss.soa.dsp:service=ServerConfig";
public static ServerConfig getServerConfig()
{
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ServerConfigImpl.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ServerConfigImpl.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/server/jboss/ServerConfigImpl.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.server.jboss;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/BaseWebServiceEndpoint.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/BaseWebServiceEndpoint.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/BaseWebServiceEndpoint.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/BuildProcessor.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/BuildProcessor.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/BuildProcessor.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,19 +1,18 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2009, Red Hat Middleware LLC, and others contributors as indicated
- * by the @authors tag. All rights reserved.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
+ * Copyright 2010 Red Hat, Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/DOMWriter.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/DOMWriter.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/DOMWriter.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/DeploymentBuilder.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/DeploymentBuilder.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/DeploymentBuilder.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/JavaUtils.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/JavaUtils.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/JavaUtils.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/SOAPMessageAdapter.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/SOAPMessageAdapter.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/SOAPMessageAdapter.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/TemplateWebServiceEndpoint.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/TemplateWebServiceEndpoint.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/TemplateWebServiceEndpoint.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSDLParser.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSDLParser.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSDLParser.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSDLReference.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSDLReference.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSDLReference.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSInvocationAdapter.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSInvocationAdapter.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WSInvocationAdapter.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceDetails.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceDetails.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceDetails.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,19 +1,18 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2009, Red Hat Middleware LLC, and others contributors as indicated
- * by the @authors tag. All rights reserved.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
+ * Copyright 2010 Red Hat, Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderFactory.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderFactory.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderFactory.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,19 +1,18 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2009, Red Hat Middleware LLC, and others contributors as indicated
- * by the @authors tag. All rights reserved.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
+ * Copyright 2010 Red Hat, Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Modified: dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderGenerator.java
===================================================================
--- dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderGenerator.java 2010-11-24 15:42:24 UTC (rev 1146)
+++ dsp/trunk/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderGenerator.java 2010-11-24 16:34:20 UTC (rev 1147)
@@ -1,23 +1,18 @@
/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
+ * Copyright 2010 Red Hat, Inc
*
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
*
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
*/
package org.jboss.soa.dsp.ws;
Added: dsp/trunk/src/main/resources/META-INF/jboss-beans.xml
===================================================================
--- dsp/trunk/src/main/resources/META-INF/jboss-beans.xml (rev 0)
+++ dsp/trunk/src/main/resources/META-INF/jboss-beans.xml 2010-11-24 16:34:20 UTC (rev 1147)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deployment xmlns="urn:jboss:bean-deployer:2.0">
+
+ <!--
+ Locate the single instance of the kernel
+ -->
+ <bean name="org.jboss.soa.dsp:service=KernelLocator"
+ class="org.jboss.soa.dsp.server.jboss.KernelLocator">
+ <property name="kernel">
+ <inject bean="jboss.kernel:service=Kernel" />
+ </property>
+ </bean>
+
+ <!--
+ ServerConfig
+ -->
+ <bean name="org.jboss.soa.dsp:service=ServerConfig"
+ class="org.jboss.soa.dsp.server.jboss.ServerConfigImpl">
+ <property name="mbeanServer"><inject bean="JMXKernel" property="mbeanServer"/></property>
+ <property name="webServiceHost">${jboss.bind.address}</property>
+ </bean>
+
+
+</deployment>
14 years, 1 month
riftsaw SVN: r1146 - trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/secureservice.
by riftsaw-commits@lists.jboss.org
Author: objectiser
Date: 2010-11-24 10:42:24 -0500 (Wed, 24 Nov 2010)
New Revision: 1146
Modified:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/secureservice/ClientUsernamePasswordCallback.java
Log:
Remove print message.
Modified: trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/secureservice/ClientUsernamePasswordCallback.java
===================================================================
--- trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/secureservice/ClientUsernamePasswordCallback.java 2010-11-24 12:04:47 UTC (rev 1145)
+++ trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/secureservice/ClientUsernamePasswordCallback.java 2010-11-24 15:42:24 UTC (rev 1146)
@@ -51,7 +51,6 @@
for (int i = 0; i < callbacks.length; i++) {
WSPasswordCallback pc = (WSPasswordCallback)callbacks[i];
-System.out.println("GPB: Check identifier="+pc.getIdentifier());
String pass = passwords.get(pc.getIdentifier());
if (pass != null) {
pc.setPassword(pass);
14 years, 1 month
riftsaw SVN: r1145 - in branches/ODE/RiftSaw-ODE-trunk: agents and 33 other directories.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2010-11-24 07:04:47 -0500 (Wed, 24 Nov 2010)
New Revision: 1145
Modified:
branches/ODE/RiftSaw-ODE-trunk/agents/pom.xml
branches/ODE/RiftSaw-ODE-trunk/axis2-war/pom.xml
branches/ODE/RiftSaw-ODE-trunk/axis2/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-api-jca/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-api/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-compiler/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-connector/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-dao/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-epr/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-obj/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-ql/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-schemas/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-scripts/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-store/pom.xml
branches/ODE/RiftSaw-ODE-trunk/bpel-test/pom.xml
branches/ODE/RiftSaw-ODE-trunk/dao-hibernate-db/pom.xml
branches/ODE/RiftSaw-ODE-trunk/dao-hibernate/pom.xml
branches/ODE/RiftSaw-ODE-trunk/dao-jpa-db/pom.xml
branches/ODE/RiftSaw-ODE-trunk/dao-jpa-hibernate/pom.xml
branches/ODE/RiftSaw-ODE-trunk/dao-jpa-ojpa-derby/pom.xml
branches/ODE/RiftSaw-ODE-trunk/dao-jpa-ojpa/pom.xml
branches/ODE/RiftSaw-ODE-trunk/dao-jpa/pom.xml
branches/ODE/RiftSaw-ODE-trunk/distro/pom.xml
branches/ODE/RiftSaw-ODE-trunk/distro/src/examples-jbi/maven2/ping-pong-osgi/pom.xml
branches/ODE/RiftSaw-ODE-trunk/jacob/pom.xml
branches/ODE/RiftSaw-ODE-trunk/jbi-bundle/pom.xml
branches/ODE/RiftSaw-ODE-trunk/jbi-karaf/pom.xml
branches/ODE/RiftSaw-ODE-trunk/jbi/pom.xml
branches/ODE/RiftSaw-ODE-trunk/jca-ra/pom.xml
branches/ODE/RiftSaw-ODE-trunk/jca-server/pom.xml
branches/ODE/RiftSaw-ODE-trunk/pom.xml
branches/ODE/RiftSaw-ODE-trunk/scheduler-simple/pom.xml
branches/ODE/RiftSaw-ODE-trunk/tools/pom.xml
branches/ODE/RiftSaw-ODE-trunk/utils/pom.xml
Log:
* update trunk to 2.3.0-SNAPSHOT.
Modified: branches/ODE/RiftSaw-ODE-trunk/agents/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/agents/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/agents/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,6 +28,6 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
</project>
Modified: branches/ODE/RiftSaw-ODE-trunk/axis2/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/axis2/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/axis2/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<properties>
Modified: branches/ODE/RiftSaw-ODE-trunk/axis2-war/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/axis2-war/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/axis2-war/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<properties>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-api/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-api/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-api/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-api-jca/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-api-jca/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-api-jca/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-compiler/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-compiler/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-compiler/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-connector/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-connector/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-connector/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-dao/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-dao/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-dao/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-epr/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-epr/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-epr/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-obj/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-obj/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-obj/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-ql/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-ql/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-ql/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-schemas/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-schemas/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-schemas/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-scripts/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-scripts/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-scripts/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,6 +28,6 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
</project>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-store/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-store/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-store/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-test/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-test/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-test/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/dao-hibernate/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/dao-hibernate/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/dao-hibernate/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/dao-hibernate-db/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/dao-hibernate-db/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/dao-hibernate-db/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/dao-jpa/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/dao-jpa/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/dao-jpa/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/dao-jpa-db/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/dao-jpa-db/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/dao-jpa-db/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/dao-jpa-hibernate/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/dao-jpa-hibernate/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/dao-jpa-hibernate/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/dao-jpa-ojpa/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/dao-jpa-ojpa/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/dao-jpa-ojpa/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/dao-jpa-ojpa-derby/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/dao-jpa-ojpa-derby/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/dao-jpa-ojpa-derby/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/distro/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/distro/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/distro/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<properties>
Modified: branches/ODE/RiftSaw-ODE-trunk/distro/src/examples-jbi/maven2/ping-pong-osgi/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/distro/src/examples-jbi/maven2/ping-pong-osgi/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/distro/src/examples-jbi/maven2/ping-pong-osgi/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.soa.bpel.examples</groupId>
<artifactId>ping-pong-bundle</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
<name>ODE :: examples :: Ping Pong OSGi </name>
<packaging>bundle</packaging>
Modified: branches/ODE/RiftSaw-ODE-trunk/jacob/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/jacob/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/jacob/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/jbi/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/jbi/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/jbi/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<properties>
Modified: branches/ODE/RiftSaw-ODE-trunk/jbi-bundle/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/jbi-bundle/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/jbi-bundle/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -33,7 +33,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<build>
Modified: branches/ODE/RiftSaw-ODE-trunk/jbi-karaf/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/jbi-karaf/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/jbi-karaf/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<artifactId>riftsaw-jbi-karaf</artifactId>
Modified: branches/ODE/RiftSaw-ODE-trunk/jca-ra/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/jca-ra/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/jca-ra/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/jca-server/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/jca-server/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/jca-server/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -8,7 +8,7 @@
</description>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
<url>http://ode.apache.org</url>
<issueManagement>
<system>jira</system>
@@ -82,7 +82,7 @@
</prerequisites>
-->
<properties>
- <ode.version>2.2.0-SNAPSHOT</ode.version>
+ <ode.version>2.3.0-SNAPSHOT</ode.version>
<activation.version>1.1</activation.version>
<annogen.version>0.1.0</annogen.version>
<antlr.version>2.7.7</antlr.version>
Modified: branches/ODE/RiftSaw-ODE-trunk/scheduler-simple/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/scheduler-simple/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/scheduler-simple/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/tools/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/tools/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/tools/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
Modified: branches/ODE/RiftSaw-ODE-trunk/utils/pom.xml
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/utils/pom.xml 2010-11-24 11:31:25 UTC (rev 1144)
+++ branches/ODE/RiftSaw-ODE-trunk/utils/pom.xml 2010-11-24 12:04:47 UTC (rev 1145)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.jboss.soa.bpel</groupId>
<artifactId>ode</artifactId>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.3.0-SNAPSHOT</version>
</parent>
<dependencies>
14 years, 1 month
riftsaw SVN: r1144 - in trunk: integration-tests and 5 other directories.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2010-11-24 06:31:25 -0500 (Wed, 24 Nov 2010)
New Revision: 1144
Added:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml
trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml
Modified:
trunk/distribution/src/main/release/install/deployment.properties
trunk/integration-tests/build.xml
Log:
*RIFTSAW-312, fix the boolean data type.
Modified: trunk/distribution/src/main/release/install/deployment.properties
===================================================================
--- trunk/distribution/src/main/release/install/deployment.properties 2010-11-24 11:14:51 UTC (rev 1143)
+++ trunk/distribution/src/main/release/install/deployment.properties 2010-11-24 11:31:25 UTC (rev 1144)
@@ -15,8 +15,8 @@
org_jboss_as_config=default
# The directory for JBossESB home
-# (e.g. /var/local/jbossesb-4.8)
-org_jboss_esb_home=/var/local/jbossesb-4.8
+# (e.g. /var/local/jbossesb-4.9)
+org_jboss_esb_home=/var/local/jbossesb-4.9
# database
# (e.g. hsql postgres mysql)
Modified: trunk/integration-tests/build.xml
===================================================================
--- trunk/integration-tests/build.xml 2010-11-24 11:14:51 UTC (rev 1143)
+++ trunk/integration-tests/build.xml 2010-11-24 11:31:25 UTC (rev 1144)
@@ -190,6 +190,7 @@
<ant antfile="src/test/resources/testcases/RiftSaw_296/build.xml" />
<ant antfile="src/test/resources/testcases/RiftSaw_299_peer/build.xml" />
<ant antfile="src/test/resources/testcases/RiftSaw_299_ws/build.xml" />
+ <ant antfile="src/test/resources/testcases/RiftSaw_312/build.xml" />
<ant antfile="src/test/resources/tutorials/BluePrint1/build.xml" />
<ant antfile="src/test/resources/tutorials/BluePrint2/build.xml" />
Added: trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java
===================================================================
--- trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java (rev 0)
+++ trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java 2010-11-24 11:31:25 UTC (rev 1144)
@@ -0,0 +1,53 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.soa.bpel.tests.testcases;
+
+import org.jboss.soa.bpel.tests.RiftSawTest;
+import org.jboss.soa.bpel.tests.RiftSawTestSetup;
+
+import junit.framework.Test;
+
+/**
+ * Test case for running the RiftSaw 312 testcase.
+ */
+public class RiftSaw312TestCase extends RiftSawTest {
+
+ private static final String TEST_NAME = "RiftSaw_312";
+
+ public RiftSaw312TestCase() {
+ super(TEST_NAME);
+ }
+
+ public static Test suite() {
+ return(new RiftSawTestSetup(RiftSaw312TestCase.class,
+ TEST_NAME, "RiftSaw_312-1.jar"));
+ }
+
+ public void testSendHello() throws Exception {
+
+ String result1=sendSOAPMessage("request.xml",
+ "http://localhost:8080/RiftSaw_312WS");
+ result1 = processResult(result1);
+
+ assertMessageFromFile(result1, "response.xml");
+ }
+}
Added: trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel
===================================================================
--- trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel (rev 0)
+++ trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel 2010-11-24 11:31:25 UTC (rev 1144)
@@ -0,0 +1,66 @@
+<bpel:process name="VariableTypesProcess"
+ targetNamespace="http://sample.bpel.org/bpel/sample"
+ suppressJoinFailure="yes"
+ xmlns:tns="http://sample.bpel.org/bpel/sample"
+ xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
+
+ <bpel:import location="VariableTypesProcessArtifacts.wsdl"
+ namespace="http://sample.bpel.org/bpel/sample"
+ importType="http://schemas.xmlsoap.org/wsdl/" />
+
+ <bpel:partnerLinks>
+ <bpel:partnerLink name="client"
+ partnerLinkType="tns:VariableTypesProcess"
+ myRole="VariableTypesProcessProvider"/>
+ </bpel:partnerLinks>
+
+ <bpel:variables>
+ <bpel:variable name="input" messageType="tns:BooleanMessage"/>
+ <bpel:variable name="output" messageType="tns:StringMessage"/>
+ </bpel:variables>
+
+ <bpel:sequence name="main">
+
+ <bpel:receive name="receiveInput"
+ partnerLink="client"
+ portType="tns:VariableTypesProcess"
+ operation="booleanToString"
+ variable="input"
+ createInstance="yes"/>
+
+
+ <bpel:if name="boolean">
+ <bpel:condition>$input.boolean</bpel:condition>
+
+ <bpel:assign validate="no" name="assignTrueString">
+ <bpel:copy>
+ <bpel:from>
+ <bpel:literal>true</bpel:literal>
+ </bpel:from>
+ <bpel:to part="string" variable="output"/>
+ </bpel:copy>
+ </bpel:assign>
+
+ <bpel:else>
+ <bpel:assign validate="no" name="assignFalseString">
+ <bpel:copy>
+ <bpel:from>
+ <bpel:literal>false</bpel:literal>
+ </bpel:from>
+ <bpel:to part="string" variable="output"/>
+ </bpel:copy>
+ </bpel:assign>
+ </bpel:else>
+
+ </bpel:if>
+
+
+ <bpel:reply name="replyOutput"
+ partnerLink="client"
+ portType="tns:VariableTypesProcess"
+ operation="booleanToString"
+ variable="output" />
+
+ </bpel:sequence>
+</bpel:process>
+
Added: trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl
===================================================================
--- trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl (rev 0)
+++ trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl 2010-11-24 11:31:25 UTC (rev 1144)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8" ?>
+
+<definitions name="VariableTypesProcess"
+ targetNamespace="http://sample.bpel.org/bpel/sample"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+ xmlns:tns="http://sample.bpel.org/bpel/sample"
+ xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
+
+ <types>
+ </types>
+
+ <message name="BooleanMessage">
+ <part name="boolean" type="xsd:boolean"/>
+ </message>
+ <message name="StringMessage">
+ <part name="string" type="xsd:string"/>
+ </message>
+
+ <portType name="VariableTypesProcess">
+ <operation name="booleanToString">
+ <input message="tns:BooleanMessage" />
+ <output message="tns:StringMessage"/>
+ </operation>
+ </portType>
+
+
+ <binding name="VariableTypesBinding" type="tns:VariableTypesProcess">
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
+ <operation name="booleanToString">
+ <soap:operation soapAction="" style="rpc" />
+ <input>
+ <soap:body namespace="http://sample.bpel.org/bpel/sample" use="literal" />
+ </input>
+ <output>
+ <soap:body namespace="http://sample.bpel.org/bpel/sample" use="literal" />
+ </output>
+ </operation>
+ </binding>
+
+ <service name="VariableTypesProcess">
+ <port name="VariableTypesProcessPort" binding="tns:VariableTypesBinding">
+ <soap:address location="http://localhost:8080/RiftSaw_312WS" />
+ </port>
+ </service>
+
+ <plnk:partnerLinkType name="VariableTypesProcess">
+ <plnk:role name="VariableTypesProcessProvider" portType="tns:VariableTypesProcess"/>
+ </plnk:partnerLinkType>
+
+</definitions>
\ No newline at end of file
Added: trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml
===================================================================
--- trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml (rev 0)
+++ trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml 2010-11-24 11:31:25 UTC (rev 1144)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03" xmlns:sample="http://sample.bpel.org/bpel/sample">
+ <process name="sample:VariableTypesProcess">
+ <active>true</active>
+ <retired>false</retired>
+ <provide partnerLink="client">
+ <service name="sample:VariableTypesProcess" port="VariableTypesProcessPort"/>
+ </provide>
+ </process>
+</deploy>
\ No newline at end of file
Added: trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml
===================================================================
--- trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml (rev 0)
+++ trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml 2010-11-24 11:31:25 UTC (rev 1144)
@@ -0,0 +1,29 @@
+<project name="RiftSaw_312" default="deploy" basedir=".">
+
+ <description>
+ ${ant.project.name}
+ ${line.separator}
+ </description>
+
+ <property name="version" value="1" />
+
+ <property name="deploy.dir" value="${basedir}/target/tests"/>
+ <property name="test.dir" value="${basedir}/src/test/resources/testcases/${ant.project.name}"/>
+
+ <property name="sample.jar.name" value="${ant.project.name}-${version}.jar" />
+
+ <target name="deploy">
+ <echo>Deploy ${ant.project.name}</echo>
+ <mkdir dir="${deploy.dir}/${ant.project.name}" />
+ <jar basedir="${test.dir}/bpel" destfile="${deploy.dir}/${ant.project.name}/${sample.jar.name}" />
+
+ <copy todir="${deploy.dir}/${ant.project.name}">
+ <fileset dir="${test.dir}/messages"/>
+ </copy>
+ </target>
+
+ <target name="undeploy">
+ <echo>Undeploy ${ant.project.name}</echo>
+ <delete file="${deploy.dir}/${sample.jar.name}" />
+ </target>
+</project>
Added: trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml
===================================================================
--- trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml (rev 0)
+++ trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml 2010-11-24 11:31:25 UTC (rev 1144)
@@ -0,0 +1,8 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sam="http://sample.bpel.org/bpel/sample">
+ <soapenv:Header/>
+ <soapenv:Body>
+ <sam:booleanToString>
+ <boolean>false</boolean>
+ </sam:booleanToString>
+ </soapenv:Body>
+</soapenv:Envelope>
Added: trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml
===================================================================
--- trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml (rev 0)
+++ trunk/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml 2010-11-24 11:31:25 UTC (rev 1144)
@@ -0,0 +1 @@
+<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'><env:Header></env:Header><env:Body><odens:booleanToStringResponse xmlns:odens='http://sample.bpel.org/bpel/sample'><string>false</string></odens:booleanToStringResponse></env:Body></env:Envelope>
\ No newline at end of file
14 years, 1 month
riftsaw SVN: r1143 - in branches/RiftSaw-2.2.x: distribution/src/main/release/install and 6 other directories.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2010-11-24 06:14:51 -0500 (Wed, 24 Nov 2010)
New Revision: 1143
Added:
branches/RiftSaw-2.2.x/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml
branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml
Modified:
branches/RiftSaw-2.2.x/distribution/src/main/release/install/deployment.properties
branches/RiftSaw-2.2.x/integration-tests/build.xml
branches/RiftSaw-2.2.x/pom.xml
Log:
* RIFTSAW-312, fix the boolean data type.
Modified: branches/RiftSaw-2.2.x/distribution/src/main/release/install/deployment.properties
===================================================================
--- branches/RiftSaw-2.2.x/distribution/src/main/release/install/deployment.properties 2010-11-24 11:01:26 UTC (rev 1142)
+++ branches/RiftSaw-2.2.x/distribution/src/main/release/install/deployment.properties 2010-11-24 11:14:51 UTC (rev 1143)
@@ -15,8 +15,8 @@
org_jboss_as_config=default
# The directory for JBossESB home
-# (e.g. /var/local/jbossesb-4.8)
-org_jboss_esb_home=/var/local/jbossesb-4.8
+# (e.g. /var/local/jbossesb-4.9)
+org_jboss_esb_home=/var/local/jbossesb-4.9
# database
# (e.g. hsql postgres mysql)
Modified: branches/RiftSaw-2.2.x/integration-tests/build.xml
===================================================================
--- branches/RiftSaw-2.2.x/integration-tests/build.xml 2010-11-24 11:01:26 UTC (rev 1142)
+++ branches/RiftSaw-2.2.x/integration-tests/build.xml 2010-11-24 11:14:51 UTC (rev 1143)
@@ -190,6 +190,7 @@
<ant antfile="src/test/resources/testcases/RiftSaw_296/build.xml" />
<ant antfile="src/test/resources/testcases/RiftSaw_299_peer/build.xml" />
<ant antfile="src/test/resources/testcases/RiftSaw_299_ws/build.xml" />
+ <ant antfile="src/test/resources/testcases/RiftSaw_312/build.xml" />
<ant antfile="src/test/resources/tutorials/BluePrint1/build.xml" />
<ant antfile="src/test/resources/tutorials/BluePrint2/build.xml" />
Added: branches/RiftSaw-2.2.x/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java
===================================================================
--- branches/RiftSaw-2.2.x/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java (rev 0)
+++ branches/RiftSaw-2.2.x/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java 2010-11-24 11:14:51 UTC (rev 1143)
@@ -0,0 +1,53 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.soa.bpel.tests.testcases;
+
+import org.jboss.soa.bpel.tests.RiftSawTest;
+import org.jboss.soa.bpel.tests.RiftSawTestSetup;
+
+import junit.framework.Test;
+
+/**
+ * Test case for running the RiftSaw 312 testcase.
+ */
+public class RiftSaw312TestCase extends RiftSawTest {
+
+ private static final String TEST_NAME = "RiftSaw_312";
+
+ public RiftSaw312TestCase() {
+ super(TEST_NAME);
+ }
+
+ public static Test suite() {
+ return(new RiftSawTestSetup(RiftSaw312TestCase.class,
+ TEST_NAME, "RiftSaw_312-1.jar"));
+ }
+
+ public void testSendHello() throws Exception {
+
+ String result1=sendSOAPMessage("request.xml",
+ "http://localhost:8080/RiftSaw_312WS");
+ result1 = processResult(result1);
+
+ assertMessageFromFile(result1, "response.xml");
+ }
+}
Added: branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel
===================================================================
--- branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel (rev 0)
+++ branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel 2010-11-24 11:14:51 UTC (rev 1143)
@@ -0,0 +1,66 @@
+<bpel:process name="VariableTypesProcess"
+ targetNamespace="http://sample.bpel.org/bpel/sample"
+ suppressJoinFailure="yes"
+ xmlns:tns="http://sample.bpel.org/bpel/sample"
+ xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
+
+ <bpel:import location="VariableTypesProcessArtifacts.wsdl"
+ namespace="http://sample.bpel.org/bpel/sample"
+ importType="http://schemas.xmlsoap.org/wsdl/" />
+
+ <bpel:partnerLinks>
+ <bpel:partnerLink name="client"
+ partnerLinkType="tns:VariableTypesProcess"
+ myRole="VariableTypesProcessProvider"/>
+ </bpel:partnerLinks>
+
+ <bpel:variables>
+ <bpel:variable name="input" messageType="tns:BooleanMessage"/>
+ <bpel:variable name="output" messageType="tns:StringMessage"/>
+ </bpel:variables>
+
+ <bpel:sequence name="main">
+
+ <bpel:receive name="receiveInput"
+ partnerLink="client"
+ portType="tns:VariableTypesProcess"
+ operation="booleanToString"
+ variable="input"
+ createInstance="yes"/>
+
+
+ <bpel:if name="boolean">
+ <bpel:condition>$input.boolean</bpel:condition>
+
+ <bpel:assign validate="no" name="assignTrueString">
+ <bpel:copy>
+ <bpel:from>
+ <bpel:literal>true</bpel:literal>
+ </bpel:from>
+ <bpel:to part="string" variable="output"/>
+ </bpel:copy>
+ </bpel:assign>
+
+ <bpel:else>
+ <bpel:assign validate="no" name="assignFalseString">
+ <bpel:copy>
+ <bpel:from>
+ <bpel:literal>false</bpel:literal>
+ </bpel:from>
+ <bpel:to part="string" variable="output"/>
+ </bpel:copy>
+ </bpel:assign>
+ </bpel:else>
+
+ </bpel:if>
+
+
+ <bpel:reply name="replyOutput"
+ partnerLink="client"
+ portType="tns:VariableTypesProcess"
+ operation="booleanToString"
+ variable="output" />
+
+ </bpel:sequence>
+</bpel:process>
+
Added: branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl
===================================================================
--- branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl (rev 0)
+++ branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl 2010-11-24 11:14:51 UTC (rev 1143)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8" ?>
+
+<definitions name="VariableTypesProcess"
+ targetNamespace="http://sample.bpel.org/bpel/sample"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+ xmlns:tns="http://sample.bpel.org/bpel/sample"
+ xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
+
+ <types>
+ </types>
+
+ <message name="BooleanMessage">
+ <part name="boolean" type="xsd:boolean"/>
+ </message>
+ <message name="StringMessage">
+ <part name="string" type="xsd:string"/>
+ </message>
+
+ <portType name="VariableTypesProcess">
+ <operation name="booleanToString">
+ <input message="tns:BooleanMessage" />
+ <output message="tns:StringMessage"/>
+ </operation>
+ </portType>
+
+
+ <binding name="VariableTypesBinding" type="tns:VariableTypesProcess">
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
+ <operation name="booleanToString">
+ <soap:operation soapAction="" style="rpc" />
+ <input>
+ <soap:body namespace="http://sample.bpel.org/bpel/sample" use="literal" />
+ </input>
+ <output>
+ <soap:body namespace="http://sample.bpel.org/bpel/sample" use="literal" />
+ </output>
+ </operation>
+ </binding>
+
+ <service name="VariableTypesProcess">
+ <port name="VariableTypesProcessPort" binding="tns:VariableTypesBinding">
+ <soap:address location="http://localhost:8080/RiftSaw_312WS" />
+ </port>
+ </service>
+
+ <plnk:partnerLinkType name="VariableTypesProcess">
+ <plnk:role name="VariableTypesProcessProvider" portType="tns:VariableTypesProcess"/>
+ </plnk:partnerLinkType>
+
+</definitions>
\ No newline at end of file
Added: branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml
===================================================================
--- branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml (rev 0)
+++ branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml 2010-11-24 11:14:51 UTC (rev 1143)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03" xmlns:sample="http://sample.bpel.org/bpel/sample">
+ <process name="sample:VariableTypesProcess">
+ <active>true</active>
+ <retired>false</retired>
+ <provide partnerLink="client">
+ <service name="sample:VariableTypesProcess" port="VariableTypesProcessPort"/>
+ </provide>
+ </process>
+</deploy>
\ No newline at end of file
Added: branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml
===================================================================
--- branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml (rev 0)
+++ branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml 2010-11-24 11:14:51 UTC (rev 1143)
@@ -0,0 +1,29 @@
+<project name="RiftSaw_312" default="deploy" basedir=".">
+
+ <description>
+ ${ant.project.name}
+ ${line.separator}
+ </description>
+
+ <property name="version" value="1" />
+
+ <property name="deploy.dir" value="${basedir}/target/tests"/>
+ <property name="test.dir" value="${basedir}/src/test/resources/testcases/${ant.project.name}"/>
+
+ <property name="sample.jar.name" value="${ant.project.name}-${version}.jar" />
+
+ <target name="deploy">
+ <echo>Deploy ${ant.project.name}</echo>
+ <mkdir dir="${deploy.dir}/${ant.project.name}" />
+ <jar basedir="${test.dir}/bpel" destfile="${deploy.dir}/${ant.project.name}/${sample.jar.name}" />
+
+ <copy todir="${deploy.dir}/${ant.project.name}">
+ <fileset dir="${test.dir}/messages"/>
+ </copy>
+ </target>
+
+ <target name="undeploy">
+ <echo>Undeploy ${ant.project.name}</echo>
+ <delete file="${deploy.dir}/${sample.jar.name}" />
+ </target>
+</project>
Added: branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml
===================================================================
--- branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml (rev 0)
+++ branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml 2010-11-24 11:14:51 UTC (rev 1143)
@@ -0,0 +1,8 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sam="http://sample.bpel.org/bpel/sample">
+ <soapenv:Header/>
+ <soapenv:Body>
+ <sam:booleanToString>
+ <boolean>false</boolean>
+ </sam:booleanToString>
+ </soapenv:Body>
+</soapenv:Envelope>
Added: branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml
===================================================================
--- branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml (rev 0)
+++ branches/RiftSaw-2.2.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml 2010-11-24 11:14:51 UTC (rev 1143)
@@ -0,0 +1 @@
+<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'><env:Header></env:Header><env:Body><odens:booleanToStringResponse xmlns:odens='http://sample.bpel.org/bpel/sample'><string>false</string></odens:booleanToStringResponse></env:Body></env:Envelope>
\ No newline at end of file
Modified: branches/RiftSaw-2.2.x/pom.xml
===================================================================
--- branches/RiftSaw-2.2.x/pom.xml 2010-11-24 11:01:26 UTC (rev 1142)
+++ branches/RiftSaw-2.2.x/pom.xml 2010-11-24 11:14:51 UTC (rev 1143)
@@ -85,7 +85,7 @@
</profiles>
<properties>
- <riftsaw.ode.version>2.2.0.CR1</riftsaw.ode.version>
+ <riftsaw.ode.version>2.2.0-SNAPSHOT</riftsaw.ode.version>
<riftsaw.engine.version>2.2.0-SNAPSHOT</riftsaw.engine.version>
<bpel.console.version>2.2.3-Final</bpel.console.version>
<activity.monitor.model.version>1.0.0-Beta2</activity.monitor.model.version>
14 years, 1 month
riftsaw SVN: r1142 - branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2010-11-24 06:01:26 -0500 (Wed, 24 Nov 2010)
New Revision: 1142
Modified:
branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/JaxenContexts.java
Log:
*RIFTSAW-312, fix the boolean data type.
Modified: branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/JaxenContexts.java
===================================================================
--- branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/JaxenContexts.java 2010-11-24 10:58:52 UTC (rev 1141)
+++ branches/ODE/RiftSaw-ODE-trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/JaxenContexts.java 2010-11-24 11:01:26 UTC (rev 1142)
@@ -68,6 +68,8 @@
/** Static, thread-safe singleton implementing default XPath functions */
private static final FunctionContext __defaultXPathFunctions = XPathFunctionContext.getInstance();
+
+ private static final QName BOOLEAN = new QName("http://www.w3.org/2001/XMLSchema", "boolean");
private OXPath10Expression _oxpath;
private EvaluationContext _xpathEvalCtx;
@@ -186,7 +188,13 @@
}
if (_xpathEvalCtx.narrowTypes() && type instanceof OXsdTypeVarType && ((OXsdTypeVarType)type).simple) {
- return variableNode.getTextContent();
+ String value = variableNode.getTextContent();
+ OXsdTypeVarType theType = (OXsdTypeVarType)type;
+
+ if (BOOLEAN.equals(theType.xsdType)) {
+ return new Boolean(value) ;
+ }
+ return value;
} else {
return variableNode;
}
14 years, 1 month
riftsaw SVN: r1141 - branches/RiftSaw-ODE-2.2.x/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2010-11-24 05:58:52 -0500 (Wed, 24 Nov 2010)
New Revision: 1141
Modified:
branches/RiftSaw-ODE-2.2.x/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/JaxenContexts.java
Log:
*RIFTSAW-312.
Modified: branches/RiftSaw-ODE-2.2.x/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/JaxenContexts.java
===================================================================
--- branches/RiftSaw-ODE-2.2.x/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/JaxenContexts.java 2010-11-24 08:08:09 UTC (rev 1140)
+++ branches/RiftSaw-ODE-2.2.x/bpel-runtime/src/main/java/org/apache/ode/bpel/elang/xpath10/runtime/JaxenContexts.java 2010-11-24 10:58:52 UTC (rev 1141)
@@ -68,6 +68,8 @@
/** Static, thread-safe singleton implementing default XPath functions */
private static final FunctionContext __defaultXPathFunctions = XPathFunctionContext.getInstance();
+
+ private static final QName BOOLEAN = new QName("http://www.w3.org/2001/XMLSchema", "boolean");
private OXPath10Expression _oxpath;
private EvaluationContext _xpathEvalCtx;
@@ -186,7 +188,13 @@
}
if (_xpathEvalCtx.narrowTypes() && type instanceof OXsdTypeVarType && ((OXsdTypeVarType)type).simple) {
- return variableNode.getTextContent();
+ String value = variableNode.getTextContent();
+ OXsdTypeVarType theType = (OXsdTypeVarType)type;
+
+ if (BOOLEAN.equals(theType.xsdType)) {
+ return new Boolean(value) ;
+ }
+ return value;
} else {
return variableNode;
}
14 years, 1 month
riftsaw SVN: r1140 - in branches/RiftSaw-2.1.x: distribution/src/main/release/install and 6 other directories.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2010-11-24 03:08:09 -0500 (Wed, 24 Nov 2010)
New Revision: 1140
Added:
branches/RiftSaw-2.1.x/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml
branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml
Modified:
branches/RiftSaw-2.1.x/distribution/src/main/release/install/deployment.properties
branches/RiftSaw-2.1.x/integration-tests/build.xml
branches/RiftSaw-2.1.x/pom.xml
Log:
* RIFTSAW-312. return Boolean value if data type is xsd:boolean.
Modified: branches/RiftSaw-2.1.x/distribution/src/main/release/install/deployment.properties
===================================================================
--- branches/RiftSaw-2.1.x/distribution/src/main/release/install/deployment.properties 2010-11-24 04:14:27 UTC (rev 1139)
+++ branches/RiftSaw-2.1.x/distribution/src/main/release/install/deployment.properties 2010-11-24 08:08:09 UTC (rev 1140)
@@ -15,8 +15,8 @@
org.jboss.as.config=default
# The directory for JBossESB home
-# (e.g. /var/local/jbossesb-4.8)
-org.jboss.esb.home=/var/local/jbossesb-4.8
+# (e.g. /var/local/jbossesb-4.9)
+org.jboss.esb.home=/var/local/jbossesb-4.9
# database
# (e.g. hsql postgres mysql)
Modified: branches/RiftSaw-2.1.x/integration-tests/build.xml
===================================================================
--- branches/RiftSaw-2.1.x/integration-tests/build.xml 2010-11-24 04:14:27 UTC (rev 1139)
+++ branches/RiftSaw-2.1.x/integration-tests/build.xml 2010-11-24 08:08:09 UTC (rev 1140)
@@ -193,6 +193,7 @@
<ant antfile="src/test/resources/testcases/RiftSaw_296/build.xml" />
<ant antfile="src/test/resources/testcases/RiftSaw_299_peer/build.xml" />
<ant antfile="src/test/resources/testcases/RiftSaw_299_ws/build.xml" />
+ <ant antfile="src/test/resources/testcases/RiftSaw_312/build.xml" />
<ant antfile="src/test/resources/tutorials/BluePrint1/build.xml" />
<ant antfile="src/test/resources/tutorials/BluePrint2/build.xml" />
Added: branches/RiftSaw-2.1.x/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java
===================================================================
--- branches/RiftSaw-2.1.x/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java (rev 0)
+++ branches/RiftSaw-2.1.x/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw312TestCase.java 2010-11-24 08:08:09 UTC (rev 1140)
@@ -0,0 +1,53 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.soa.bpel.tests.testcases;
+
+import org.jboss.soa.bpel.tests.RiftSawTest;
+import org.jboss.soa.bpel.tests.RiftSawTestSetup;
+
+import junit.framework.Test;
+
+/**
+ * Test case for running the RiftSaw 312 testcase.
+ */
+public class RiftSaw312TestCase extends RiftSawTest {
+
+ private static final String TEST_NAME = "RiftSaw_312";
+
+ public RiftSaw312TestCase() {
+ super(TEST_NAME);
+ }
+
+ public static Test suite() {
+ return(new RiftSawTestSetup(RiftSaw312TestCase.class,
+ TEST_NAME, "RiftSaw_312-1.jar"));
+ }
+
+ public void testSendHello() throws Exception {
+
+ String result1=sendSOAPMessage("request.xml",
+ "http://localhost:8080/RiftSaw_312WS");
+ result1 = processResult(result1);
+
+ assertMessageFromFile(result1, "response.xml");
+ }
+}
Added: branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel
===================================================================
--- branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel (rev 0)
+++ branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcess.bpel 2010-11-24 08:08:09 UTC (rev 1140)
@@ -0,0 +1,66 @@
+<bpel:process name="VariableTypesProcess"
+ targetNamespace="http://sample.bpel.org/bpel/sample"
+ suppressJoinFailure="yes"
+ xmlns:tns="http://sample.bpel.org/bpel/sample"
+ xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
+
+ <bpel:import location="VariableTypesProcessArtifacts.wsdl"
+ namespace="http://sample.bpel.org/bpel/sample"
+ importType="http://schemas.xmlsoap.org/wsdl/" />
+
+ <bpel:partnerLinks>
+ <bpel:partnerLink name="client"
+ partnerLinkType="tns:VariableTypesProcess"
+ myRole="VariableTypesProcessProvider"/>
+ </bpel:partnerLinks>
+
+ <bpel:variables>
+ <bpel:variable name="input" messageType="tns:BooleanMessage"/>
+ <bpel:variable name="output" messageType="tns:StringMessage"/>
+ </bpel:variables>
+
+ <bpel:sequence name="main">
+
+ <bpel:receive name="receiveInput"
+ partnerLink="client"
+ portType="tns:VariableTypesProcess"
+ operation="booleanToString"
+ variable="input"
+ createInstance="yes"/>
+
+
+ <bpel:if name="boolean">
+ <bpel:condition>$input.boolean</bpel:condition>
+
+ <bpel:assign validate="no" name="assignTrueString">
+ <bpel:copy>
+ <bpel:from>
+ <bpel:literal>true</bpel:literal>
+ </bpel:from>
+ <bpel:to part="string" variable="output"/>
+ </bpel:copy>
+ </bpel:assign>
+
+ <bpel:else>
+ <bpel:assign validate="no" name="assignFalseString">
+ <bpel:copy>
+ <bpel:from>
+ <bpel:literal>false</bpel:literal>
+ </bpel:from>
+ <bpel:to part="string" variable="output"/>
+ </bpel:copy>
+ </bpel:assign>
+ </bpel:else>
+
+ </bpel:if>
+
+
+ <bpel:reply name="replyOutput"
+ partnerLink="client"
+ portType="tns:VariableTypesProcess"
+ operation="booleanToString"
+ variable="output" />
+
+ </bpel:sequence>
+</bpel:process>
+
Added: branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl
===================================================================
--- branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl (rev 0)
+++ branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/VariableTypesProcessArtifacts.wsdl 2010-11-24 08:08:09 UTC (rev 1140)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8" ?>
+
+<definitions name="VariableTypesProcess"
+ targetNamespace="http://sample.bpel.org/bpel/sample"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+ xmlns:tns="http://sample.bpel.org/bpel/sample"
+ xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
+
+ <types>
+ </types>
+
+ <message name="BooleanMessage">
+ <part name="boolean" type="xsd:boolean"/>
+ </message>
+ <message name="StringMessage">
+ <part name="string" type="xsd:string"/>
+ </message>
+
+ <portType name="VariableTypesProcess">
+ <operation name="booleanToString">
+ <input message="tns:BooleanMessage" />
+ <output message="tns:StringMessage"/>
+ </operation>
+ </portType>
+
+
+ <binding name="VariableTypesBinding" type="tns:VariableTypesProcess">
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
+ <operation name="booleanToString">
+ <soap:operation soapAction="" style="rpc" />
+ <input>
+ <soap:body namespace="http://sample.bpel.org/bpel/sample" use="literal" />
+ </input>
+ <output>
+ <soap:body namespace="http://sample.bpel.org/bpel/sample" use="literal" />
+ </output>
+ </operation>
+ </binding>
+
+ <service name="VariableTypesProcess">
+ <port name="VariableTypesProcessPort" binding="tns:VariableTypesBinding">
+ <soap:address location="http://localhost:8080/RiftSaw_312WS" />
+ </port>
+ </service>
+
+ <plnk:partnerLinkType name="VariableTypesProcess">
+ <plnk:role name="VariableTypesProcessProvider" portType="tns:VariableTypesProcess"/>
+ </plnk:partnerLinkType>
+
+</definitions>
\ No newline at end of file
Added: branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml
===================================================================
--- branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml (rev 0)
+++ branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/bpel/deploy.xml 2010-11-24 08:08:09 UTC (rev 1140)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03" xmlns:sample="http://sample.bpel.org/bpel/sample">
+ <process name="sample:VariableTypesProcess">
+ <active>true</active>
+ <retired>false</retired>
+ <provide partnerLink="client">
+ <service name="sample:VariableTypesProcess" port="VariableTypesProcessPort"/>
+ </provide>
+ </process>
+</deploy>
\ No newline at end of file
Added: branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml
===================================================================
--- branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml (rev 0)
+++ branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/build.xml 2010-11-24 08:08:09 UTC (rev 1140)
@@ -0,0 +1,29 @@
+<project name="RiftSaw_312" default="deploy" basedir=".">
+
+ <description>
+ ${ant.project.name}
+ ${line.separator}
+ </description>
+
+ <property name="version" value="1" />
+
+ <property name="deploy.dir" value="${basedir}/target/tests"/>
+ <property name="test.dir" value="${basedir}/src/test/resources/testcases/${ant.project.name}"/>
+
+ <property name="sample.jar.name" value="${ant.project.name}-${version}.jar" />
+
+ <target name="deploy">
+ <echo>Deploy ${ant.project.name}</echo>
+ <mkdir dir="${deploy.dir}/${ant.project.name}" />
+ <jar basedir="${test.dir}/bpel" destfile="${deploy.dir}/${ant.project.name}/${sample.jar.name}" />
+
+ <copy todir="${deploy.dir}/${ant.project.name}">
+ <fileset dir="${test.dir}/messages"/>
+ </copy>
+ </target>
+
+ <target name="undeploy">
+ <echo>Undeploy ${ant.project.name}</echo>
+ <delete file="${deploy.dir}/${sample.jar.name}" />
+ </target>
+</project>
Added: branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml
===================================================================
--- branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml (rev 0)
+++ branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/request.xml 2010-11-24 08:08:09 UTC (rev 1140)
@@ -0,0 +1,8 @@
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sam="http://sample.bpel.org/bpel/sample">
+ <soapenv:Header/>
+ <soapenv:Body>
+ <sam:booleanToString>
+ <boolean>false</boolean>
+ </sam:booleanToString>
+ </soapenv:Body>
+</soapenv:Envelope>
Added: branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml
===================================================================
--- branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml (rev 0)
+++ branches/RiftSaw-2.1.x/integration-tests/src/test/resources/testcases/RiftSaw_312/messages/response.xml 2010-11-24 08:08:09 UTC (rev 1140)
@@ -0,0 +1 @@
+<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'><env:Header></env:Header><env:Body><odens:booleanToStringResponse xmlns:odens='http://sample.bpel.org/bpel/sample'><string>false</string></odens:booleanToStringResponse></env:Body></env:Envelope>
\ No newline at end of file
Modified: branches/RiftSaw-2.1.x/pom.xml
===================================================================
--- branches/RiftSaw-2.1.x/pom.xml 2010-11-24 04:14:27 UTC (rev 1139)
+++ branches/RiftSaw-2.1.x/pom.xml 2010-11-24 08:08:09 UTC (rev 1140)
@@ -82,7 +82,7 @@
</profiles>
<properties>
- <riftsaw.ode.version>2.1.4.Final</riftsaw.ode.version>
+ <riftsaw.ode.version>2.1.5-SNAPSHOT</riftsaw.ode.version>
<riftsaw.engine.version>2.1.3-SNAPSHOT</riftsaw.engine.version>
<bpel.console.version>2.1.2</bpel.console.version>
<commons.logging.version>1.1.1</commons.logging.version>
14 years, 1 month